pub struct ParseDataSetError(/* private fields */);Expand description
Could not parse a data set because given number is an unknown data set ID.
Trait Implementations§
Source§impl Clone for ParseDataSetError
impl Clone for ParseDataSetError
Source§fn clone(&self) -> ParseDataSetError
fn clone(&self) -> ParseDataSetError
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 ParseDataSetError
impl Debug for ParseDataSetError
Source§impl Display for ParseDataSetError
impl Display for ParseDataSetError
Source§impl Error for ParseDataSetError
impl Error for ParseDataSetError
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()
Source§impl From<ParseDataSetError> for Error
impl From<ParseDataSetError> for Error
Source§fn from(source: ParseDataSetError) -> Self
fn from(source: ParseDataSetError) -> Self
Converts to this type from the input type.
impl Copy for ParseDataSetError
Auto Trait Implementations§
impl Freeze for ParseDataSetError
impl RefUnwindSafe for ParseDataSetError
impl Send for ParseDataSetError
impl Sync for ParseDataSetError
impl Unpin for ParseDataSetError
impl UnwindSafe for ParseDataSetError
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