pub enum FieldPath<'a> {
Root(SourcePosition),
Field(&'a str, SourcePosition, Arc<FieldPath<'a>>),
}
Variants§
Root(SourcePosition)
Field(&'a str, SourcePosition, Arc<FieldPath<'a>>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FieldPath<'a>
impl<'a> RefUnwindSafe for FieldPath<'a>
impl<'a> Send for FieldPath<'a>
impl<'a> Sync for FieldPath<'a>
impl<'a> Unpin for FieldPath<'a>
impl<'a> UnwindSafe for FieldPath<'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