pub struct ReticulumSection {
pub enable_transport: bool,
pub share_instance: bool,
pub instance_name: String,
pub shared_instance_port: u16,
pub instance_control_port: u16,
pub panic_on_interface_error: bool,
pub use_implicit_proof: bool,
pub network_identity: Option<String>,
pub respond_to_probes: bool,
pub enable_remote_management: bool,
pub remote_management_allowed: Vec<String>,
pub publish_blackhole: bool,
}Expand description
The [reticulum] section.
Fields§
§enable_transport: bool§instance_name: String§instance_control_port: u16§panic_on_interface_error: bool§use_implicit_proof: bool§network_identity: Option<String>§respond_to_probes: bool§enable_remote_management: bool§remote_management_allowed: Vec<String>§publish_blackhole: boolTrait Implementations§
Source§impl Clone for ReticulumSection
impl Clone for ReticulumSection
Source§fn clone(&self) -> ReticulumSection
fn clone(&self) -> ReticulumSection
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 ReticulumSection
impl Debug for ReticulumSection
Auto Trait Implementations§
impl Freeze for ReticulumSection
impl RefUnwindSafe for ReticulumSection
impl Send for ReticulumSection
impl Sync for ReticulumSection
impl Unpin for ReticulumSection
impl UnwindSafe for ReticulumSection
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