pub enum PlanAssemblyError {
EmptyAppId,
EmptyProfileId,
InvalidPlan(String),
}Variants§
Trait Implementations§
Source§impl Debug for PlanAssemblyError
impl Debug for PlanAssemblyError
Source§impl Display for PlanAssemblyError
impl Display for PlanAssemblyError
impl Eq for PlanAssemblyError
Source§impl Error for PlanAssemblyError
impl Error for PlanAssemblyError
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 PlanAssemblyError
impl PartialEq for PlanAssemblyError
Source§fn eq(&self, other: &PlanAssemblyError) -> bool
fn eq(&self, other: &PlanAssemblyError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlanAssemblyError
Auto Trait Implementations§
impl Freeze for PlanAssemblyError
impl RefUnwindSafe for PlanAssemblyError
impl Send for PlanAssemblyError
impl Sync for PlanAssemblyError
impl Unpin for PlanAssemblyError
impl UnsafeUnpin for PlanAssemblyError
impl UnwindSafe for PlanAssemblyError
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