pub struct SketchWarnings {
pub current: AbsCount,
pub previous: AbsCount,
pub delta: AbsCount,
}
Expand description
The number of warnings about a particular sketch’s compilation.
Fields§
§current: AbsCount
The current number of warnings from latest compilation.
previous: AbsCount
The previous number of warnings from latest compilation.
delta: AbsCount
The change in the number of warnings from SketchWarnings::previous
to SketchWarnings::current
.
Trait Implementations§
Source§impl Debug for SketchWarnings
impl Debug for SketchWarnings
Source§impl Default for SketchWarnings
impl Default for SketchWarnings
Source§fn default() -> SketchWarnings
fn default() -> SketchWarnings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SketchWarnings
impl<'de> Deserialize<'de> for SketchWarnings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SketchWarnings
impl RefUnwindSafe for SketchWarnings
impl Send for SketchWarnings
impl Sync for SketchWarnings
impl Unpin for SketchWarnings
impl UnwindSafe for SketchWarnings
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