pub struct TableError {
pub error_detail: Option<ErrorDetail>,
pub table_name: Option<String>,
}
Expand description
An error record for table operations.
Fields§
§error_detail: Option<ErrorDetail>
The details about the error.
table_name: Option<String>
The name of the table. For Hive compatibility, this must be entirely lowercase.
Trait Implementations§
Source§impl Clone for TableError
impl Clone for TableError
Source§fn clone(&self) -> TableError
fn clone(&self) -> TableError
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 TableError
impl Debug for TableError
Source§impl Default for TableError
impl Default for TableError
Source§fn default() -> TableError
fn default() -> TableError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableError
impl<'de> Deserialize<'de> for TableError
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 TableError
impl PartialEq for TableError
impl StructuralPartialEq for TableError
Auto Trait Implementations§
impl Freeze for TableError
impl RefUnwindSafe for TableError
impl Send for TableError
impl Sync for TableError
impl Unpin for TableError
impl UnwindSafe for TableError
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