Enum td_client::table_import::TableImportChunkError
[−]
[src]
pub enum TableImportChunkError {
IOError(Error),
UnmatchElementNums(UnmatchElementNumsError),
UnexpectedError(String),
MsgpackValueWriteError(ValueWriteError),
MsgpackFixedValueWriteError(FixedValueWriteError),
}Variants
IOError(Error)UnmatchElementNums(UnmatchElementNumsError)UnexpectedError(String)MsgpackValueWriteError(ValueWriteError)MsgpackFixedValueWriteError(FixedValueWriteError)Trait Implementations
impl Debug for TableImportChunkError[src]
impl From<UnmatchElementNumsError> for TableImportChunkError[src]
fn from(err: UnmatchElementNumsError) -> Self
Performs the conversion.
impl From<ValueWriteError> for TableImportChunkError[src]
fn from(err: ValueWriteError) -> Self
Performs the conversion.
impl From<FixedValueWriteError> for TableImportChunkError[src]
fn from(err: FixedValueWriteError) -> Self
Performs the conversion.