#[non_exhaustive]pub struct GetWorkflowInvocationRequest {
pub name: String,
/* private fields */
}Expand description
GetWorkflowInvocation request message.
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. The workflow invocation resource’s name.
Implementations§
Trait Implementations§
Source§impl Clone for GetWorkflowInvocationRequest
impl Clone for GetWorkflowInvocationRequest
Source§fn clone(&self) -> GetWorkflowInvocationRequest
fn clone(&self) -> GetWorkflowInvocationRequest
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 GetWorkflowInvocationRequest
impl Debug for GetWorkflowInvocationRequest
Source§impl Default for GetWorkflowInvocationRequest
impl Default for GetWorkflowInvocationRequest
Source§fn default() -> GetWorkflowInvocationRequest
fn default() -> GetWorkflowInvocationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetWorkflowInvocationRequest
impl PartialEq for GetWorkflowInvocationRequest
Source§fn eq(&self, other: &GetWorkflowInvocationRequest) -> bool
fn eq(&self, other: &GetWorkflowInvocationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetWorkflowInvocationRequest
Auto Trait Implementations§
impl Freeze for GetWorkflowInvocationRequest
impl RefUnwindSafe for GetWorkflowInvocationRequest
impl Send for GetWorkflowInvocationRequest
impl Sync for GetWorkflowInvocationRequest
impl Unpin for GetWorkflowInvocationRequest
impl UnwindSafe for GetWorkflowInvocationRequest
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