pub struct ResolvedDeploymentTopology {
pub root_canister_id: String,
pub children_by_parent: BTreeMap<Option<String>, Vec<String>>,
pub roles_by_canister: BTreeMap<String, String>,
}Expand description
ResolvedDeploymentTopology
Fields§
§root_canister_id: String§children_by_parent: BTreeMap<Option<String>, Vec<String>>§roles_by_canister: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for ResolvedDeploymentTopology
impl Clone for ResolvedDeploymentTopology
Source§fn clone(&self) -> ResolvedDeploymentTopology
fn clone(&self) -> ResolvedDeploymentTopology
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 ResolvedDeploymentTopology
impl Debug for ResolvedDeploymentTopology
impl Eq for ResolvedDeploymentTopology
Source§impl PartialEq for ResolvedDeploymentTopology
impl PartialEq for ResolvedDeploymentTopology
Source§fn eq(&self, other: &ResolvedDeploymentTopology) -> bool
fn eq(&self, other: &ResolvedDeploymentTopology) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolvedDeploymentTopology
Auto Trait Implementations§
impl Freeze for ResolvedDeploymentTopology
impl RefUnwindSafe for ResolvedDeploymentTopology
impl Send for ResolvedDeploymentTopology
impl Sync for ResolvedDeploymentTopology
impl Unpin for ResolvedDeploymentTopology
impl UnsafeUnpin for ResolvedDeploymentTopology
impl UnwindSafe for ResolvedDeploymentTopology
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.