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