Struct Relay Component Config

View as Markdown

Generated from cargo doc --no-deps -p nemo-fabric-core.

pub struct RelayComponentConfig {
    pub kind: String,
    pub enabled: bool,
    pub config: BTreeMap<String, Value>,
    pub extensions: BTreeMap<String, Value>,
}

Generic NeMo Relay plugin component configuration.

Fields

kind: String

Registered Relay plugin kind.

enabled: bool

Whether this Relay component should be activated.

config: BTreeMap<String, Value>

Component-local Relay plugin config.

extensions: BTreeMap<String, Value>

Additive component fields.

Trait Implementations

impl Clone for RelayComponentConfig

impl Clone for RelayComponentConfig

clone

fn clone(&self) -> RelayComponentConfig

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for RelayComponentConfig

impl Debug for RelayComponentConfig

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'de> Deserialize<'de> for RelayComponentConfig

impl<'de> Deserialize<'de> for RelayComponentConfig

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl JsonSchema for RelayComponentConfig

impl JsonSchema for RelayComponentConfig

schema_name

fn schema_name() -> Cow<'static, str>

schema_id

fn schema_id() -> Cow<'static, str>

json_schema

fn json_schema(generator: &mut SchemaGenerator) -> Schema

inline_schema

fn inline_schema() -> bool

impl PartialEq for RelayComponentConfig

impl PartialEq for RelayComponentConfig

eq

fn eq(&self, other: &RelayComponentConfig) -> bool

ne

fn ne(&self, other: &Rhs) -> bool

impl Serialize for RelayComponentConfig

impl Serialize for RelayComponentConfig

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,

impl StructuralPartialEq for RelayComponentConfig

impl StructuralPartialEq for RelayComponentConfig