pub struct FloatLiteral<'input> {
pub span: Span,
pub token_metadata: TokenMetadata<'input>,
pub value: &'input str,
}Fields§
§span: Span§token_metadata: TokenMetadata<'input>§value: &'input strTrait Implementations§
Source§impl<'input> Clone for FloatLiteral<'input>
impl<'input> Clone for FloatLiteral<'input>
Source§fn clone(&self) -> FloatLiteral<'input>
fn clone(&self) -> FloatLiteral<'input>
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<'input> Freeze for FloatLiteral<'input>
impl<'input> RefUnwindSafe for FloatLiteral<'input>
impl<'input> Send for FloatLiteral<'input>
impl<'input> Sync for FloatLiteral<'input>
impl<'input> Unpin for FloatLiteral<'input>
impl<'input> UnwindSafe for FloatLiteral<'input>
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