pub struct TailnetDevice {Show 25 fields
pub addresses: Option<Vec<String>>,
pub id: Option<String>,
pub nodeId: Option<String>,
pub user: Option<String>,
pub name: Option<String>,
pub hostname: Option<String>,
pub clientVersion: Option<String>,
pub updateAvailable: Option<bool>,
pub os: Option<String>,
pub created: Option<String>,
pub lastSeen: Option<String>,
pub keyExpiryDisabled: Option<bool>,
pub expires: Option<String>,
pub authorized: Option<bool>,
pub isExternal: Option<bool>,
pub machineKey: Option<String>,
pub nodeKey: Option<String>,
pub blocksIncomingConnections: Option<bool>,
pub enabledRoutes: Option<Vec<String>>,
pub advertisedRoutes: Option<Vec<String>>,
pub clientConnectivity: Option<ClientConnectivity>,
pub tags: Option<Vec<String>>,
pub tailnetLockError: Option<String>,
pub tailnetLockKey: Option<String>,
pub postureIdentity: Option<PostureIdentity>,
}
Expand description
Represents a single device entry from the tailnet devices list.
Fields§
§addresses: Option<Vec<String>>
§id: Option<String>
§nodeId: Option<String>
§user: Option<String>
§name: Option<String>
§hostname: Option<String>
§clientVersion: Option<String>
§updateAvailable: Option<bool>
§os: Option<String>
§created: Option<String>
§lastSeen: Option<String>
§keyExpiryDisabled: Option<bool>
§expires: Option<String>
§isExternal: Option<bool>
§machineKey: Option<String>
§nodeKey: Option<String>
§blocksIncomingConnections: Option<bool>
§enabledRoutes: Option<Vec<String>>
§advertisedRoutes: Option<Vec<String>>
§clientConnectivity: Option<ClientConnectivity>
§tailnetLockError: Option<String>
§tailnetLockKey: Option<String>
§postureIdentity: Option<PostureIdentity>
Trait Implementations§
Source§impl Debug for TailnetDevice
impl Debug for TailnetDevice
Source§impl<'de> Deserialize<'de> for TailnetDevice
impl<'de> Deserialize<'de> for TailnetDevice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TailnetDevice
impl RefUnwindSafe for TailnetDevice
impl Send for TailnetDevice
impl Sync for TailnetDevice
impl Unpin for TailnetDevice
impl UnwindSafe for TailnetDevice
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> 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