pub struct IntegrityCheckResult {
pub data: Option<Box<RelationalIntegrityCheckData>>,
pub err: Option<String>,
}
Expand description
IntegrityCheckResult : an object with the result of the integrity check.
Fields§
§data: Option<Box<RelationalIntegrityCheckData>>
§err: Option<String>
a string value set in case of error.
Implementations§
Source§impl IntegrityCheckResult
impl IntegrityCheckResult
Sourcepub fn new() -> IntegrityCheckResult
pub fn new() -> IntegrityCheckResult
an object with the result of the integrity check.
Trait Implementations§
Source§impl Clone for IntegrityCheckResult
impl Clone for IntegrityCheckResult
Source§fn clone(&self) -> IntegrityCheckResult
fn clone(&self) -> IntegrityCheckResult
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IntegrityCheckResult
impl Debug for IntegrityCheckResult
Source§impl Default for IntegrityCheckResult
impl Default for IntegrityCheckResult
Source§fn default() -> IntegrityCheckResult
fn default() -> IntegrityCheckResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrityCheckResult
impl<'de> Deserialize<'de> for IntegrityCheckResult
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
Source§impl PartialEq for IntegrityCheckResult
impl PartialEq for IntegrityCheckResult
Source§impl Serialize for IntegrityCheckResult
impl Serialize for IntegrityCheckResult
impl StructuralPartialEq for IntegrityCheckResult
Auto Trait Implementations§
impl Freeze for IntegrityCheckResult
impl RefUnwindSafe for IntegrityCheckResult
impl Send for IntegrityCheckResult
impl Sync for IntegrityCheckResult
impl Unpin for IntegrityCheckResult
impl UnwindSafe for IntegrityCheckResult
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