pub struct WeekdaySet(/* private fields */);Expand description
Bitset representing weekdays.
Implementations§
Source§impl WeekdaySet
 
impl WeekdaySet
Source§impl WeekdaySet
 
impl WeekdaySet
Sourcepub const fn new(days: &[Weekday]) -> WeekdaySet
 
pub const fn new(days: &[Weekday]) -> WeekdaySet
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<'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
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§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