pub struct Vision10dLoaded {Show 14 fields
pub path: Option<String>,
pub size_bytes: u64,
pub compiled_digest_hex: String,
pub crc_valid: bool,
pub mesh_vertices: u32,
pub mesh_triangles: u32,
pub node_count: u32,
pub has_topology: bool,
pub has_spatial_index: bool,
pub has_provenance: bool,
pub paint: Vec<VisionNodePaint>,
pub mean_sigma: f32,
pub mean_rgb: [u8; 3],
pub mean_frequency_hz: f32,
}Expand description
Loaded vision .10d package for browser / portal paint.
Fields§
§path: Option<String>§size_bytes: u64§compiled_digest_hex: String§crc_valid: bool§mesh_vertices: u32§mesh_triangles: u32§node_count: u32§has_topology: bool§has_spatial_index: bool§has_provenance: bool§paint: Vec<VisionNodePaint>§mean_sigma: f32Mean σ across nodes (for single-colour mesh tint).
mean_rgb: [u8; 3]§mean_frequency_hz: f32Trait Implementations§
Source§impl Clone for Vision10dLoaded
impl Clone for Vision10dLoaded
Source§fn clone(&self) -> Vision10dLoaded
fn clone(&self) -> Vision10dLoaded
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Vision10dLoaded
impl Debug for Vision10dLoaded
Auto Trait Implementations§
impl Freeze for Vision10dLoaded
impl RefUnwindSafe for Vision10dLoaded
impl Send for Vision10dLoaded
impl Sync for Vision10dLoaded
impl Unpin for Vision10dLoaded
impl UnsafeUnpin for Vision10dLoaded
impl UnwindSafe for Vision10dLoaded
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more