pub struct IcpProjectConfigReport {
pub path: PathBuf,
pub icp_root: PathBuf,
pub icp_yaml_present: bool,
pub canisters: Vec<String>,
pub environments: Vec<String>,
pub missing_canisters: Vec<String>,
pub missing_environments: Vec<String>,
pub local_network_present: bool,
}Expand description
IcpProjectConfigReport
Fields§
§path: PathBuf§icp_root: PathBuf§icp_yaml_present: bool§canisters: Vec<String>§environments: Vec<String>§missing_canisters: Vec<String>§missing_environments: Vec<String>§local_network_present: boolImplementations§
Trait Implementations§
Source§impl Clone for IcpProjectConfigReport
impl Clone for IcpProjectConfigReport
Source§fn clone(&self) -> IcpProjectConfigReport
fn clone(&self) -> IcpProjectConfigReport
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 IcpProjectConfigReport
impl Debug for IcpProjectConfigReport
Source§impl PartialEq for IcpProjectConfigReport
impl PartialEq for IcpProjectConfigReport
Source§fn eq(&self, other: &IcpProjectConfigReport) -> bool
fn eq(&self, other: &IcpProjectConfigReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IcpProjectConfigReport
impl StructuralPartialEq for IcpProjectConfigReport
Auto Trait Implementations§
impl Freeze for IcpProjectConfigReport
impl RefUnwindSafe for IcpProjectConfigReport
impl Send for IcpProjectConfigReport
impl Sync for IcpProjectConfigReport
impl Unpin for IcpProjectConfigReport
impl UnsafeUnpin for IcpProjectConfigReport
impl UnwindSafe for IcpProjectConfigReport
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