pub struct VolumeModificationView {Show 16 fields
pub volume_id: String,
pub modification_state: String,
pub status_message: Option<String>,
pub target_size: Option<i32>,
pub target_iops: Option<i32>,
pub target_throughput: Option<i32>,
pub target_volume_type: Option<String>,
pub target_multi_attach_enabled: Option<bool>,
pub original_size: Option<i32>,
pub original_iops: Option<i32>,
pub original_throughput: Option<i32>,
pub original_volume_type: Option<String>,
pub original_multi_attach_enabled: Option<bool>,
pub progress: i64,
pub start_time: String,
pub end_time: Option<String>,
}Fields§
§volume_id: String§modification_state: String§status_message: Option<String>§target_size: Option<i32>§target_iops: Option<i32>§target_throughput: Option<i32>§target_volume_type: Option<String>§target_multi_attach_enabled: Option<bool>§original_size: Option<i32>§original_iops: Option<i32>§original_throughput: Option<i32>§original_volume_type: Option<String>§original_multi_attach_enabled: Option<bool>§progress: i64§start_time: String§end_time: Option<String>Trait Implementations§
Source§impl Clone for VolumeModificationView
impl Clone for VolumeModificationView
Source§fn clone(&self) -> VolumeModificationView
fn clone(&self) -> VolumeModificationView
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 VolumeModificationView
impl Debug for VolumeModificationView
Source§impl Default for VolumeModificationView
impl Default for VolumeModificationView
Source§fn default() -> VolumeModificationView
fn default() -> VolumeModificationView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VolumeModificationView
impl<'de> Deserialize<'de> for VolumeModificationView
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 From<&VolumeModification> for VolumeModificationView
impl From<&VolumeModification> for VolumeModificationView
Source§fn from(m: &VolumeModification) -> Self
fn from(m: &VolumeModification) -> Self
Converts to this type from the input type.
Source§impl From<VolumeModificationView> for VolumeModification
impl From<VolumeModificationView> for VolumeModification
Source§fn from(v: VolumeModificationView) -> Self
fn from(v: VolumeModificationView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VolumeModificationView
impl RefUnwindSafe for VolumeModificationView
impl Send for VolumeModificationView
impl Sync for VolumeModificationView
impl Unpin for VolumeModificationView
impl UnsafeUnpin for VolumeModificationView
impl UnwindSafe for VolumeModificationView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.