#[non_exhaustive]pub struct GetWorkflowConfigRequest {
pub name: String,
/* private fields */
}Expand description
GetWorkflowConfig 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 config’s name.
Implementations§
Trait Implementations§
Source§impl Clone for GetWorkflowConfigRequest
impl Clone for GetWorkflowConfigRequest
Source§fn clone(&self) -> GetWorkflowConfigRequest
fn clone(&self) -> GetWorkflowConfigRequest
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 GetWorkflowConfigRequest
impl Debug for GetWorkflowConfigRequest
Source§impl Default for GetWorkflowConfigRequest
impl Default for GetWorkflowConfigRequest
Source§fn default() -> GetWorkflowConfigRequest
fn default() -> GetWorkflowConfigRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetWorkflowConfigRequest
impl Message for GetWorkflowConfigRequest
Source§impl PartialEq for GetWorkflowConfigRequest
impl PartialEq for GetWorkflowConfigRequest
impl StructuralPartialEq for GetWorkflowConfigRequest
Auto Trait Implementations§
impl Freeze for GetWorkflowConfigRequest
impl RefUnwindSafe for GetWorkflowConfigRequest
impl Send for GetWorkflowConfigRequest
impl Sync for GetWorkflowConfigRequest
impl Unpin for GetWorkflowConfigRequest
impl UnwindSafe for GetWorkflowConfigRequest
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