pub struct ProjectEntry {
pub name: String,
pub path: PathBuf,
pub has_cargo_toml: bool,
pub has_binding: bool,
pub binding_path: Option<PathBuf>,
}Expand description
A discovered sibling project that consumes contracts.
Fields§
§name: String§path: PathBuf§has_cargo_toml: bool§has_binding: bool§binding_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for ProjectEntry
impl Clone for ProjectEntry
Source§fn clone(&self) -> ProjectEntry
fn clone(&self) -> ProjectEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 ProjectEntry
impl Debug for ProjectEntry
Source§impl<'de> Deserialize<'de> for ProjectEntry
impl<'de> Deserialize<'de> for ProjectEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProjectEntry
impl RefUnwindSafe for ProjectEntry
impl Send for ProjectEntry
impl Sync for ProjectEntry
impl Unpin for ProjectEntry
impl UnsafeUnpin for ProjectEntry
impl UnwindSafe for ProjectEntry
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