pub enum SystemColumnsError {
PresenceMismatch {
column: SystemColumn,
target_present: bool,
source_present: bool,
},
LengthMismatch {
column: SystemColumn,
len: usize,
row_count: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for SystemColumnsError
impl Clone for SystemColumnsError
Source§fn clone(&self) -> SystemColumnsError
fn clone(&self) -> SystemColumnsError
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 moreimpl Copy for SystemColumnsError
Source§impl Debug for SystemColumnsError
impl Debug for SystemColumnsError
Source§impl Display for SystemColumnsError
impl Display for SystemColumnsError
impl Eq for SystemColumnsError
Source§impl Error for SystemColumnsError
impl Error for SystemColumnsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<SystemColumnsError> for Error
impl From<SystemColumnsError> for Error
Source§fn from(err: SystemColumnsError) -> Self
fn from(err: SystemColumnsError) -> Self
Converts to this type from the input type.
Source§impl IntoDiagnostic for SystemColumnsError
impl IntoDiagnostic for SystemColumnsError
fn into_diagnostic(self) -> Diagnostic
Source§impl PartialEq for SystemColumnsError
impl PartialEq for SystemColumnsError
impl StructuralPartialEq for SystemColumnsError
Auto Trait Implementations§
impl Freeze for SystemColumnsError
impl RefUnwindSafe for SystemColumnsError
impl Send for SystemColumnsError
impl Sync for SystemColumnsError
impl Unpin for SystemColumnsError
impl UnsafeUnpin for SystemColumnsError
impl UnwindSafe for SystemColumnsError
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