pub(crate) enum ShreddedPathStep<'a> {
    Success(BorrowedShreddingState<'a>),
    Missing,
    NotShredded,
}Variants§
Success(BorrowedShreddingState<'a>)
Path step succeeded, return the new shredding state
Missing
The path element is not present in the typed_value column and there is no value column,
so we know it does not exist. It, and all paths under it, are all-NULL.
NotShredded
The path element is not present in the typed_value column and must be retrieved from the value
column instead. The caller should be prepared to handle any value, including the requested
type, an arbitrary “wrong” type, or Variant::Null.
Auto Trait Implementations§
impl<'a> Freeze for ShreddedPathStep<'a>
impl<'a> !RefUnwindSafe for ShreddedPathStep<'a>
impl<'a> Send for ShreddedPathStep<'a>
impl<'a> Sync for ShreddedPathStep<'a>
impl<'a> Unpin for ShreddedPathStep<'a>
impl<'a> !UnwindSafe for ShreddedPathStep<'a>
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