Struct icu::calendar::provider::WeekdaySet
source · pub struct WeekdaySet(/* private fields */);
Expand description
Bitset representing weekdays.
Implementations§
source§impl WeekdaySet
impl WeekdaySet
sourcepub const fn contains(&self, day: IsoWeekday) -> bool
pub const fn contains(&self, day: IsoWeekday) -> bool
Returns whether the set contains the day.
source§impl WeekdaySet
impl WeekdaySet
sourcepub const fn new(days: &[IsoWeekday]) -> WeekdaySet
pub const fn new(days: &[IsoWeekday]) -> WeekdaySet
Creates a new WeekdaySet using the provided days.
Trait Implementations§
source§impl Bake for WeekdaySet
impl Bake for WeekdaySet
source§fn bake(&self, ctx: &CrateEnv) -> TokenStream
fn bake(&self, ctx: &CrateEnv) -> TokenStream
source§impl BakeSize for WeekdaySet
impl BakeSize for WeekdaySet
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
source§impl Clone for WeekdaySet
impl Clone for WeekdaySet
source§fn clone(&self) -> WeekdaySet
fn clone(&self) -> WeekdaySet
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 WeekdaySet
impl Debug for WeekdaySet
source§impl<'de> Deserialize<'de> for WeekdaySet
impl<'de> Deserialize<'de> for WeekdaySet
source§fn deserialize<D>(
deserializer: D,
) -> Result<WeekdaySet, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<WeekdaySet, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for WeekdaySet
impl PartialEq for WeekdaySet
source§impl Serialize for WeekdaySet
impl Serialize for WeekdaySet
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for WeekdaySet
impl StructuralPartialEq for WeekdaySet
Auto Trait Implementations§
impl Freeze for WeekdaySet
impl RefUnwindSafe for WeekdaySet
impl Send for WeekdaySet
impl Sync for WeekdaySet
impl Unpin for WeekdaySet
impl UnwindSafe for WeekdaySet
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