#[non_exhaustive]pub enum RawGltfAddressabilityBindingErrorV1 {
UnsupportedSourceFormat,
InvalidInventory,
PrimaryIdentityMismatch,
DependencyClosureMismatch,
}Expand description
An attempted raw glTF addressability sidecar did not bind this loaded source.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UnsupportedSourceFormat
Raw glTF addressability inventories require glTF JSON or GLB input.
InvalidInventory
The standalone inventory failed semantic validation.
PrimaryIdentityMismatch
The inventory identifies different primary bytes.
DependencyClosureMismatch
The inventory embeds a different dependency-closure record.
Trait Implementations§
Source§impl Clone for RawGltfAddressabilityBindingErrorV1
impl Clone for RawGltfAddressabilityBindingErrorV1
Source§fn clone(&self) -> RawGltfAddressabilityBindingErrorV1
fn clone(&self) -> RawGltfAddressabilityBindingErrorV1
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 moreimpl Copy for RawGltfAddressabilityBindingErrorV1
impl Eq for RawGltfAddressabilityBindingErrorV1
Source§impl Error for RawGltfAddressabilityBindingErrorV1
impl Error for RawGltfAddressabilityBindingErrorV1
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for RawGltfAddressabilityBindingErrorV1
Auto Trait Implementations§
impl Freeze for RawGltfAddressabilityBindingErrorV1
impl RefUnwindSafe for RawGltfAddressabilityBindingErrorV1
impl Send for RawGltfAddressabilityBindingErrorV1
impl Sync for RawGltfAddressabilityBindingErrorV1
impl Unpin for RawGltfAddressabilityBindingErrorV1
impl UnsafeUnpin for RawGltfAddressabilityBindingErrorV1
impl UnwindSafe for RawGltfAddressabilityBindingErrorV1
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