pub enum PathType<'input> {
Object(&'input str),
Array(usize),
Wildcard,
RecursiveWildcard,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'input> Freeze for PathType<'input>
impl<'input> RefUnwindSafe for PathType<'input>
impl<'input> Send for PathType<'input>
impl<'input> Sync for PathType<'input>
impl<'input> Unpin for PathType<'input>
impl<'input> UnwindSafe for PathType<'input>
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