pub enum Indeterminate<T: Debug> {
Known(T),
Unknown,
}Expand description
There are a number of error conditions that can occur between this layer all the way down to the CSV platform. Most of these cases have been enumerated; however, there is a possibility that some error conditions are not encapsulated here.
Variants§
Trait Implementations§
Source§impl Display for Indeterminate<Error>
impl Display for Indeterminate<Error>
Source§impl Error for Indeterminate<Error>
impl Error for Indeterminate<Error>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl<T> Freeze for Indeterminate<T>where
T: Freeze,
impl<T> RefUnwindSafe for Indeterminate<T>where
T: RefUnwindSafe,
impl<T> Send for Indeterminate<T>where
T: Send,
impl<T> Sync for Indeterminate<T>where
T: Sync,
impl<T> Unpin for Indeterminate<T>where
T: Unpin,
impl<T> UnsafeUnpin for Indeterminate<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Indeterminate<T>where
T: UnwindSafe,
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