pub struct JobCreateProperties {
pub runbook: Option<RunbookAssociationProperty>,
pub parameters: Option<Value>,
pub run_on: Option<String>,
}Fields§
§runbook: Option<RunbookAssociationProperty>The runbook property associated with the entity.
parameters: Option<Value>Gets or sets the parameters of the job.
run_on: Option<String>Gets or sets the runOn which specifies the group name where the job is to be executed.
Implementations§
Trait Implementations§
Source§impl Clone for JobCreateProperties
impl Clone for JobCreateProperties
Source§fn clone(&self) -> JobCreateProperties
fn clone(&self) -> JobCreateProperties
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 JobCreateProperties
impl Debug for JobCreateProperties
Source§impl Default for JobCreateProperties
impl Default for JobCreateProperties
Source§fn default() -> JobCreateProperties
fn default() -> JobCreateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobCreateProperties
impl<'de> Deserialize<'de> for JobCreateProperties
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 JobCreateProperties
impl PartialEq for JobCreateProperties
Source§impl Serialize for JobCreateProperties
impl Serialize for JobCreateProperties
impl StructuralPartialEq for JobCreateProperties
Auto Trait Implementations§
impl Freeze for JobCreateProperties
impl RefUnwindSafe for JobCreateProperties
impl Send for JobCreateProperties
impl Sync for JobCreateProperties
impl Unpin for JobCreateProperties
impl UnwindSafe for JobCreateProperties
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