pub enum SymbolReadPath {
SystematicFastPath,
FullDecodeFallback {
reason: SystematicLayoutError,
},
}Expand description
Read-path classification for ECS object recovery.
Variants§
SystematicFastPath
Recovered by concatenating contiguous systematic symbols.
FullDecodeFallback
Happy path was unavailable; decoder fallback was invoked.
Fields
§
reason: SystematicLayoutErrorTrait Implementations§
Source§impl Clone for SymbolReadPath
impl Clone for SymbolReadPath
Source§fn clone(&self) -> SymbolReadPath
fn clone(&self) -> SymbolReadPath
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 moreSource§impl Debug for SymbolReadPath
impl Debug for SymbolReadPath
Source§impl PartialEq for SymbolReadPath
impl PartialEq for SymbolReadPath
impl Eq for SymbolReadPath
impl StructuralPartialEq for SymbolReadPath
Auto Trait Implementations§
impl Freeze for SymbolReadPath
impl RefUnwindSafe for SymbolReadPath
impl Send for SymbolReadPath
impl Sync for SymbolReadPath
impl Unpin for SymbolReadPath
impl UnsafeUnpin for SymbolReadPath
impl UnwindSafe for SymbolReadPath
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