pub struct OverlayStatus {
pub enabled: bool,
pub kind: String,
pub iface: Option<String>,
pub present: bool,
pub operstate: Option<String>,
pub up: bool,
pub note: String,
}Expand description
Health of the remote-access overlay, surfaced via /api/v1/system.
Fields§
§enabled: boolWhether remote access via an overlay is configured at all (else the deployment is LAN-only).
kind: Stringtailscale | netbird | wireguard | none.
iface: Option<String>The probed interface (e.g. tailscale0), if configured.
present: boolWhether that interface currently exists on the host (i.e. the overlay daemon created it).
operstate: Option<String>Raw operstate of the interface, if readable.
up: boolWhether remote access is considered functional right now.
note: StringHuman-readable explanation for the dashboard.
Trait Implementations§
Source§impl Clone for OverlayStatus
impl Clone for OverlayStatus
Source§fn clone(&self) -> OverlayStatus
fn clone(&self) -> OverlayStatus
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 OverlayStatus
impl Debug for OverlayStatus
Auto Trait Implementations§
impl Freeze for OverlayStatus
impl RefUnwindSafe for OverlayStatus
impl Send for OverlayStatus
impl Sync for OverlayStatus
impl Unpin for OverlayStatus
impl UnsafeUnpin for OverlayStatus
impl UnwindSafe for OverlayStatus
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,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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