#[non_exhaustive]pub enum BuildSshForm {
List,
Map,
}Expand description
The authored build.ssh collection form.
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.
List
List syntax with raw SSH grant strings in authored order.
Map
Mapping syntax with sensitive scalar SSH grant values.
Trait Implementations§
Source§impl Clone for BuildSshForm
impl Clone for BuildSshForm
Source§fn clone(&self) -> BuildSshForm
fn clone(&self) -> BuildSshForm
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 moreimpl Copy for BuildSshForm
Source§impl Debug for BuildSshForm
impl Debug for BuildSshForm
impl Eq for BuildSshForm
Source§impl PartialEq for BuildSshForm
impl PartialEq for BuildSshForm
impl StructuralPartialEq for BuildSshForm
Auto Trait Implementations§
impl Freeze for BuildSshForm
impl RefUnwindSafe for BuildSshForm
impl Send for BuildSshForm
impl Sync for BuildSshForm
impl Unpin for BuildSshForm
impl UnsafeUnpin for BuildSshForm
impl UnwindSafe for BuildSshForm
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