pub enum Elem<T> {
Value(T),
Paren {
open: T,
inner: ParseResult<T>,
close: T,
},
}
Expand description
対応のある括弧列、または括弧以外の値を一つもつ列挙型
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Elem<T>where
T: Freeze,
impl<T> RefUnwindSafe for Elem<T>where
T: RefUnwindSafe,
impl<T> Send for Elem<T>where
T: Send,
impl<T> Sync for Elem<T>where
T: Sync,
impl<T> Unpin for Elem<T>where
T: Unpin,
impl<T> UnwindSafe for Elem<T>where
T: UnwindSafe,
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