pub struct BatchCompileEntry {
pub input: PathBuf,
pub status: BatchCompileStatus,
pub outputs: Vec<PathBuf>,
pub error: Option<String>,
}Expand description
One per-input result from a batch compile run.
Fields§
§input: PathBufInput file path.
status: BatchCompileStatusFinal status for this input.
outputs: Vec<PathBuf>Output paths written or scheduled by the host.
error: Option<String>Human-readable error text when compilation failed.
Trait Implementations§
Source§impl Clone for BatchCompileEntry
impl Clone for BatchCompileEntry
Source§fn clone(&self) -> BatchCompileEntry
fn clone(&self) -> BatchCompileEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 BatchCompileEntry
impl Debug for BatchCompileEntry
Source§impl PartialEq for BatchCompileEntry
impl PartialEq for BatchCompileEntry
impl Eq for BatchCompileEntry
impl StructuralPartialEq for BatchCompileEntry
Auto Trait Implementations§
impl Freeze for BatchCompileEntry
impl RefUnwindSafe for BatchCompileEntry
impl Send for BatchCompileEntry
impl Sync for BatchCompileEntry
impl Unpin for BatchCompileEntry
impl UnsafeUnpin for BatchCompileEntry
impl UnwindSafe for BatchCompileEntry
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.