pub struct CronJobDetailsPost {
pub env: Option<ServiceEnv>,
pub env_specific_details: Option<EnvSpecificDetails>,
pub plan: Option<PaidPlan>,
pub region: Option<Region>,
pub runtime: Option<ServiceRuntime>,
pub schedule: Option<String>,
}Expand description
CronJobDetailsPost
JSON schema
{
"type": "object",
"properties": {
"env": {
"$ref": "#/components/schemas/serviceEnv"
},
"envSpecificDetails": {
"$ref": "#/components/schemas/envSpecificDetails"
},
"plan": {
"$ref": "#/components/schemas/paidPlan"
},
"region": {
"$ref": "#/components/schemas/region"
},
"runtime": {
"$ref": "#/components/schemas/serviceRuntime"
},
"schedule": {
"type": "string"
}
}
}Fields§
§env: Option<ServiceEnv>§env_specific_details: Option<EnvSpecificDetails>§plan: Option<PaidPlan>§region: Option<Region>§runtime: Option<ServiceRuntime>§schedule: Option<String>Trait Implementations§
Source§impl Clone for CronJobDetailsPost
impl Clone for CronJobDetailsPost
Source§fn clone(&self) -> CronJobDetailsPost
fn clone(&self) -> CronJobDetailsPost
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 moreSource§impl Debug for CronJobDetailsPost
impl Debug for CronJobDetailsPost
Source§impl Default for CronJobDetailsPost
impl Default for CronJobDetailsPost
Source§impl<'de> Deserialize<'de> for CronJobDetailsPost
impl<'de> Deserialize<'de> for CronJobDetailsPost
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 From<CronJobDetailsPost> for ServicePostServiceDetails
impl From<CronJobDetailsPost> for ServicePostServiceDetails
Source§fn from(value: CronJobDetailsPost) -> Self
fn from(value: CronJobDetailsPost) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CronJobDetailsPost
impl RefUnwindSafe for CronJobDetailsPost
impl Send for CronJobDetailsPost
impl Sync for CronJobDetailsPost
impl Unpin for CronJobDetailsPost
impl UnsafeUnpin for CronJobDetailsPost
impl UnwindSafe for CronJobDetailsPost
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