pub enum RSValidationError {
BufferError(BufferError),
}Variants§
BufferError(BufferError)
Trait Implementations§
Source§impl Clone for RSValidationError
impl Clone for RSValidationError
Source§fn clone(&self) -> RSValidationError
fn clone(&self) -> RSValidationError
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 RSValidationError
impl Debug for RSValidationError
Source§impl Display for RSValidationError
impl Display for RSValidationError
Source§impl Error for RSValidationError
impl Error for RSValidationError
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<BufferError> for RSValidationError
impl From<BufferError> for RSValidationError
Source§fn from(source: BufferError) -> Self
fn from(source: BufferError) -> Self
Converts to this type from the input type.
Source§impl From<RSValidationError> for RSDecodeError
impl From<RSValidationError> for RSDecodeError
Source§fn from(source: RSValidationError) -> Self
fn from(source: RSValidationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RSValidationError
impl PartialEq for RSValidationError
impl Eq for RSValidationError
impl StructuralPartialEq for RSValidationError
Auto Trait Implementations§
impl Freeze for RSValidationError
impl RefUnwindSafe for RSValidationError
impl Send for RSValidationError
impl Sync for RSValidationError
impl Unpin for RSValidationError
impl UnwindSafe for RSValidationError
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