pub struct StrictTypeError {
pub expected: StrictColumnType,
pub actual: StorageClass,
}Expand description
Error returned when a value violates a STRICT table column type constraint.
Fields§
§expected: StrictColumnTypeThe expected strict column type.
actual: StorageClassThe actual storage class of the value.
Trait Implementations§
Source§impl Clone for StrictTypeError
impl Clone for StrictTypeError
Source§fn clone(&self) -> StrictTypeError
fn clone(&self) -> StrictTypeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StrictTypeError
impl Debug for StrictTypeError
Source§impl Display for StrictTypeError
impl Display for StrictTypeError
Source§impl PartialEq for StrictTypeError
impl PartialEq for StrictTypeError
impl Eq for StrictTypeError
impl StructuralPartialEq for StrictTypeError
Auto Trait Implementations§
impl Freeze for StrictTypeError
impl RefUnwindSafe for StrictTypeError
impl Send for StrictTypeError
impl Sync for StrictTypeError
impl Unpin for StrictTypeError
impl UnsafeUnpin for StrictTypeError
impl UnwindSafe for StrictTypeError
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