pub enum UpdateSetError {
InputInvalidError(String),
}
Expand description
Represents an error that occurs when creating an update set.
Variants§
Trait Implementations§
Source§impl Debug for UpdateSetError
impl Debug for UpdateSetError
Source§impl Display for UpdateSetError
impl Display for UpdateSetError
Source§impl Error for UpdateSetError
impl Error for UpdateSetError
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 PartialEq for UpdateSetError
impl PartialEq for UpdateSetError
impl StructuralPartialEq for UpdateSetError
Auto Trait Implementations§
impl Freeze for UpdateSetError
impl RefUnwindSafe for UpdateSetError
impl Send for UpdateSetError
impl Sync for UpdateSetError
impl Unpin for UpdateSetError
impl UnwindSafe for UpdateSetError
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