pub struct JobSchedule {
pub id: Option<String>,
pub name: Option<String>,
pub type_: Option<String>,
pub properties: Option<JobScheduleProperties>,
}Expand description
Definition of the job schedule.
Fields§
§id: Option<String>Gets the id of the resource.
name: Option<String>Gets the name of the variable.
type_: Option<String>Resource type
properties: Option<JobScheduleProperties>Definition of job schedule parameters.
Implementations§
Source§impl JobSchedule
impl JobSchedule
Trait Implementations§
Source§impl Clone for JobSchedule
impl Clone for JobSchedule
Source§fn clone(&self) -> JobSchedule
fn clone(&self) -> JobSchedule
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 JobSchedule
impl Debug for JobSchedule
Source§impl Default for JobSchedule
impl Default for JobSchedule
Source§fn default() -> JobSchedule
fn default() -> JobSchedule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobSchedule
impl<'de> Deserialize<'de> for JobSchedule
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 JobSchedule
impl PartialEq for JobSchedule
Source§impl Serialize for JobSchedule
impl Serialize for JobSchedule
impl StructuralPartialEq for JobSchedule
Auto Trait Implementations§
impl Freeze for JobSchedule
impl RefUnwindSafe for JobSchedule
impl Send for JobSchedule
impl Sync for JobSchedule
impl Unpin for JobSchedule
impl UnwindSafe for JobSchedule
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