pub enum CustomType<'a> {
Space(Space, Row, Col),
Name(Row, Col),
Equals(Row, Col),
Bar(Row, Col),
Variant(Row, Col),
VariantArg(&'a Type<'a>, Row, Col),
IndentEquals(Row, Col),
IndentBar(Row, Col),
IndentAfterBar(Row, Col),
IndentAfterEquals(Row, Col),
}Variants§
Space(Space, Row, Col)
Name(Row, Col)
Equals(Row, Col)
Bar(Row, Col)
Variant(Row, Col)
VariantArg(&'a Type<'a>, Row, Col)
IndentEquals(Row, Col)
IndentBar(Row, Col)
IndentAfterBar(Row, Col)
IndentAfterEquals(Row, Col)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CustomType<'a>
impl<'a> RefUnwindSafe for CustomType<'a>
impl<'a> Send for CustomType<'a>
impl<'a> Sync for CustomType<'a>
impl<'a> Unpin for CustomType<'a>
impl<'a> UnsafeUnpin for CustomType<'a>
impl<'a> UnwindSafe for CustomType<'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