pub struct DirectiveStats {
pub loaded_count: usize,
pub skipped_count: usize,
pub error_count: usize,
}Expand description
Statistics from directive resolution
Fields§
§loaded_count: usizeNumber of schemas loaded successfully
skipped_count: usizeNumber of schemas skipped (already loaded/circular)
error_count: usizeNumber of errors during directive resolution
Trait Implementations§
Source§impl Debug for DirectiveStats
impl Debug for DirectiveStats
Source§impl Default for DirectiveStats
impl Default for DirectiveStats
Source§fn default() -> DirectiveStats
fn default() -> DirectiveStats
Returns the “default value” for a type. Read more
Source§impl From<&ResolutionResult> for DirectiveStats
impl From<&ResolutionResult> for DirectiveStats
Source§fn from(result: &ResolutionResult) -> Self
fn from(result: &ResolutionResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DirectiveStats
impl RefUnwindSafe for DirectiveStats
impl Send for DirectiveStats
impl Sync for DirectiveStats
impl Unpin for DirectiveStats
impl UnsafeUnpin for DirectiveStats
impl UnwindSafe for DirectiveStats
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