Enum icu::datetime::neo_skeleton::NeoDateTimeComponents
source · #[non_exhaustive]pub enum NeoDateTimeComponents {
Date(NeoDateComponents),
CalendarPeriod(NeoCalendarPeriodComponents),
Time(NeoTimeComponents),
DateTime(NeoDateComponents, NeoTimeComponents),
}
Expand description
A specification of components for parts of a datetime.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Date(NeoDateComponents)
Components for parts of a date.
CalendarPeriod(NeoCalendarPeriodComponents)
Components for parts of a date with fields larger than a date.
Time(NeoTimeComponents)
Components for parts of a time.
DateTime(NeoDateComponents, NeoTimeComponents)
Components for parts of a date and time together.
Implementations§
source§impl NeoDateTimeComponents
impl NeoDateTimeComponents
sourcepub fn try_from_components(
components: NeoComponents,
) -> Option<NeoDateTimeComponents>
pub fn try_from_components( components: NeoComponents, ) -> Option<NeoDateTimeComponents>
Returns a NeoDateTimeComponents
if it is a subset of the NeoComponents
argument.
If the NeoComponents
contains a time zone, this function returns None
.
sourcepub fn long(self) -> NeoDateTimeSkeleton
pub fn long(self) -> NeoDateTimeSkeleton
Creates a skeleton for this field set with a long length.
sourcepub fn medium(self) -> NeoDateTimeSkeleton
pub fn medium(self) -> NeoDateTimeSkeleton
Creates a skeleton for this field set with a medium length.
sourcepub fn short(self) -> NeoDateTimeSkeleton
pub fn short(self) -> NeoDateTimeSkeleton
Creates a skeleton for this field set with a short length.
Trait Implementations§
source§impl Clone for NeoDateTimeComponents
impl Clone for NeoDateTimeComponents
source§fn clone(&self) -> NeoDateTimeComponents
fn clone(&self) -> NeoDateTimeComponents
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NeoDateTimeComponents
impl Debug for NeoDateTimeComponents
source§impl From<NeoCalendarPeriodComponents> for NeoDateTimeComponents
impl From<NeoCalendarPeriodComponents> for NeoDateTimeComponents
source§fn from(value: NeoCalendarPeriodComponents) -> NeoDateTimeComponents
fn from(value: NeoCalendarPeriodComponents) -> NeoDateTimeComponents
Converts to this type from the input type.
source§impl From<NeoDateComponents> for NeoDateTimeComponents
impl From<NeoDateComponents> for NeoDateTimeComponents
source§fn from(value: NeoDateComponents) -> NeoDateTimeComponents
fn from(value: NeoDateComponents) -> NeoDateTimeComponents
Converts to this type from the input type.
source§impl From<NeoDateTimeComponents> for NeoComponents
impl From<NeoDateTimeComponents> for NeoComponents
source§fn from(value: NeoDateTimeComponents) -> NeoComponents
fn from(value: NeoDateTimeComponents) -> NeoComponents
Converts to this type from the input type.
source§impl From<NeoTimeComponents> for NeoDateTimeComponents
impl From<NeoTimeComponents> for NeoDateTimeComponents
source§fn from(value: NeoTimeComponents) -> NeoDateTimeComponents
fn from(value: NeoTimeComponents) -> NeoDateTimeComponents
Converts to this type from the input type.
source§impl Hash for NeoDateTimeComponents
impl Hash for NeoDateTimeComponents
source§impl PartialEq for NeoDateTimeComponents
impl PartialEq for NeoDateTimeComponents
impl Copy for NeoDateTimeComponents
impl Eq for NeoDateTimeComponents
impl StructuralPartialEq for NeoDateTimeComponents
Auto Trait Implementations§
impl Freeze for NeoDateTimeComponents
impl RefUnwindSafe for NeoDateTimeComponents
impl Send for NeoDateTimeComponents
impl Sync for NeoDateTimeComponents
impl Unpin for NeoDateTimeComponents
impl UnwindSafe for NeoDateTimeComponents
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more