pub struct ScheduleInterval {
pub year: Option<u8>,
pub month: Option<u8>,
pub day: Option<u8>,
pub weekday: Option<u8>,
pub hour: Option<u8>,
pub minute: Option<u8>,
pub second: Option<u8>,
}Fields§
§year: Option<u8>§month: Option<u8>§day: Option<u8>§weekday: Option<u8>§hour: Option<u8>§minute: Option<u8>§second: Option<u8>Trait Implementations§
Source§impl Clone for ScheduleInterval
impl Clone for ScheduleInterval
Source§fn clone(&self) -> ScheduleInterval
fn clone(&self) -> ScheduleInterval
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScheduleInterval
Source§impl Debug for ScheduleInterval
impl Debug for ScheduleInterval
Source§impl Default for ScheduleInterval
impl Default for ScheduleInterval
Source§fn default() -> ScheduleInterval
fn default() -> ScheduleInterval
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScheduleInterval
impl<'de> Deserialize<'de> for ScheduleInterval
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
Auto Trait Implementations§
impl Freeze for ScheduleInterval
impl RefUnwindSafe for ScheduleInterval
impl Send for ScheduleInterval
impl Sync for ScheduleInterval
impl Unpin for ScheduleInterval
impl UnsafeUnpin for ScheduleInterval
impl UnwindSafe for ScheduleInterval
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