pub enum BashVal {
Str(String),
Arr(Vec<BashVal>),
}Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for BashVal
Auto Trait Implementations§
impl Freeze for BashVal
impl RefUnwindSafe for BashVal
impl Send for BashVal
impl Sync for BashVal
impl Unpin for BashVal
impl UnsafeUnpin for BashVal
impl UnwindSafe for BashVal
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