Enum wick_config::v1::ImportDefinition
source · pub enum ImportDefinition {
TypesComponent(TypesComponent),
ManifestComponent(ManifestComponent),
SqlComponent(SqlComponent),
HttpClientComponent(HttpClientComponent),
}Expand description
Types of possible imports.
Variants§
TypesComponent(TypesComponent)
A variant representing a TypesComponent type.
ManifestComponent(ManifestComponent)
A variant representing a ManifestComponent type.
SqlComponent(SqlComponent)
A variant representing a SqlComponent type.
HttpClientComponent(HttpClientComponent)
A variant representing a HttpClientComponent type.
Trait Implementations§
source§impl Clone for ImportDefinition
impl Clone for ImportDefinition
source§fn clone(&self) -> ImportDefinition
fn clone(&self) -> ImportDefinition
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 ImportDefinition
impl Debug for ImportDefinition
source§impl<'de> Deserialize<'de> for ImportDefinition
impl<'de> Deserialize<'de> for ImportDefinition
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<ImportDefinition> for ImportDefinition
impl PartialEq<ImportDefinition> for ImportDefinition
source§fn eq(&self, other: &ImportDefinition) -> bool
fn eq(&self, other: &ImportDefinition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ImportDefinition
impl Serialize for ImportDefinition
source§impl TryFrom<ImportDefinition> for ImportDefinition
impl TryFrom<ImportDefinition> for ImportDefinition
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
source§impl TryFrom<ImportDefinition> for ImportDefinition
impl TryFrom<ImportDefinition> for ImportDefinition
§type Error = ManifestError
type Error = ManifestError
The type returned in the event of a conversion error.
impl StructuralPartialEq for ImportDefinition
Auto Trait Implementations§
impl RefUnwindSafe for ImportDefinition
impl Send for ImportDefinition
impl Sync for ImportDefinition
impl Unpin for ImportDefinition
impl UnwindSafe for ImportDefinition
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