pub struct InitializeRequestBody {
pub initialize_method: Option<InitializeMethod>,
pub initialize_type: Option<InitializeType>,
}
Expand description
This action is used to prepare the contents of the volume for use by the system. If InitializeMethod is not specified in the request body, but the property InitializeMethod is specified, the property InitializeMethod value should be used. If neither is specified, the InitializeMethod should be Foreground.
Fields§
§initialize_method: Option<InitializeMethod>
§initialize_type: Option<InitializeType>
Trait Implementations§
Source§impl Clone for InitializeRequestBody
impl Clone for InitializeRequestBody
Source§fn clone(&self) -> InitializeRequestBody
fn clone(&self) -> InitializeRequestBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InitializeRequestBody
impl Debug for InitializeRequestBody
Source§impl Default for InitializeRequestBody
impl Default for InitializeRequestBody
Source§impl<'de> Deserialize<'de> for InitializeRequestBody
impl<'de> Deserialize<'de> for InitializeRequestBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Metadata<'static> for InitializeRequestBody
impl Metadata<'static> for InitializeRequestBody
Source§const JSON_SCHEMA: &'static str = "Volume.v1_9_0.json"
const JSON_SCHEMA: &'static str = "Volume.v1_9_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for InitializeRequestBody
impl RefUnwindSafe for InitializeRequestBody
impl Send for InitializeRequestBody
impl Sync for InitializeRequestBody
impl Unpin for InitializeRequestBody
impl UnwindSafe for InitializeRequestBody
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