pub struct TopologyPreflightTarget {
pub canister_id: String,
pub parent_canister_id: Option<String>,
pub depth: u32,
}Expand description
TopologyPreflightTarget
Fields§
§canister_id: String§parent_canister_id: Option<String>§depth: u32Trait Implementations§
Source§impl Clone for TopologyPreflightTarget
impl Clone for TopologyPreflightTarget
Source§fn clone(&self) -> TopologyPreflightTarget
fn clone(&self) -> TopologyPreflightTarget
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 TopologyPreflightTarget
impl Debug for TopologyPreflightTarget
Source§impl<'de> Deserialize<'de> for TopologyPreflightTarget
impl<'de> Deserialize<'de> for TopologyPreflightTarget
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 From<&BackupTarget> for TopologyPreflightTarget
impl From<&BackupTarget> for TopologyPreflightTarget
Source§fn from(target: &BackupTarget) -> Self
fn from(target: &BackupTarget) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TopologyPreflightTarget
impl PartialEq for TopologyPreflightTarget
Source§fn eq(&self, other: &TopologyPreflightTarget) -> bool
fn eq(&self, other: &TopologyPreflightTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TopologyPreflightTarget
impl Serialize for TopologyPreflightTarget
impl Eq for TopologyPreflightTarget
impl StructuralPartialEq for TopologyPreflightTarget
Auto Trait Implementations§
impl Freeze for TopologyPreflightTarget
impl RefUnwindSafe for TopologyPreflightTarget
impl Send for TopologyPreflightTarget
impl Sync for TopologyPreflightTarget
impl Unpin for TopologyPreflightTarget
impl UnsafeUnpin for TopologyPreflightTarget
impl UnwindSafe for TopologyPreflightTarget
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