Struct wick_config::v1::CompositeComponentConfiguration
source · pub struct CompositeComponentConfiguration {
pub operations: Vec<CompositeOperationDefinition>,
pub with: Vec<Field>,
pub extends: Vec<String>,
}Expand description
A component made from connectiong other components.
Fields§
§operations: Vec<CompositeOperationDefinition>A list of operations exposed by the Composite component.
with: Vec<Field>Configuration necessary to provide when instantiating the component.
extends: Vec<String>A component or components whose operations you want to inherit from.
Trait Implementations§
source§impl Clone for CompositeComponentConfiguration
impl Clone for CompositeComponentConfiguration
source§fn clone(&self) -> CompositeComponentConfiguration
fn clone(&self) -> CompositeComponentConfiguration
Returns a copy 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<'de> Deserialize<'de> for CompositeComponentConfiguration
impl<'de> Deserialize<'de> for CompositeComponentConfiguration
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<CompositeComponentConfiguration> for CompositeComponentConfiguration
impl PartialEq<CompositeComponentConfiguration> for CompositeComponentConfiguration
source§fn eq(&self, other: &CompositeComponentConfiguration) -> bool
fn eq(&self, other: &CompositeComponentConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl TryFrom<CompositeComponentConfiguration> for CompositeComponentImplementation
impl TryFrom<CompositeComponentConfiguration> for CompositeComponentImplementation
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
source§impl TryFrom<CompositeComponentImplementation> for CompositeComponentConfiguration
impl TryFrom<CompositeComponentImplementation> for CompositeComponentConfiguration
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
impl StructuralPartialEq for CompositeComponentConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for CompositeComponentConfiguration
impl Send for CompositeComponentConfiguration
impl Sync for CompositeComponentConfiguration
impl Unpin for CompositeComponentConfiguration
impl UnwindSafe for CompositeComponentConfiguration
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