pub enum SchemaUpdateBuildError {
MissingField(String),
}
Expand description
Returned if any required fields in a SchemaUpdateAction
are not present when being
converted from the corresponding builder
Variants§
Trait Implementations§
Source§impl Debug for SchemaUpdateBuildError
impl Debug for SchemaUpdateBuildError
Source§impl Display for SchemaUpdateBuildError
impl Display for SchemaUpdateBuildError
Source§impl Error for SchemaUpdateBuildError
impl Error for SchemaUpdateBuildError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn StdError>
fn cause(&self) -> Option<&dyn StdError>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Auto Trait Implementations§
impl Freeze for SchemaUpdateBuildError
impl RefUnwindSafe for SchemaUpdateBuildError
impl Send for SchemaUpdateBuildError
impl Sync for SchemaUpdateBuildError
impl Unpin for SchemaUpdateBuildError
impl UnwindSafe for SchemaUpdateBuildError
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