Enum aws_throwaway::InstanceOs
source · #[non_exhaustive]pub enum InstanceOs {
Ubuntu20_04,
Ubuntu22_04,
}Expand description
aws-throwaway needs to manually support each OS, so the only OS’s you can use are those listed in this enum. Support for more (similar) OS’s is welcome via pull request.
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.
Trait Implementations§
source§impl Clone for InstanceOs
impl Clone for InstanceOs
source§fn clone(&self) -> InstanceOs
fn clone(&self) -> InstanceOs
Returns a copy 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 moreimpl Copy for InstanceOs
Auto Trait Implementations§
impl RefUnwindSafe for InstanceOs
impl Send for InstanceOs
impl Sync for InstanceOs
impl Unpin for InstanceOs
impl UnwindSafe for InstanceOs
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