pub struct InstallRootOptions {
pub root_canister: String,
pub root_build_target: String,
pub network: String,
pub ready_timeout_seconds: u64,
pub config_path: Option<String>,
pub interactive_config_selection: bool,
}Expand description
InstallRootOptions
Fields§
§root_canister: String§root_build_target: String§network: String§ready_timeout_seconds: u64§config_path: Option<String>§interactive_config_selection: boolTrait Implementations§
Source§impl Clone for InstallRootOptions
impl Clone for InstallRootOptions
Source§fn clone(&self) -> InstallRootOptions
fn clone(&self) -> InstallRootOptions
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 InstallRootOptions
impl RefUnwindSafe for InstallRootOptions
impl Send for InstallRootOptions
impl Sync for InstallRootOptions
impl Unpin for InstallRootOptions
impl UnsafeUnpin for InstallRootOptions
impl UnwindSafe for InstallRootOptions
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