pub enum Reference<'input> {
Entity(&'input str),
Char(char),
}
Expand description
Representation of the Reference value.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'input> Freeze for Reference<'input>
impl<'input> RefUnwindSafe for Reference<'input>
impl<'input> Send for Reference<'input>
impl<'input> Sync for Reference<'input>
impl<'input> Unpin for Reference<'input>
impl<'input> UnwindSafe for Reference<'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