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