#[non_exhaustive]pub struct VirtualMachine {
pub tags: Vec<String>,
/* private fields */
}Expand description
VM instances that this policy-based route applies to.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.Optional. A list of VM instance tags that this policy-based route applies to. VM instances that have ANY of tags specified here installs this PBR.
Implementations§
Trait Implementations§
Source§impl Clone for VirtualMachine
impl Clone for VirtualMachine
Source§fn clone(&self) -> VirtualMachine
fn clone(&self) -> VirtualMachine
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 VirtualMachine
impl Debug for VirtualMachine
Source§impl Default for VirtualMachine
impl Default for VirtualMachine
Source§fn default() -> VirtualMachine
fn default() -> VirtualMachine
Returns the “default value” for a type. Read more
Source§impl Message for VirtualMachine
impl Message for VirtualMachine
Source§impl PartialEq for VirtualMachine
impl PartialEq for VirtualMachine
impl StructuralPartialEq for VirtualMachine
Auto Trait Implementations§
impl Freeze for VirtualMachine
impl RefUnwindSafe for VirtualMachine
impl Send for VirtualMachine
impl Sync for VirtualMachine
impl Unpin for VirtualMachine
impl UnwindSafe for VirtualMachine
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