#[non_exhaustive]pub struct DeleteWorkflowRequest {
pub name: String,
/* private fields */
}Expand description
Request for the DeleteWorkflow method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the workflow to be deleted. Format: projects/{project}/locations/{location}/workflows/{workflow}
Implementations§
Trait Implementations§
Source§impl Clone for DeleteWorkflowRequest
impl Clone for DeleteWorkflowRequest
Source§fn clone(&self) -> DeleteWorkflowRequest
fn clone(&self) -> DeleteWorkflowRequest
Returns a copy 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 DeleteWorkflowRequest
impl Debug for DeleteWorkflowRequest
Source§impl Default for DeleteWorkflowRequest
impl Default for DeleteWorkflowRequest
Source§fn default() -> DeleteWorkflowRequest
fn default() -> DeleteWorkflowRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteWorkflowRequestwhere
DeleteWorkflowRequest: Default,
impl<'de> Deserialize<'de> for DeleteWorkflowRequestwhere
DeleteWorkflowRequest: Default,
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 Message for DeleteWorkflowRequest
impl Message for DeleteWorkflowRequest
Source§impl PartialEq for DeleteWorkflowRequest
impl PartialEq for DeleteWorkflowRequest
Source§impl Serialize for DeleteWorkflowRequest
impl Serialize for DeleteWorkflowRequest
impl StructuralPartialEq for DeleteWorkflowRequest
Auto Trait Implementations§
impl Freeze for DeleteWorkflowRequest
impl RefUnwindSafe for DeleteWorkflowRequest
impl Send for DeleteWorkflowRequest
impl Sync for DeleteWorkflowRequest
impl Unpin for DeleteWorkflowRequest
impl UnwindSafe for DeleteWorkflowRequest
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