#[non_exhaustive]pub enum DeployReservationDeviceCount {
YamlInteger(String),
String(String),
}Expand description
Raw resource-reservation device allocation-count scalar spelling.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
YamlInteger(String)
An exact YAML integer scalar spelling.
String(String)
An exact YAML string scalar spelling.
Trait Implementations§
Source§impl Clone for DeployReservationDeviceCount
impl Clone for DeployReservationDeviceCount
Source§fn clone(&self) -> DeployReservationDeviceCount
fn clone(&self) -> DeployReservationDeviceCount
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 DeployReservationDeviceCount
impl Debug for DeployReservationDeviceCount
impl Eq for DeployReservationDeviceCount
impl StructuralPartialEq for DeployReservationDeviceCount
Auto Trait Implementations§
impl Freeze for DeployReservationDeviceCount
impl RefUnwindSafe for DeployReservationDeviceCount
impl Send for DeployReservationDeviceCount
impl Sync for DeployReservationDeviceCount
impl Unpin for DeployReservationDeviceCount
impl UnsafeUnpin for DeployReservationDeviceCount
impl UnwindSafe for DeployReservationDeviceCount
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