pub struct SshConnIdentity {
pub stable_id: String,
pub src_ip: IpAddr,
pub user_login: Option<String>,
}Expand description
The identity of an incoming SSH connection, resolved from the connecting peer.
Fields§
§stable_id: StringThe connecting node’s stable node id.
src_ip: IpAddrThe connection’s tailnet source IP.
user_login: Option<String>The login/email of the user that owns the connecting node, if known. None means no
userLogin principal can match — fail-closed.
Trait Implementations§
Source§impl Clone for SshConnIdentity
impl Clone for SshConnIdentity
Source§fn clone(&self) -> SshConnIdentity
fn clone(&self) -> SshConnIdentity
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 SshConnIdentity
impl Debug for SshConnIdentity
impl Eq for SshConnIdentity
Source§impl PartialEq for SshConnIdentity
impl PartialEq for SshConnIdentity
Source§fn eq(&self, other: &SshConnIdentity) -> bool
fn eq(&self, other: &SshConnIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SshConnIdentity
Auto Trait Implementations§
impl Freeze for SshConnIdentity
impl RefUnwindSafe for SshConnIdentity
impl Send for SshConnIdentity
impl Sync for SshConnIdentity
impl Unpin for SshConnIdentity
impl UnsafeUnpin for SshConnIdentity
impl UnwindSafe for SshConnIdentity
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.