pub struct GenerationReport {
pub services_generated: Vec<String>,
pub services_skipped: Vec<String>,
pub actions_emitted: usize,
pub schemas_emitted: usize,
}Expand description
Result of a generate run.
Fields§
§services_generated: Vec<String>§services_skipped: Vec<String>§actions_emitted: usize§schemas_emitted: usizeTrait Implementations§
Source§impl Clone for GenerationReport
impl Clone for GenerationReport
Source§fn clone(&self) -> GenerationReport
fn clone(&self) -> GenerationReport
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 GenerationReport
impl Debug for GenerationReport
Source§impl PartialEq for GenerationReport
impl PartialEq for GenerationReport
impl Eq for GenerationReport
impl StructuralPartialEq for GenerationReport
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