pub enum YulLiteral {
Number(String),
String(String),
HexNumber(String),
Boolean(bool),
HexString(String),
}
Variants§
Trait Implementations§
Source§impl Clone for YulLiteral
impl Clone for YulLiteral
Source§fn clone(&self) -> YulLiteral
fn clone(&self) -> YulLiteral
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 moreSource§impl Debug for YulLiteral
impl Debug for YulLiteral
Source§impl PartialEq for YulLiteral
impl PartialEq for YulLiteral
impl StructuralPartialEq for YulLiteral
Auto Trait Implementations§
impl Freeze for YulLiteral
impl RefUnwindSafe for YulLiteral
impl Send for YulLiteral
impl Sync for YulLiteral
impl Unpin for YulLiteral
impl UnwindSafe for YulLiteral
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