pub enum BatchDestination {
Stdout,
File(PathBuf),
Clipboard,
}Expand description
Where the batch run writes its output.
Variants§
Stdout
File(PathBuf)
Clipboard
Buffer the whole result in memory and flush it to the system clipboard
once at the end. One-shot: --follow is rejected upstream.
Auto Trait Implementations§
impl Freeze for BatchDestination
impl RefUnwindSafe for BatchDestination
impl Send for BatchDestination
impl Sync for BatchDestination
impl Unpin for BatchDestination
impl UnsafeUnpin for BatchDestination
impl UnwindSafe for BatchDestination
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