pub struct ConvertStats {
pub statements_processed: u64,
pub statements_converted: u64,
pub statements_unchanged: u64,
pub statements_skipped: u64,
pub warnings: Vec<ConvertWarning>,
}Expand description
Statistics from convert operation
Fields§
§statements_processed: u64Total statements processed
statements_converted: u64Statements converted
statements_unchanged: u64Statements passed through unchanged
statements_skipped: u64Statements skipped (unsupported)
warnings: Vec<ConvertWarning>Warnings generated
Trait Implementations§
Source§impl Debug for ConvertStats
impl Debug for ConvertStats
Source§impl Default for ConvertStats
impl Default for ConvertStats
Source§fn default() -> ConvertStats
fn default() -> ConvertStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConvertStats
impl RefUnwindSafe for ConvertStats
impl Send for ConvertStats
impl Sync for ConvertStats
impl Unpin for ConvertStats
impl UnwindSafe for ConvertStats
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
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