pub enum RawSceneAttachmentCoverageV1 {
Complete,
PrefixOverflow,
Unavailable,
}Expand description
Whether a source-order row set is exhaustive.
Variants§
Complete
Every source row is retained; empty proves absence.
PrefixOverflow
Rows are the canonical source-order prefix and later rows overflowed the V1 budget.
The loader could not make this source domain available.
Implementations§
Source§impl RawSceneAttachmentCoverageV1
impl RawSceneAttachmentCoverageV1
Sourcepub const fn proves_absence(self) -> bool
pub const fn proves_absence(self) -> bool
Whether an empty row list proves the source domain absent.
Trait Implementations§
Source§impl Clone for RawSceneAttachmentCoverageV1
impl Clone for RawSceneAttachmentCoverageV1
Source§fn clone(&self) -> RawSceneAttachmentCoverageV1
fn clone(&self) -> RawSceneAttachmentCoverageV1
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 RawSceneAttachmentCoverageV1
Source§impl Debug for RawSceneAttachmentCoverageV1
impl Debug for RawSceneAttachmentCoverageV1
Source§impl<'de> Deserialize<'de> for RawSceneAttachmentCoverageV1
impl<'de> Deserialize<'de> for RawSceneAttachmentCoverageV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RawSceneAttachmentCoverageV1
impl StructuralPartialEq for RawSceneAttachmentCoverageV1
Auto Trait Implementations§
impl Freeze for RawSceneAttachmentCoverageV1
impl RefUnwindSafe for RawSceneAttachmentCoverageV1
impl Send for RawSceneAttachmentCoverageV1
impl Sync for RawSceneAttachmentCoverageV1
impl Unpin for RawSceneAttachmentCoverageV1
impl UnsafeUnpin for RawSceneAttachmentCoverageV1
impl UnwindSafe for RawSceneAttachmentCoverageV1
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