pub struct InstallState {
pub schema_version: u32,
pub fleet: String,
pub installed_at_unix_secs: u64,
pub network: String,
pub root_target: String,
pub root_canister_id: String,
pub root_build_target: String,
pub workspace_root: String,
pub icp_root: String,
pub config_path: String,
pub release_set_manifest_path: String,
}Expand description
InstallState
Fields§
§schema_version: u32§fleet: String§installed_at_unix_secs: u64§network: String§root_target: String§root_canister_id: String§root_build_target: String§workspace_root: String§icp_root: String§config_path: String§release_set_manifest_path: StringTrait Implementations§
Source§impl Clone for InstallState
impl Clone for InstallState
Source§fn clone(&self) -> InstallState
fn clone(&self) -> InstallState
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 InstallState
impl Debug for InstallState
Source§impl<'de> Deserialize<'de> for InstallState
impl<'de> Deserialize<'de> for InstallState
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
Source§impl PartialEq for InstallState
impl PartialEq for InstallState
Source§fn eq(&self, other: &InstallState) -> bool
fn eq(&self, other: &InstallState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InstallState
impl Serialize for InstallState
impl Eq for InstallState
impl StructuralPartialEq for InstallState
Auto Trait Implementations§
impl Freeze for InstallState
impl RefUnwindSafe for InstallState
impl Send for InstallState
impl Sync for InstallState
impl Unpin for InstallState
impl UnsafeUnpin for InstallState
impl UnwindSafe for InstallState
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