Enum wick_config::config::HighLevelComponent
source · pub enum HighLevelComponent {
Sql(SqlComponentConfig),
HttpClient(HttpClientComponentConfig),
}Expand description
A definition of a Wick Collection with its namespace, how to retrieve or access it and its configuration.
Variants§
Sql(SqlComponentConfig)
A SQL Component.
HttpClient(HttpClientComponentConfig)
An HTTP Client Component.
Trait Implementations§
source§impl AssetManager for HighLevelComponent
impl AssetManager for HighLevelComponent
type Asset = AssetReference
fn set_baseurl(&self, baseurl: &Path)
fn assets(&self) -> Assets<'_, AssetReference>
fn get_asset_flags(&self) -> u32
source§impl Clone for HighLevelComponent
impl Clone for HighLevelComponent
source§fn clone(&self) -> HighLevelComponent
fn clone(&self) -> HighLevelComponent
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 Debug for HighLevelComponent
impl Debug for HighLevelComponent
source§impl OperationSignatures for HighLevelComponent
impl OperationSignatures for HighLevelComponent
source§fn operation_signatures(&self) -> Vec<OperationSignature>
fn operation_signatures(&self) -> Vec<OperationSignature>
Get a list of operations hosted by the implementer.
source§fn get_operation_signature(&self, name: &str) -> Option<OperationSignature>
fn get_operation_signature(&self, name: &str) -> Option<OperationSignature>
Get an operation signature by name.
source§impl PartialEq<HighLevelComponent> for HighLevelComponent
impl PartialEq<HighLevelComponent> for HighLevelComponent
source§fn eq(&self, other: &HighLevelComponent) -> bool
fn eq(&self, other: &HighLevelComponent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for HighLevelComponent
impl Serialize for HighLevelComponent
impl StructuralPartialEq for HighLevelComponent
Auto Trait Implementations§
impl RefUnwindSafe for HighLevelComponent
impl Send for HighLevelComponent
impl Sync for HighLevelComponent
impl Unpin for HighLevelComponent
impl UnwindSafe for HighLevelComponent
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