Struct PointCloudOptions
pub struct PointCloudOptions {
pub transform: Transform,
pub data: Option<Vec<u8>>,
pub material: Option<String>,
pub identifier: Option<String>,
}Expand description
Options for adding a point cloud object.
Fields§
§transform: TransformThe common transform parameters.
data: Option<Vec<u8>>The point cloud bytes.
material: Option<String>The identifier of the material to apply.
identifier: Option<String>The explicit identifier; assigned by the server when None.
Trait Implementations§
§impl Clone for PointCloudOptions
impl Clone for PointCloudOptions
§fn clone(&self) -> PointCloudOptions
fn clone(&self) -> PointCloudOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for PointCloudOptions
impl Debug for PointCloudOptions
§impl Default for PointCloudOptions
impl Default for PointCloudOptions
§fn default() -> PointCloudOptions
fn default() -> PointCloudOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PointCloudOptions
impl RefUnwindSafe for PointCloudOptions
impl Send for PointCloudOptions
impl Sync for PointCloudOptions
impl Unpin for PointCloudOptions
impl UnwindSafe for PointCloudOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more