pub struct BatchCompileReport {
pub entries: Vec<BatchCompileEntry>,
pub successes: usize,
pub skips: usize,
pub errors: usize,
}Expand description
Summary of one batch compile run.
Fields§
§entries: Vec<BatchCompileEntry>Per-input results in compile order.
successes: usizeNumber of successful inputs.
skips: usizeNumber of skipped inputs.
errors: usizeNumber of failed inputs.
Trait Implementations§
Source§impl Clone for BatchCompileReport
impl Clone for BatchCompileReport
Source§fn clone(&self) -> BatchCompileReport
fn clone(&self) -> BatchCompileReport
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 BatchCompileReport
impl Debug for BatchCompileReport
Source§impl Default for BatchCompileReport
impl Default for BatchCompileReport
Source§fn default() -> BatchCompileReport
fn default() -> BatchCompileReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchCompileReport
impl PartialEq for BatchCompileReport
impl Eq for BatchCompileReport
impl StructuralPartialEq for BatchCompileReport
Auto Trait Implementations§
impl Freeze for BatchCompileReport
impl RefUnwindSafe for BatchCompileReport
impl Send for BatchCompileReport
impl Sync for BatchCompileReport
impl Unpin for BatchCompileReport
impl UnsafeUnpin for BatchCompileReport
impl UnwindSafe for BatchCompileReport
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.