Enum debris_parser::ast::Value
source · pub enum Value {
Show 13 variants
Block(Block),
Bool(Bool),
Branch(Branch),
ControlFlow(ControlFlowOperation),
FormatString(FormatString),
Function(Function),
Ident(Ident),
Int(Int),
InfLoop(InfLoop),
ParenthesisValue(ParensValue),
String(String),
Tuple(Tuple),
WhileLoop(WhileLoop),
}
Variants§
Block(Block)
Bool(Bool)
Branch(Branch)
ControlFlow(ControlFlowOperation)
FormatString(FormatString)
Function(Function)
Ident(Ident)
Int(Int)
InfLoop(InfLoop)
ParenthesisValue(ParensValue)
String(String)
Tuple(Tuple)
WhileLoop(WhileLoop)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Value
impl !Send for Value
impl !Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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