pub enum AdoVariable {
Group {
group: String,
},
Named {
name: String,
value: String,
is_secret: bool,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdoVariable
impl RefUnwindSafe for AdoVariable
impl Send for AdoVariable
impl Sync for AdoVariable
impl Unpin for AdoVariable
impl UnsafeUnpin for AdoVariable
impl UnwindSafe for AdoVariable
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