pub enum OutOption<'a> {
Term,
Value(&'a mut String),
File(File),
}Expand description
Ouput redirect option
Variants§
Auto Trait Implementations§
impl<'a> Freeze for OutOption<'a>
impl<'a> RefUnwindSafe for OutOption<'a>
impl<'a> Send for OutOption<'a>
impl<'a> Sync for OutOption<'a>
impl<'a> Unpin for OutOption<'a>
impl<'a> !UnwindSafe for OutOption<'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