Enum icu_capi::date::ffi::ICU4XIsoWeekday
source · #[repr(C)]pub enum ICU4XIsoWeekday {
Monday = 1,
Tuesday = 2,
Wednesday = 3,
Thursday = 4,
Friday = 5,
Saturday = 6,
Sunday = 7,
}
Variants§
Trait Implementations§
source§impl Clone for ICU4XIsoWeekday
impl Clone for ICU4XIsoWeekday
source§fn clone(&self) -> ICU4XIsoWeekday
fn clone(&self) -> ICU4XIsoWeekday
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 From<ICU4XIsoWeekday> for IsoWeekday
impl From<ICU4XIsoWeekday> for IsoWeekday
source§fn from(this: ICU4XIsoWeekday) -> Self
fn from(this: ICU4XIsoWeekday) -> Self
Converts to this type from the input type.
source§impl From<IsoWeekday> for ICU4XIsoWeekday
impl From<IsoWeekday> for ICU4XIsoWeekday
source§fn from(other: IsoWeekday) -> Self
fn from(other: IsoWeekday) -> Self
Converts to this type from the input type.
impl Copy for ICU4XIsoWeekday
Auto Trait Implementations§
impl Freeze for ICU4XIsoWeekday
impl RefUnwindSafe for ICU4XIsoWeekday
impl Send for ICU4XIsoWeekday
impl Sync for ICU4XIsoWeekday
impl Unpin for ICU4XIsoWeekday
impl UnwindSafe for ICU4XIsoWeekday
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> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
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