#[non_exhaustive]pub enum WrittenOutput {
Path {
root: PathBuf,
artifacts: Vec<PathBuf>,
},
Memory {
artifacts: Vec<MemoryArtifact>,
},
}Expand description
Complete inventory of output owned by the caller.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Debug for WrittenOutput
impl Debug for WrittenOutput
impl Eq for WrittenOutput
Source§impl PartialEq for WrittenOutput
impl PartialEq for WrittenOutput
Source§fn eq(&self, other: &WrittenOutput) -> bool
fn eq(&self, other: &WrittenOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WrittenOutput
Auto Trait Implementations§
impl Freeze for WrittenOutput
impl RefUnwindSafe for WrittenOutput
impl Send for WrittenOutput
impl Sync for WrittenOutput
impl Unpin for WrittenOutput
impl UnsafeUnpin for WrittenOutput
impl UnwindSafe for WrittenOutput
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