pub enum OutputPlan {
Raw {
stdout_file: Option<PathBuf>,
stderr_file: Option<PathBuf>,
},
Protocol {
lifecycle: OutputLifecycle,
format: String,
destination: String,
stdout_file: Option<PathBuf>,
stderr_file: Option<PathBuf>,
},
}Expand description
Where a resolved call’s output goes, and in what form.
Variants§
Implementations§
Source§impl OutputPlan
impl OutputPlan
Trait Implementations§
Source§impl Clone for OutputPlan
impl Clone for OutputPlan
Source§fn clone(&self) -> OutputPlan
fn clone(&self) -> OutputPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutputPlan
impl Debug for OutputPlan
impl Eq for OutputPlan
Source§impl PartialEq for OutputPlan
impl PartialEq for OutputPlan
impl StructuralPartialEq for OutputPlan
Auto Trait Implementations§
impl Freeze for OutputPlan
impl RefUnwindSafe for OutputPlan
impl Send for OutputPlan
impl Sync for OutputPlan
impl Unpin for OutputPlan
impl UnsafeUnpin for OutputPlan
impl UnwindSafe for OutputPlan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.