pub struct HealthCamelConfig {
pub enabled: bool,
pub host: String,
pub port: u16,
}Fields§
§enabled: bool§host: String§port: u16Trait Implementations§
Source§impl Clone for HealthCamelConfig
impl Clone for HealthCamelConfig
Source§fn clone(&self) -> HealthCamelConfig
fn clone(&self) -> HealthCamelConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HealthCamelConfig
impl Debug for HealthCamelConfig
Source§impl Default for HealthCamelConfig
impl Default for HealthCamelConfig
Source§impl<'de> Deserialize<'de> for HealthCamelConfig
impl<'de> Deserialize<'de> for HealthCamelConfig
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 for HealthCamelConfig
impl PartialEq for HealthCamelConfig
Source§fn eq(&self, other: &HealthCamelConfig) -> bool
fn eq(&self, other: &HealthCamelConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HealthCamelConfig
Auto Trait Implementations§
impl Freeze for HealthCamelConfig
impl RefUnwindSafe for HealthCamelConfig
impl Send for HealthCamelConfig
impl Sync for HealthCamelConfig
impl Unpin for HealthCamelConfig
impl UnsafeUnpin for HealthCamelConfig
impl UnwindSafe for HealthCamelConfig
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