pub enum PropertiesValidationError {
MissingField(PropertiesMissingFieldError),
InvalidField(Error),
}
Expand description
Errors validating Properties
.
Variants§
Trait Implementations§
Source§impl Debug for PropertiesValidationError
impl Debug for PropertiesValidationError
Source§impl Display for PropertiesValidationError
impl Display for PropertiesValidationError
Source§impl Error for PropertiesValidationError
impl Error for PropertiesValidationError
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<Error> for PropertiesValidationError
impl From<Error> for PropertiesValidationError
Source§impl From<PropertiesMissingFieldError> for PropertiesValidationError
impl From<PropertiesMissingFieldError> for PropertiesValidationError
Source§fn from(src: PropertiesMissingFieldError) -> Self
fn from(src: PropertiesMissingFieldError) -> Self
Converts to this type from the input type.
Source§impl From<PropertiesValidationError> for UpdateError
impl From<PropertiesValidationError> for UpdateError
Source§fn from(source: PropertiesValidationError) -> Self
fn from(source: PropertiesValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PropertiesValidationError
impl RefUnwindSafe for PropertiesValidationError
impl Send for PropertiesValidationError
impl Sync for PropertiesValidationError
impl Unpin for PropertiesValidationError
impl UnwindSafe for PropertiesValidationError
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