#[non_exhaustive]pub struct GetWorkflowRequest {
pub name: String,
pub revision_id: String,
/* private fields */
}Expand description
Request for the GetWorkflow 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 for which information should be retrieved. Format: projects/{project}/locations/{location}/workflows/{workflow}
revision_id: StringOptional. The revision of the workflow to retrieve. If the revision_id is empty, the latest revision is retrieved. The format is “000001-a4d”, where the first six characters define the zero-padded decimal revision number. They are followed by a hyphen and three hexadecimal characters.
Implementations§
Trait Implementations§
Source§impl Clone for GetWorkflowRequest
impl Clone for GetWorkflowRequest
Source§fn clone(&self) -> GetWorkflowRequest
fn clone(&self) -> GetWorkflowRequest
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 GetWorkflowRequest
impl Debug for GetWorkflowRequest
Source§impl Default for GetWorkflowRequest
impl Default for GetWorkflowRequest
Source§fn default() -> GetWorkflowRequest
fn default() -> GetWorkflowRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetWorkflowRequest
impl Message for GetWorkflowRequest
Source§impl PartialEq for GetWorkflowRequest
impl PartialEq for GetWorkflowRequest
impl StructuralPartialEq for GetWorkflowRequest
Auto Trait Implementations§
impl Freeze for GetWorkflowRequest
impl RefUnwindSafe for GetWorkflowRequest
impl Send for GetWorkflowRequest
impl Sync for GetWorkflowRequest
impl Unpin for GetWorkflowRequest
impl UnwindSafe for GetWorkflowRequest
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