pub struct ManagementConfig {
pub enable_remote_management: bool,
pub remote_management_allowed: Vec<[u8; 16]>,
pub publish_blackhole: bool,
}Expand description
Management configuration.
Fields§
§enable_remote_management: boolEnable remote management destination.
remote_management_allowed: Vec<[u8; 16]>Identity hashes allowed to query management.
publish_blackhole: boolEnable blackhole list publication.
Trait Implementations§
Source§impl Clone for ManagementConfig
impl Clone for ManagementConfig
Source§fn clone(&self) -> ManagementConfig
fn clone(&self) -> ManagementConfig
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 ManagementConfig
impl Debug for ManagementConfig
Auto Trait Implementations§
impl Freeze for ManagementConfig
impl RefUnwindSafe for ManagementConfig
impl Send for ManagementConfig
impl Sync for ManagementConfig
impl Unpin for ManagementConfig
impl UnwindSafe for ManagementConfig
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