pub struct IntLiteral {
pub the_value: i64,
}Fields§
§the_value: i64Trait Implementations§
Source§impl Clone for IntLiteral
impl Clone for IntLiteral
Source§fn clone(&self) -> IntLiteral
fn clone(&self) -> IntLiteral
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 IntLiteral
impl Debug for IntLiteral
Source§impl PartialEq for IntLiteral
impl PartialEq for IntLiteral
Source§fn eq(&self, other: &IntLiteral) -> bool
fn eq(&self, other: &IntLiteral) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntLiteral
Auto Trait Implementations§
impl Freeze for IntLiteral
impl RefUnwindSafe for IntLiteral
impl Send for IntLiteral
impl Sync for IntLiteral
impl Unpin for IntLiteral
impl UnsafeUnpin for IntLiteral
impl UnwindSafe for IntLiteral
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