pub struct BuilderError(pub UninitializedFieldError);Expand description
Builder errors.
Tuple Fields§
§0: UninitializedFieldErrorTrait Implementations§
Source§impl Debug for BuilderError
impl Debug for BuilderError
Source§impl Display for BuilderError
Available on crate feature builders only.
impl Display for BuilderError
Available on crate feature
builders only.Source§impl Error for BuilderError
Available on crate feature builders only.
impl Error for BuilderError
Available on crate feature
builders only.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<UninitializedFieldError> for BuilderError
Available on crate feature builders only.
impl From<UninitializedFieldError> for BuilderError
Available on crate feature
builders only.Source§fn from(err: UninitializedFieldError) -> Self
fn from(err: UninitializedFieldError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BuilderError
impl RefUnwindSafe for BuilderError
impl Send for BuilderError
impl Sync for BuilderError
impl Unpin for BuilderError
impl UnsafeUnpin for BuilderError
impl UnwindSafe for BuilderError
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