pub struct LatchConfig {
pub compression: Option<CompressionConfig>,
pub cache: Option<CacheConfig>,
pub router: Option<RouterConfig>,
pub retry: Option<RetryConfig>,
pub meter: Option<MeterConfig>,
}Fields§
§compression: Option<CompressionConfig>§cache: Option<CacheConfig>§router: Option<RouterConfig>§retry: Option<RetryConfig>§meter: Option<MeterConfig>Trait Implementations§
Source§impl Clone for LatchConfig
impl Clone for LatchConfig
Source§fn clone(&self) -> LatchConfig
fn clone(&self) -> LatchConfig
Returns a duplicate 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 LatchConfig
impl Debug for LatchConfig
Source§impl Default for LatchConfig
impl Default for LatchConfig
Source§fn default() -> LatchConfig
fn default() -> LatchConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LatchConfig
impl<'de> Deserialize<'de> for LatchConfig
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
Auto Trait Implementations§
impl Freeze for LatchConfig
impl RefUnwindSafe for LatchConfig
impl Send for LatchConfig
impl Sync for LatchConfig
impl Unpin for LatchConfig
impl UnsafeUnpin for LatchConfig
impl UnwindSafe for LatchConfig
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