Enum FormatError
pub enum FormatError {
Format(Error),
Arrow(ArrowError),
}Expand description
Either an ArrowError or std::fmt::Error
Variants§
Format(Error)
An error occurred while formatting the array
Arrow(ArrowError)
An Arrow error occurred while formatting the array.
Trait Implementations§
§impl From<ArrowError> for FormatError
impl From<ArrowError> for FormatError
§fn from(value: ArrowError) -> FormatError
fn from(value: ArrowError) -> FormatError
Converts to this type from the input type.
§impl From<Error> for FormatError
impl From<Error> for FormatError
§fn from(value: Error) -> FormatError
fn from(value: Error) -> FormatError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FormatError
impl !RefUnwindSafe for FormatError
impl Send for FormatError
impl Sync for FormatError
impl Unpin for FormatError
impl !UnwindSafe for FormatError
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