pub struct EpoConfig {
pub enabled: bool,
pub timeout: f64,
pub max_retries: u32,
pub consumer_key: String,
pub consumer_secret: String,
}Expand description
EPO OPS adapter configuration (requires consumer key + secret pair).
Fields§
§enabled: bool§timeout: f64§max_retries: u32§consumer_key: String§consumer_secret: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for EpoConfig
impl<'de> Deserialize<'de> for EpoConfig
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 EpoConfig
impl RefUnwindSafe for EpoConfig
impl Send for EpoConfig
impl Sync for EpoConfig
impl Unpin for EpoConfig
impl UnsafeUnpin for EpoConfig
impl UnwindSafe for EpoConfig
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