pub struct GenerationReport {
pub successful: Vec<String>,
pub failed: Vec<(String, String)>,
pub skipped: Vec<String>,
}Expand description
Report of package generation results
Fields§
§successful: Vec<String>§failed: Vec<(String, String)>§skipped: Vec<String>Implementations§
Source§impl GenerationReport
impl GenerationReport
Sourcepub fn print_summary(&self)
pub fn print_summary(&self)
Print a summary of the generation results
Trait Implementations§
Source§impl Debug for GenerationReport
impl Debug for GenerationReport
Source§impl Default for GenerationReport
impl Default for GenerationReport
Source§fn default() -> GenerationReport
fn default() -> GenerationReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GenerationReport
impl RefUnwindSafe for GenerationReport
impl Send for GenerationReport
impl Sync for GenerationReport
impl Unpin for GenerationReport
impl UnsafeUnpin for GenerationReport
impl UnwindSafe for GenerationReport
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