pub struct GooglePrivacyDlpV2Schedule {
pub recurrence_period_duration: Option<Duration>,
}Expand description
Schedule for inspect job triggers.
This type is not used in any activity, and only used as part of another schema.
Fields§
§recurrence_period_duration: Option<Duration>With this option a job is started on a regular periodic basis. For example: every day (86400 seconds). A scheduled start time will be skipped if the previous execution has not ended when its scheduled time occurs. This value must be set to a time duration greater than or equal to 1 day and can be no longer than 60 days.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Schedule
impl Clone for GooglePrivacyDlpV2Schedule
Source§fn clone(&self) -> GooglePrivacyDlpV2Schedule
fn clone(&self) -> GooglePrivacyDlpV2Schedule
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 GooglePrivacyDlpV2Schedule
impl Debug for GooglePrivacyDlpV2Schedule
Source§impl Default for GooglePrivacyDlpV2Schedule
impl Default for GooglePrivacyDlpV2Schedule
Source§fn default() -> GooglePrivacyDlpV2Schedule
fn default() -> GooglePrivacyDlpV2Schedule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Schedule
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Schedule
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
impl Part for GooglePrivacyDlpV2Schedule
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2Schedule
impl RefUnwindSafe for GooglePrivacyDlpV2Schedule
impl Send for GooglePrivacyDlpV2Schedule
impl Sync for GooglePrivacyDlpV2Schedule
impl Unpin for GooglePrivacyDlpV2Schedule
impl UnwindSafe for GooglePrivacyDlpV2Schedule
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