pub enum FloatLiteral {
F32(f32),
F64(f64),
}Variants§
Trait Implementations§
Source§impl Clone for FloatLiteral
impl Clone for FloatLiteral
Source§fn clone(&self) -> FloatLiteral
fn clone(&self) -> FloatLiteral
Returns a copy 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 FloatLiteral
impl Debug for FloatLiteral
Source§impl Display for FloatLiteral
impl Display for FloatLiteral
impl Copy for FloatLiteral
Auto Trait Implementations§
impl Freeze for FloatLiteral
impl RefUnwindSafe for FloatLiteral
impl Send for FloatLiteral
impl Sync for FloatLiteral
impl Unpin for FloatLiteral
impl UnwindSafe for FloatLiteral
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