pub struct DTypeError(/* private fields */);Expand description
Indicates that a particular rust type does not support serialization or deserialization
as a given DType.
Implementations§
Trait Implementations§
Source§impl Clone for DTypeError
impl Clone for DTypeError
Source§fn clone(&self) -> DTypeError
fn clone(&self) -> DTypeError
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 DTypeError
impl Debug for DTypeError
Source§impl Display for DTypeError
impl Display for DTypeError
Source§impl Error for DTypeError
impl Error for DTypeError
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 Freeze for DTypeError
impl RefUnwindSafe for DTypeError
impl Send for DTypeError
impl Sync for DTypeError
impl Unpin for DTypeError
impl UnwindSafe for DTypeError
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