pub enum LitKind {
Str(String),
RawStr(String),
Numeric(String, Option<String>),
Bool(bool),
Tuple(Vec<Literal>),
}Expand description
The Ast representation of literals
Variants§
Str(String)
A string literal ("foo")
RawStr(String)
A raw string literal (r#" x " a \ff "#)
Numeric(String, Option<String>)
A numeric value with optional postfix part (42, 1.3, 1Hz, 100sec)
Stores as a string to have lossless representation
Bool(bool)
A boolean literal (true)
Tuple(Vec<Literal>)
A tuple of literal values
Trait Implementations§
Source§impl Ord for LitKind
impl Ord for LitKind
Source§impl PartialOrd for LitKind
impl PartialOrd for LitKind
impl Eq for LitKind
impl StructuralPartialEq for LitKind
Auto Trait Implementations§
impl Freeze for LitKind
impl RefUnwindSafe for LitKind
impl Send for LitKind
impl Sync for LitKind
impl Unpin for LitKind
impl UnwindSafe for LitKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more