pub enum DaysToBuild {
None,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday,
All,
}Expand description
Days for a build (flags enum for days of the week)
Variants§
Trait Implementations§
Source§impl Clone for DaysToBuild
impl Clone for DaysToBuild
Source§fn clone(&self) -> DaysToBuild
fn clone(&self) -> DaysToBuild
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 DaysToBuild
impl Debug for DaysToBuild
Source§impl<'de> Deserialize<'de> for DaysToBuild
impl<'de> Deserialize<'de> for DaysToBuild
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DaysToBuild
impl PartialEq for DaysToBuild
Source§impl Serialize for DaysToBuild
impl Serialize for DaysToBuild
impl StructuralPartialEq for DaysToBuild
Auto Trait Implementations§
impl Freeze for DaysToBuild
impl RefUnwindSafe for DaysToBuild
impl Send for DaysToBuild
impl Sync for DaysToBuild
impl Unpin for DaysToBuild
impl UnwindSafe for DaysToBuild
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