pub struct IntegerLiteral {
pub token: Token,
pub value: i64,
}Expand description
Integer literal
Fields§
§token: Token§value: i64Trait Implementations§
Source§impl Clone for IntegerLiteral
impl Clone for IntegerLiteral
Source§fn clone(&self) -> IntegerLiteral
fn clone(&self) -> IntegerLiteral
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegerLiteral
impl Debug for IntegerLiteral
Source§impl Display for IntegerLiteral
impl Display for IntegerLiteral
Source§impl PartialEq for IntegerLiteral
impl PartialEq for IntegerLiteral
impl StructuralPartialEq for IntegerLiteral
Auto Trait Implementations§
impl Freeze for IntegerLiteral
impl RefUnwindSafe for IntegerLiteral
impl Send for IntegerLiteral
impl Sync for IntegerLiteral
impl Unpin for IntegerLiteral
impl UnsafeUnpin for IntegerLiteral
impl UnwindSafe for IntegerLiteral
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