pub enum ParsedToken {
VariableAssignment {
name: String,
value: i32,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ParsedToken
impl Clone for ParsedToken
Source§fn clone(&self) -> ParsedToken
fn clone(&self) -> ParsedToken
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ParsedToken
impl RefUnwindSafe for ParsedToken
impl Send for ParsedToken
impl Sync for ParsedToken
impl Unpin for ParsedToken
impl UnwindSafe for ParsedToken
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