pub enum ContainerType {
Package,
}Expand description
The type of physical container being used. (always ‘PACKAGE’)
Variants§
Package
Trait Implementations§
Source§impl Clone for ContainerType
impl Clone for ContainerType
Source§fn clone(&self) -> ContainerType
fn clone(&self) -> ContainerType
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 ContainerType
impl Debug for ContainerType
Source§impl Default for ContainerType
impl Default for ContainerType
Source§fn default() -> ContainerType
fn default() -> ContainerType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerType
impl<'de> Deserialize<'de> for ContainerType
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 Hash for ContainerType
impl Hash for ContainerType
Source§impl Ord for ContainerType
impl Ord for ContainerType
Source§fn cmp(&self, other: &ContainerType) -> Ordering
fn cmp(&self, other: &ContainerType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ContainerType
impl PartialEq for ContainerType
Source§impl PartialOrd for ContainerType
impl PartialOrd for ContainerType
Source§impl Serialize for ContainerType
impl Serialize for ContainerType
impl Copy for ContainerType
impl Eq for ContainerType
impl StructuralPartialEq for ContainerType
Auto Trait Implementations§
impl Freeze for ContainerType
impl RefUnwindSafe for ContainerType
impl Send for ContainerType
impl Sync for ContainerType
impl Unpin for ContainerType
impl UnsafeUnpin for ContainerType
impl UnwindSafe for ContainerType
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