Struct icu_calendar::provider::WeekdaySet
source · pub struct WeekdaySet(u8);
Expand description
Bitset representing weekdays.
Tuple Fields§
§0: u8
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]) -> Self
pub const fn new(days: &[IsoWeekday]) -> Self
Creates a new WeekdaySet using the provided days.
Trait Implementations§
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 PartialEq for WeekdaySet
impl PartialEq for WeekdaySet
source§fn eq(&self, other: &WeekdaySet) -> bool
fn eq(&self, other: &WeekdaySet) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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