pub struct VolumeVolumeInfoDimensions {
pub height: Option<String>,
pub thickness: Option<String>,
pub width: Option<String>,
}Expand description
Physical dimensions of this volume.
This type is not used in any activity, and only used as part of another schema.
Fields§
§height: Option<String>Height or length of this volume (in cm).
thickness: Option<String>Thickness of this volume (in cm).
width: Option<String>Width of this volume (in cm).
Trait Implementations§
Source§impl Clone for VolumeVolumeInfoDimensions
impl Clone for VolumeVolumeInfoDimensions
Source§fn clone(&self) -> VolumeVolumeInfoDimensions
fn clone(&self) -> VolumeVolumeInfoDimensions
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 VolumeVolumeInfoDimensions
impl Debug for VolumeVolumeInfoDimensions
Source§impl Default for VolumeVolumeInfoDimensions
impl Default for VolumeVolumeInfoDimensions
Source§fn default() -> VolumeVolumeInfoDimensions
fn default() -> VolumeVolumeInfoDimensions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VolumeVolumeInfoDimensions
impl<'de> Deserialize<'de> for VolumeVolumeInfoDimensions
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
impl NestedType for VolumeVolumeInfoDimensions
impl Part for VolumeVolumeInfoDimensions
Auto Trait Implementations§
impl Freeze for VolumeVolumeInfoDimensions
impl RefUnwindSafe for VolumeVolumeInfoDimensions
impl Send for VolumeVolumeInfoDimensions
impl Sync for VolumeVolumeInfoDimensions
impl Unpin for VolumeVolumeInfoDimensions
impl UnwindSafe for VolumeVolumeInfoDimensions
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