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§
Source§impl From<ArrowError> for FormatError
impl From<ArrowError> for FormatError
Source§fn from(value: ArrowError) -> Self
fn from(value: ArrowError) -> Self
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