pub enum VectorOrElement<'a> {
Vector(&'a [f32]),
Element(&'a str),
}Expand description
Argument of the vsim command
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for VectorOrElement<'a>
impl<'a> RefUnwindSafe for VectorOrElement<'a>
impl<'a> Send for VectorOrElement<'a>
impl<'a> Sync for VectorOrElement<'a>
impl<'a> Unpin for VectorOrElement<'a>
impl<'a> UnwindSafe for VectorOrElement<'a>
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