pub enum InitPlanError {
MissingUrl {
path: String,
},
}Expand description
A semantic failure while planning submodule init.
Variants§
Trait Implementations§
Source§impl Clone for InitPlanError
impl Clone for InitPlanError
Source§fn clone(&self) -> InitPlanError
fn clone(&self) -> InitPlanError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InitPlanError
impl Debug for InitPlanError
Source§impl Display for InitPlanError
impl Display for InitPlanError
impl Eq for InitPlanError
Source§impl Error for InitPlanError
impl Error for InitPlanError
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 InitPlanError
impl PartialEq for InitPlanError
impl StructuralPartialEq for InitPlanError
Auto Trait Implementations§
impl Freeze for InitPlanError
impl RefUnwindSafe for InitPlanError
impl Send for InitPlanError
impl Sync for InitPlanError
impl Unpin for InitPlanError
impl UnsafeUnpin for InitPlanError
impl UnwindSafe for InitPlanError
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