pub enum SchemaToken<'s> {
Prop(&'s str),
Item(usize),
}Expand description
Token for schema.
Variants§
Trait Implementations§
Source§impl<'s> Clone for SchemaToken<'s>
impl<'s> Clone for SchemaToken<'s>
Source§fn clone(&self) -> SchemaToken<'s>
fn clone(&self) -> SchemaToken<'s>
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<'s> Debug for SchemaToken<'s>
impl<'s> Debug for SchemaToken<'s>
Auto Trait Implementations§
impl<'s> Freeze for SchemaToken<'s>
impl<'s> RefUnwindSafe for SchemaToken<'s>
impl<'s> Send for SchemaToken<'s>
impl<'s> Sync for SchemaToken<'s>
impl<'s> Unpin for SchemaToken<'s>
impl<'s> UnwindSafe for SchemaToken<'s>
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