pub enum DataInformationError {
NoData,
DataTooLong,
DataTooShort,
InvalidValueInformation,
}
Variants§
Trait Implementations§
Source§impl Clone for DataInformationError
impl Clone for DataInformationError
Source§fn clone(&self) -> DataInformationError
fn clone(&self) -> DataInformationError
Returns a copy 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 DataInformationError
impl Debug for DataInformationError
Source§impl From<DataInformationError> for DataRecordError
impl From<DataInformationError> for DataRecordError
Source§fn from(error: DataInformationError) -> Self
fn from(error: DataInformationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DataInformationError
impl PartialEq for DataInformationError
impl StructuralPartialEq for DataInformationError
Auto Trait Implementations§
impl Freeze for DataInformationError
impl RefUnwindSafe for DataInformationError
impl Send for DataInformationError
impl Sync for DataInformationError
impl Unpin for DataInformationError
impl UnwindSafe for DataInformationError
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