pub struct PostStopPipelineParameters {
pub force: Option<bool>,
}
Expand description
Query parameters to POST a pipeline stop.
JSON schema
{
"description": "Query parameters to POST a pipeline stop.",
"type": "object",
"properties": {
"force": {
"description": "The `force` parameter determines whether to immediately deprovision the pipeline compute\nresources (`force=true`) or first attempt to atomically checkpoint before doing so\n(`force=false`, which is the default).",
"type": "boolean"
}
}
}
Fields§
§force: Option<bool>
The force
parameter determines whether to immediately deprovision the pipeline compute
resources (force=true
) or first attempt to atomically checkpoint before doing so
(force=false
, which is the default).
Implementations§
Source§impl PostStopPipelineParameters
impl PostStopPipelineParameters
pub fn builder() -> PostStopPipelineParameters
Trait Implementations§
Source§impl Clone for PostStopPipelineParameters
impl Clone for PostStopPipelineParameters
Source§fn clone(&self) -> PostStopPipelineParameters
fn clone(&self) -> PostStopPipelineParameters
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 PostStopPipelineParameters
impl Debug for PostStopPipelineParameters
Source§impl<'de> Deserialize<'de> for PostStopPipelineParameters
impl<'de> Deserialize<'de> for PostStopPipelineParameters
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<&PostStopPipelineParameters> for PostStopPipelineParameters
impl From<&PostStopPipelineParameters> for PostStopPipelineParameters
Source§fn from(value: &PostStopPipelineParameters) -> Self
fn from(value: &PostStopPipelineParameters) -> Self
Converts to this type from the input type.
Source§impl From<PostStopPipelineParameters> for PostStopPipelineParameters
impl From<PostStopPipelineParameters> for PostStopPipelineParameters
Source§fn from(value: PostStopPipelineParameters) -> Self
fn from(value: PostStopPipelineParameters) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PostStopPipelineParameters> for PostStopPipelineParameters
impl TryFrom<PostStopPipelineParameters> for PostStopPipelineParameters
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: PostStopPipelineParameters) -> Result<Self, ConversionError>
fn try_from(value: PostStopPipelineParameters) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PostStopPipelineParameters
impl RefUnwindSafe for PostStopPipelineParameters
impl Send for PostStopPipelineParameters
impl Sync for PostStopPipelineParameters
impl Unpin for PostStopPipelineParameters
impl UnwindSafe for PostStopPipelineParameters
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