pub struct ExprNumeric {
pub value: IntOrFloat,
pub span: Span,
}Expand description
lua numeric literal value
Fields§
§value: IntOrFloat§span: SpanImplementations§
Source§impl ExprNumeric
impl ExprNumeric
Trait Implementations§
Source§impl Clone for ExprNumeric
impl Clone for ExprNumeric
Source§fn clone(&self) -> ExprNumeric
fn clone(&self) -> ExprNumeric
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 ExprNumeric
impl Debug for ExprNumeric
Source§impl From<Token> for ExprNumeric
impl From<Token> for ExprNumeric
impl Copy for ExprNumeric
Auto Trait Implementations§
impl Freeze for ExprNumeric
impl RefUnwindSafe for ExprNumeric
impl Send for ExprNumeric
impl Sync for ExprNumeric
impl Unpin for ExprNumeric
impl UnwindSafe for ExprNumeric
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