#[repr(packed)]pub struct EraStartDateULE {
pub year: <i32 as AsULE>::ULE,
pub month: <u8 as AsULE>::ULE,
pub day: <u8 as AsULE>::ULE,
}
Expand description
ULE
type for EraStartDate
Fields
year: <i32 as AsULE>::ULE
month: <u8 as AsULE>::ULE
day: <u8 as AsULE>::ULE
Trait Implementations
sourceimpl Clone for EraStartDateULE
impl Clone for EraStartDateULE
sourcefn clone(&self) -> EraStartDateULE
fn clone(&self) -> EraStartDateULE
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Ord for EraStartDateULE
impl Ord for EraStartDateULE
sourceimpl PartialEq<EraStartDateULE> for EraStartDateULE
impl PartialEq<EraStartDateULE> for EraStartDateULE
sourcefn eq(&self, other: &EraStartDateULE) -> bool
fn eq(&self, other: &EraStartDateULE) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EraStartDateULE) -> bool
fn ne(&self, other: &EraStartDateULE) -> bool
This method tests for !=
.
sourceimpl PartialOrd<EraStartDateULE> for EraStartDateULE
impl PartialOrd<EraStartDateULE> for EraStartDateULE
sourcefn partial_cmp(&self, other: &EraStartDateULE) -> Option<Ordering>
fn partial_cmp(&self, other: &EraStartDateULE) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl ULE for EraStartDateULE
impl ULE for EraStartDateULE
sourcefn validate_byte_slice(bytes: &[u8]) -> Result<(), ZeroVecError>
fn validate_byte_slice(bytes: &[u8]) -> Result<(), ZeroVecError>
Validates a byte slice, &[u8]
. Read more
sourcefn parse_byte_slice(bytes: &[u8]) -> Result<&[Self], ZeroVecError>
fn parse_byte_slice(bytes: &[u8]) -> Result<&[Self], ZeroVecError>
Parses a byte slice, &[u8]
, and return it as &[Self]
with the same lifetime. Read more
sourceunsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Takes a byte slice, &[u8]
, and return it as &[Self]
with the same lifetime, assuming
that this byte slice has previously been run through Self::parse_byte_slice()
with
success. Read more
impl Copy for EraStartDateULE
impl Eq for EraStartDateULE
impl StructuralEq for EraStartDateULE
impl StructuralPartialEq for EraStartDateULE
Auto Trait Implementations
impl RefUnwindSafe for EraStartDateULE
impl Send for EraStartDateULE
impl Sync for EraStartDateULE
impl Unpin for EraStartDateULE
impl UnwindSafe for EraStartDateULE
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more