pub enum MetaChar {
Character(char),
Ineffective,
}
Expand description
Meta Character State
Defines if a given meta character is enabled or not within a given
syntax. If the character is enabled it also contains the rust
char
that it is set to.
Variants§
Character(char)
The meta character is set to the chosen char
Ineffective
The meta character is not enabled
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MetaChar
impl RefUnwindSafe for MetaChar
impl Send for MetaChar
impl Sync for MetaChar
impl Unpin for MetaChar
impl UnwindSafe for MetaChar
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