pub struct DiscoveredMember {
pub role: String,
pub canister_id: String,
pub parent_canister_id: Option<String>,
pub subnet_canister_id: Option<String>,
pub controller_hint: Option<String>,
pub identity_mode: IdentityMode,
pub restore_group: u16,
pub verification_class: String,
pub verification_checks: Vec<VerificationCheck>,
pub snapshot_plan: SnapshotPlan,
}Expand description
DiscoveredMember
Fields§
§role: String§canister_id: String§parent_canister_id: Option<String>§subnet_canister_id: Option<String>§controller_hint: Option<String>§identity_mode: IdentityMode§restore_group: u16§verification_class: String§verification_checks: Vec<VerificationCheck>§snapshot_plan: SnapshotPlanTrait Implementations§
Source§impl Clone for DiscoveredMember
impl Clone for DiscoveredMember
Source§fn clone(&self) -> DiscoveredMember
fn clone(&self) -> DiscoveredMember
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 moreAuto Trait Implementations§
impl Freeze for DiscoveredMember
impl RefUnwindSafe for DiscoveredMember
impl Send for DiscoveredMember
impl Sync for DiscoveredMember
impl Unpin for DiscoveredMember
impl UnsafeUnpin for DiscoveredMember
impl UnwindSafe for DiscoveredMember
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