pub struct IntrospectionError {
pub table: String,
pub message: String,
pub is_timeout: bool,
}Expand description
Error during table introspection.
Fields§
§table: StringTable name.
message: StringError message.
is_timeout: boolWhether this was a timeout.
Trait Implementations§
Source§impl Clone for IntrospectionError
impl Clone for IntrospectionError
Source§fn clone(&self) -> IntrospectionError
fn clone(&self) -> IntrospectionError
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 IntrospectionError
impl Debug for IntrospectionError
Auto Trait Implementations§
impl Freeze for IntrospectionError
impl RefUnwindSafe for IntrospectionError
impl Send for IntrospectionError
impl Sync for IntrospectionError
impl Unpin for IntrospectionError
impl UnwindSafe for IntrospectionError
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