pub struct NumberOctal {
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 NumberOctal
impl Clone for NumberOctal
Source§fn clone(&self) -> NumberOctal
fn clone(&self) -> NumberOctal
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 NumberOctal
Source§impl Debug for NumberOctal
impl Debug for NumberOctal
impl Eq for NumberOctal
Source§impl PartialEq for NumberOctal
impl PartialEq for NumberOctal
Source§fn eq(&self, other: &NumberOctal) -> bool
fn eq(&self, other: &NumberOctal) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NumberOctal
Auto Trait Implementations§
impl Freeze for NumberOctal
impl RefUnwindSafe for NumberOctal
impl Send for NumberOctal
impl Sync for NumberOctal
impl Unpin for NumberOctal
impl UnsafeUnpin for NumberOctal
impl UnwindSafe for NumberOctal
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