pub struct MineReport {
pub created: Vec<String>,
pub merged: Vec<String>,
pub unchanged: Vec<String>,
pub skipped: Vec<(String, String)>,
pub candidates_seen: usize,
pub output_dir: String,
}Expand description
Summary of one mining run, for human + machine reporting.
Fields§
§created: Vec<String>§merged: Vec<String>§unchanged: Vec<String>§skipped: Vec<(String, String)>(title, reason) for every rejected candidate.
candidates_seen: usize§output_dir: StringTrait Implementations§
Source§impl Debug for MineReport
impl Debug for MineReport
Source§impl Default for MineReport
impl Default for MineReport
Source§fn default() -> MineReport
fn default() -> MineReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MineReport
impl RefUnwindSafe for MineReport
impl Send for MineReport
impl Sync for MineReport
impl Unpin for MineReport
impl UnsafeUnpin for MineReport
impl UnwindSafe for MineReport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more