pub enum Exposed<'a> {
Lower(&'a Located<&'a str>),
Upper {
name: &'a Located<&'a str>,
privacy: Privacy,
},
Operator {
region: Region,
op: &'a str,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Exposed<'a>
impl<'a> RefUnwindSafe for Exposed<'a>
impl<'a> Send for Exposed<'a>
impl<'a> Sync for Exposed<'a>
impl<'a> Unpin for Exposed<'a>
impl<'a> UnsafeUnpin for Exposed<'a>
impl<'a> UnwindSafe for Exposed<'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