pub struct BackupScheduleSpec {
pub cron_spec: Option<CrontabSpec>,
}Expand description
Defines specifications of the backup schedule.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cron_spec: Option<CrontabSpec>Cron style schedule specification.
Trait Implementations§
Source§impl Clone for BackupScheduleSpec
impl Clone for BackupScheduleSpec
Source§fn clone(&self) -> BackupScheduleSpec
fn clone(&self) -> BackupScheduleSpec
Returns a duplicate 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 BackupScheduleSpec
impl Debug for BackupScheduleSpec
Source§impl Default for BackupScheduleSpec
impl Default for BackupScheduleSpec
Source§fn default() -> BackupScheduleSpec
fn default() -> BackupScheduleSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupScheduleSpec
impl<'de> Deserialize<'de> for BackupScheduleSpec
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 Serialize for BackupScheduleSpec
impl Serialize for BackupScheduleSpec
impl Part for BackupScheduleSpec
Auto Trait Implementations§
impl Freeze for BackupScheduleSpec
impl RefUnwindSafe for BackupScheduleSpec
impl Send for BackupScheduleSpec
impl Sync for BackupScheduleSpec
impl Unpin for BackupScheduleSpec
impl UnwindSafe for BackupScheduleSpec
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