#[non_exhaustive]pub struct GetMigratingVmRequest {
pub name: String,
pub view: MigratingVmView,
/* private fields */
}Expand description
Request message for ‘GetMigratingVm’ request.
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 name of the MigratingVm.
view: MigratingVmViewOptional. The level of details of the migrating VM.
Implementations§
Trait Implementations§
Source§impl Clone for GetMigratingVmRequest
impl Clone for GetMigratingVmRequest
Source§fn clone(&self) -> GetMigratingVmRequest
fn clone(&self) -> GetMigratingVmRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetMigratingVmRequest
impl Debug for GetMigratingVmRequest
Source§impl Default for GetMigratingVmRequest
impl Default for GetMigratingVmRequest
Source§fn default() -> GetMigratingVmRequest
fn default() -> GetMigratingVmRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetMigratingVmRequest
impl Message for GetMigratingVmRequest
Source§impl PartialEq for GetMigratingVmRequest
impl PartialEq for GetMigratingVmRequest
Source§fn eq(&self, other: &GetMigratingVmRequest) -> bool
fn eq(&self, other: &GetMigratingVmRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetMigratingVmRequest
Auto Trait Implementations§
impl Freeze for GetMigratingVmRequest
impl RefUnwindSafe for GetMigratingVmRequest
impl Send for GetMigratingVmRequest
impl Sync for GetMigratingVmRequest
impl Unpin for GetMigratingVmRequest
impl UnsafeUnpin for GetMigratingVmRequest
impl UnwindSafe for GetMigratingVmRequest
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