pub struct StorageProfile {
pub nfs_ip_address: Option<String>,
pub os_disks: Vec<Disk>,
}Expand description
Specifies the storage settings for the Azure Large Instance disks.
Fields§
§nfs_ip_address: Option<String>IP Address to connect to storage.
os_disks: Vec<Disk>Specifies information about the operating system disk used by Azure Large Instance.
Implementations§
Trait Implementations§
Source§impl Clone for StorageProfile
impl Clone for StorageProfile
Source§fn clone(&self) -> StorageProfile
fn clone(&self) -> StorageProfile
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 StorageProfile
impl Debug for StorageProfile
Source§impl Default for StorageProfile
impl Default for StorageProfile
Source§fn default() -> StorageProfile
fn default() -> StorageProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageProfile
impl<'de> Deserialize<'de> for StorageProfile
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 PartialEq for StorageProfile
impl PartialEq for StorageProfile
Source§impl Serialize for StorageProfile
impl Serialize for StorageProfile
impl StructuralPartialEq for StorageProfile
Auto Trait Implementations§
impl Freeze for StorageProfile
impl RefUnwindSafe for StorageProfile
impl Send for StorageProfile
impl Sync for StorageProfile
impl Unpin for StorageProfile
impl UnwindSafe for StorageProfile
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