pub struct ConfigSummary {Show 25 fields
pub bind_addr: String,
pub web_root_configured: bool,
pub control_protocol_enabled: bool,
pub tailnet_ipv4_range: String,
pub tailnet_ipv6_range: String,
pub database_configured: bool,
pub derp_region_count: u32,
pub derp_url_count: u32,
pub derp_path_count: u32,
pub derp_omit_default_regions: bool,
pub derp_refresh_interval_secs: u64,
pub derp_embedded_relay_enabled: bool,
pub derp_stun_bind_addr: Option<String>,
pub derp_verify_clients: bool,
pub admin_auth_configured: bool,
pub oidc_enabled: bool,
pub oidc_discovery_validation: bool,
pub control_display_message_count: u32,
pub control_dial_candidate_count: u32,
pub control_client_version_configured: bool,
pub control_collect_services_configured: bool,
pub control_node_attr_count: u32,
pub control_pop_browser_url_configured: bool,
pub log_filter: String,
pub log_format: String,
}Fields§
§bind_addr: String§web_root_configured: bool§control_protocol_enabled: bool§tailnet_ipv4_range: String§tailnet_ipv6_range: String§database_configured: bool§derp_region_count: u32§derp_url_count: u32§derp_path_count: u32§derp_omit_default_regions: bool§derp_refresh_interval_secs: u64§derp_embedded_relay_enabled: bool§derp_stun_bind_addr: Option<String>§derp_verify_clients: bool§admin_auth_configured: bool§oidc_enabled: bool§oidc_discovery_validation: bool§control_display_message_count: u32§control_dial_candidate_count: u32§control_client_version_configured: bool§control_collect_services_configured: bool§control_node_attr_count: u32§control_pop_browser_url_configured: bool§log_filter: String§log_format: StringTrait Implementations§
Source§impl Clone for ConfigSummary
impl Clone for ConfigSummary
Source§fn clone(&self) -> ConfigSummary
fn clone(&self) -> ConfigSummary
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 ConfigSummary
impl Debug for ConfigSummary
Source§impl PartialEq for ConfigSummary
impl PartialEq for ConfigSummary
Source§impl Serialize for ConfigSummary
impl Serialize for ConfigSummary
impl Eq for ConfigSummary
impl StructuralPartialEq for ConfigSummary
Auto Trait Implementations§
impl Freeze for ConfigSummary
impl RefUnwindSafe for ConfigSummary
impl Send for ConfigSummary
impl Sync for ConfigSummary
impl Unpin for ConfigSummary
impl UnsafeUnpin for ConfigSummary
impl UnwindSafe for ConfigSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more