Struct zng_ext_config::SwitchConfig

source ·
pub struct SwitchConfig { /* private fields */ }
Expand description

Represents multiple config sources that are matched by key.

When a config key is requested a closure defined for each config case in the switch is called, if the closure returns a key the config case is used.

Note that the returned config variables are linked directly with the matched configs, and if none matches returns from a fallback MemoryConfig. If a config is pushed after no match the already returned variable will not update to link with the new config.

Implementations§

source§

impl SwitchConfig

source

pub fn new() -> Self

New default empty.

source

pub fn push( &mut self, match_key: impl Fn(&ConfigKey) -> Option<ConfigKey> + Send + Sync + 'static, config: impl AnyConfig, )

Push a config case on the switch.

The match_key closure will be called after the match of previous configs, if it returns Some(key) the key will be used on the config to retrieve the value variable.

source

pub fn push_prefix(&mut self, prefix: impl Into<Txt>, config: impl AnyConfig)

Push a config case matched by a key prefix.

The prefix is stripped from the key before it is passed on to the config.

Always matches the config if the prefix is empty.

source

pub fn with( self, match_key: impl Fn(&ConfigKey) -> Option<ConfigKey> + Send + Sync + 'static, config: impl AnyConfig, ) -> Self

Push the config and return.

See push for more details.

source

pub fn with_prefix(self, prefix: impl Into<Txt>, config: impl AnyConfig) -> Self

Push the config and return.

See push_prefix for more details.

Trait Implementations§

source§

impl AnyConfig for SwitchConfig

source§

fn status(&self) -> BoxedVar<ConfigStatus>

Gets a read-only variable that represents the IO status of the config.
source§

fn get_raw( &mut self, key: ConfigKey, default: RawConfigValue, insert: bool, shared: bool, ) -> BoxedVar<RawConfigValue>

Gets a weak typed variable to the config key. Read more
source§

fn contains_key(&mut self, key: ConfigKey) -> BoxedVar<bool>

Gets a read-only variable that tracks if an entry for the key is in the backing storage.
source§

fn remove(&mut self, key: &ConfigKey) -> bool

Removes the key from the backing storage. Read more
source§

fn low_memory(&mut self)

Cleanup and flush RAM caches.
source§

impl Config for SwitchConfig

source§

fn get<T: ConfigValue>( &mut self, key: impl Into<ConfigKey>, default: T, insert: bool, ) -> BoxedVar<T>

Gets a variable that is bound to the config key. Read more
source§

impl Default for SwitchConfig

source§

fn default() -> SwitchConfig

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more