pub struct ReferenceConfig {
pub interfaces: Vec<ReferenceInterface>,
pub globals: BTreeMap<String, ReferenceValue>,
pub network_identity_path: Option<String>,
pub discovery: ReferenceDiscoveryConfig,
pub blackhole_exchange: ReferenceBlackholeExchange,
pub remote_management: ReferenceRemoteManagement,
pub other_sections: BTreeMap<String, BTreeMap<String, ReferenceValue>>,
}Fields§
§interfaces: Vec<ReferenceInterface>§globals: BTreeMap<String, ReferenceValue>§network_identity_path: Option<String>§discovery: ReferenceDiscoveryConfig§blackhole_exchange: ReferenceBlackholeExchange§remote_management: ReferenceRemoteManagement§other_sections: BTreeMap<String, BTreeMap<String, ReferenceValue>>Trait Implementations§
Source§impl Clone for ReferenceConfig
impl Clone for ReferenceConfig
Source§fn clone(&self) -> ReferenceConfig
fn clone(&self) -> ReferenceConfig
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 ReferenceConfig
impl Debug for ReferenceConfig
Source§impl Default for ReferenceConfig
impl Default for ReferenceConfig
Source§fn default() -> ReferenceConfig
fn default() -> ReferenceConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReferenceConfig
impl PartialEq for ReferenceConfig
impl StructuralPartialEq for ReferenceConfig
Auto Trait Implementations§
impl Freeze for ReferenceConfig
impl RefUnwindSafe for ReferenceConfig
impl Send for ReferenceConfig
impl Sync for ReferenceConfig
impl Unpin for ReferenceConfig
impl UnsafeUnpin for ReferenceConfig
impl UnwindSafe for ReferenceConfig
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