pub enum ProductListBuildError {
MissingField(String),
}Expand description
Returned if any required fields in a ProductList are not present when being
converted from the corresponding builder
Variants§
Trait Implementations§
Source§impl Debug for ProductListBuildError
impl Debug for ProductListBuildError
Source§impl Display for ProductListBuildError
impl Display for ProductListBuildError
Source§impl Error for ProductListBuildError
impl Error for ProductListBuildError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
Returns the lower-level source of this error, if any. Read more
Auto Trait Implementations§
impl Freeze for ProductListBuildError
impl RefUnwindSafe for ProductListBuildError
impl Send for ProductListBuildError
impl Sync for ProductListBuildError
impl Unpin for ProductListBuildError
impl UnwindSafe for ProductListBuildError
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