pub struct PhysicalSubstrate {
pub id: String,
pub tier: SubstrateTier,
pub location: GeographicLocation,
pub network_position: NetworkPosition,
pub isolation: IsolationLevel,
pub tenancy: TenancyModel,
pub capabilities: SubstrateCapabilities,
}Expand description
The physical substrate the agent runs on.
Fields§
§id: String§tier: SubstrateTier§location: GeographicLocation§network_position: NetworkPosition§isolation: IsolationLevel§tenancy: TenancyModel§capabilities: SubstrateCapabilitiesTrait Implementations§
Source§impl Clone for PhysicalSubstrate
impl Clone for PhysicalSubstrate
Source§fn clone(&self) -> PhysicalSubstrate
fn clone(&self) -> PhysicalSubstrate
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 moreSource§impl Debug for PhysicalSubstrate
impl Debug for PhysicalSubstrate
Source§impl<'de> Deserialize<'de> for PhysicalSubstrate
impl<'de> Deserialize<'de> for PhysicalSubstrate
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
Auto Trait Implementations§
impl Freeze for PhysicalSubstrate
impl RefUnwindSafe for PhysicalSubstrate
impl Send for PhysicalSubstrate
impl Sync for PhysicalSubstrate
impl Unpin for PhysicalSubstrate
impl UnsafeUnpin for PhysicalSubstrate
impl UnwindSafe for PhysicalSubstrate
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