pub enum LocationBuildError {
MissingField(String),
EmptyVec(String),
}Expand description
Returned if any required fields in a Location are not present when being
converted from the corresponding builder
Variants§
Trait Implementations§
Source§impl Debug for LocationBuildError
impl Debug for LocationBuildError
Source§impl Display for LocationBuildError
impl Display for LocationBuildError
Source§impl Error for LocationBuildError
impl Error for LocationBuildError
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 LocationBuildError
impl RefUnwindSafe for LocationBuildError
impl Send for LocationBuildError
impl Sync for LocationBuildError
impl Unpin for LocationBuildError
impl UnwindSafe for LocationBuildError
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