pub enum ItemDetail {
Missing {
resolved: PathBuf,
},
Directory {
resolved: PathBuf,
},
Repo {
resolved: PathBuf,
info: Box<RepoInfo>,
},
Error {
resolved: PathBuf,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ItemDetail
impl Clone for ItemDetail
Source§fn clone(&self) -> ItemDetail
fn clone(&self) -> ItemDetail
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 moreAuto Trait Implementations§
impl Freeze for ItemDetail
impl RefUnwindSafe for ItemDetail
impl Send for ItemDetail
impl Sync for ItemDetail
impl Unpin for ItemDetail
impl UnsafeUnpin for ItemDetail
impl UnwindSafe for ItemDetail
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