pub struct CheckIssue {
pub table_id: u64,
pub table_name: String,
pub severity: String,
pub description: String,
}Expand description
An integrity issue found by Database::check (spec §16).
Fields§
§table_id: u64§table_name: String§severity: String§description: StringTrait Implementations§
Source§impl Clone for CheckIssue
impl Clone for CheckIssue
Source§fn clone(&self) -> CheckIssue
fn clone(&self) -> CheckIssue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CheckIssue
impl RefUnwindSafe for CheckIssue
impl Send for CheckIssue
impl Sync for CheckIssue
impl Unpin for CheckIssue
impl UnsafeUnpin for CheckIssue
impl UnwindSafe for CheckIssue
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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