#[non_exhaustive]pub struct DetachLunRequest {
pub instance: String,
pub lun: String,
pub skip_reboot: bool,
/* private fields */
}Expand description
Message for detach specific LUN from an Instance.
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.instance: StringRequired. Name of the instance.
lun: StringRequired. Name of the Lun to detach.
skip_reboot: boolIf true, performs lun unmapping without instance reboot.
Implementations§
Trait Implementations§
Source§impl Clone for DetachLunRequest
impl Clone for DetachLunRequest
Source§fn clone(&self) -> DetachLunRequest
fn clone(&self) -> DetachLunRequest
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 DetachLunRequest
impl Debug for DetachLunRequest
Source§impl Default for DetachLunRequest
impl Default for DetachLunRequest
Source§fn default() -> DetachLunRequest
fn default() -> DetachLunRequest
Returns the “default value” for a type. Read more
Source§impl Message for DetachLunRequest
impl Message for DetachLunRequest
Source§impl PartialEq for DetachLunRequest
impl PartialEq for DetachLunRequest
impl StructuralPartialEq for DetachLunRequest
Auto Trait Implementations§
impl Freeze for DetachLunRequest
impl RefUnwindSafe for DetachLunRequest
impl Send for DetachLunRequest
impl Sync for DetachLunRequest
impl Unpin for DetachLunRequest
impl UnwindSafe for DetachLunRequest
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