pub struct NumberBinary {
pub extent: Extent,
pub integral: Extent,
pub fractional: Option<Extent>,
pub exponent: Option<Extent>,
pub type_suffix: Option<Extent>,
/* private fields */
}Fields§
§extent: Extent§integral: Extent§fractional: Option<Extent>§exponent: Option<Extent>§type_suffix: Option<Extent>Implementations§
Trait Implementations§
Source§impl Clone for NumberBinary
impl Clone for NumberBinary
Source§fn clone(&self) -> NumberBinary
fn clone(&self) -> NumberBinary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NumberBinary
Source§impl Debug for NumberBinary
impl Debug for NumberBinary
impl Eq for NumberBinary
Source§impl PartialEq for NumberBinary
impl PartialEq for NumberBinary
Source§fn eq(&self, other: &NumberBinary) -> bool
fn eq(&self, other: &NumberBinary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NumberBinary
Auto Trait Implementations§
impl Freeze for NumberBinary
impl RefUnwindSafe for NumberBinary
impl Send for NumberBinary
impl Sync for NumberBinary
impl Unpin for NumberBinary
impl UnsafeUnpin for NumberBinary
impl UnwindSafe for NumberBinary
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