pub struct TechnologyEcosystem {
pub core_portal: OperatingSystem,
pub data_access: Vec<DataAccessPattern>,
pub adjacent_systems: Vec<AdjacentSystem>,
}Expand description
Validated technology/source-system context for integrations and read models.
Fields§
§core_portal: OperatingSystemCore portal fact promoted into this operations contract.
data_access: Vec<DataAccessPattern>Data access fact promoted into this operations contract.
adjacent_systems: Vec<AdjacentSystem>Adjacent systems fact promoted into this operations contract.
Implementations§
Source§impl TechnologyEcosystem
impl TechnologyEcosystem
Sourcepub fn builder() -> TechnologyEcosystemBuilder
pub fn builder() -> TechnologyEcosystemBuilder
Create an instance of TechnologyEcosystem using the builder syntax
Trait Implementations§
Source§impl Clone for TechnologyEcosystem
impl Clone for TechnologyEcosystem
Source§fn clone(&self) -> TechnologyEcosystem
fn clone(&self) -> TechnologyEcosystem
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 TechnologyEcosystem
impl Debug for TechnologyEcosystem
Source§impl<'de> Deserialize<'de> for TechnologyEcosystem
impl<'de> Deserialize<'de> for TechnologyEcosystem
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 PartialEq for TechnologyEcosystem
impl PartialEq for TechnologyEcosystem
Source§impl Serialize for TechnologyEcosystem
impl Serialize for TechnologyEcosystem
impl Eq for TechnologyEcosystem
impl StructuralPartialEq for TechnologyEcosystem
Auto Trait Implementations§
impl Freeze for TechnologyEcosystem
impl RefUnwindSafe for TechnologyEcosystem
impl Send for TechnologyEcosystem
impl Sync for TechnologyEcosystem
impl Unpin for TechnologyEcosystem
impl UnsafeUnpin for TechnologyEcosystem
impl UnwindSafe for TechnologyEcosystem
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