#[non_exhaustive]pub struct GetMigrationWorkflowRequest {
pub name: String,
pub read_mask: Option<FieldMask>,
/* private fields */
}Expand description
A request to get a previously created migration workflow.
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 unique identifier for the migration workflow.
Example: projects/123/locations/us/workflows/1234
read_mask: Option<FieldMask>The list of fields to be retrieved.
Implementations§
Source§impl GetMigrationWorkflowRequest
impl GetMigrationWorkflowRequest
pub fn new() -> Self
Sourcepub fn set_read_mask<T>(self, v: T) -> Self
pub fn set_read_mask<T>(self, v: T) -> Self
Sets the value of read_mask.
Trait Implementations§
Source§impl Clone for GetMigrationWorkflowRequest
impl Clone for GetMigrationWorkflowRequest
Source§fn clone(&self) -> GetMigrationWorkflowRequest
fn clone(&self) -> GetMigrationWorkflowRequest
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 GetMigrationWorkflowRequest
impl Debug for GetMigrationWorkflowRequest
Source§impl Default for GetMigrationWorkflowRequest
impl Default for GetMigrationWorkflowRequest
Source§fn default() -> GetMigrationWorkflowRequest
fn default() -> GetMigrationWorkflowRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetMigrationWorkflowRequest
Auto Trait Implementations§
impl Freeze for GetMigrationWorkflowRequest
impl RefUnwindSafe for GetMigrationWorkflowRequest
impl Send for GetMigrationWorkflowRequest
impl Sync for GetMigrationWorkflowRequest
impl Unpin for GetMigrationWorkflowRequest
impl UnwindSafe for GetMigrationWorkflowRequest
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