pub struct FloatType {
pub bits: u8,
pub is_unspecified: bool,
}
Expand description
Represents a floating point type with its properties
Fields§
§bits: u8
The number of bits (e.g., 64 for f64)
is_unspecified: bool
Whether this is an unspecified float (used for literals without explicit type)
Trait Implementations§
impl Eq for FloatType
impl StructuralPartialEq for FloatType
Auto Trait Implementations§
impl Freeze for FloatType
impl RefUnwindSafe for FloatType
impl Send for FloatType
impl Sync for FloatType
impl Unpin for FloatType
impl UnwindSafe for FloatType
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