pub struct GeometryManifestFacts<'a> {Show 15 fields
pub vertex_count: u32,
pub triangle_count: u32,
pub source_format: &'a str,
pub unit: &'a str,
pub bbox_min: [f32; 3],
pub bbox_max: [f32; 3],
pub max_triangle_index: Option<u32>,
pub claimed_compiled_digest: u32,
pub actual_container_crc32c: u32,
pub input_sensitivities: &'a [&'a str],
pub declared_sensitivity: Option<&'a str>,
pub licence: &'a str,
pub creator: Option<&'a str>,
pub valid_from: Option<u64>,
pub valid_until: Option<u64>,
}Expand description
The relational facts of a compiled geometry asset that plain per-property SHACL cannot see.
Fields§
§vertex_count: u32§triangle_count: u32§source_format: &'a str§unit: &'a str§bbox_min: [f32; 3]§bbox_max: [f32; 3]§max_triangle_index: Option<u32>The largest triangle vertex index used, if indices are being checked.
claimed_compiled_digest: u32The compiledDigest asserted by the manifest.
actual_container_crc32c: u32The actual whole-file CRC-32C of the .10d container the manifest describes
(recompute with render::compile_10d::compiled_digest).
input_sensitivities: &'a [&'a str]Sensitivity classes of the inputs this asset was derived from (for the high-water-mark).
declared_sensitivity: Option<&'a str>The sensitivity class declared on this asset (if any).
licence: &'a str§creator: Option<&'a str>§valid_from: Option<u64>§valid_until: Option<u64>Trait Implementations§
Source§impl<'a> Clone for GeometryManifestFacts<'a>
impl<'a> Clone for GeometryManifestFacts<'a>
Source§fn clone(&self) -> GeometryManifestFacts<'a>
fn clone(&self) -> GeometryManifestFacts<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for GeometryManifestFacts<'a>
impl<'a> RefUnwindSafe for GeometryManifestFacts<'a>
impl<'a> Send for GeometryManifestFacts<'a>
impl<'a> Sync for GeometryManifestFacts<'a>
impl<'a> Unpin for GeometryManifestFacts<'a>
impl<'a> UnsafeUnpin for GeometryManifestFacts<'a>
impl<'a> UnwindSafe for GeometryManifestFacts<'a>
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.
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