pub struct Float {
pub base: FloatBase,
pub number: Box<str>,
pub suffix: FloatSuffix,
}
Expand description
Floating point number literal
(C11 6.4.4.2)
Fields§
§base: FloatBase
§number: Box<str>
§suffix: FloatSuffix
Trait Implementations§
impl Eq for Float
impl StructuralPartialEq for Float
Auto Trait Implementations§
impl Freeze for Float
impl RefUnwindSafe for Float
impl Send for Float
impl Sync for Float
impl Unpin for Float
impl UnwindSafe for Float
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