pub struct VpnClientConnection {
pub id: EntityId,
pub name: Option<String>,
pub connection_type: Option<String>,
pub status: Option<String>,
pub local_address: Option<String>,
pub remote_address: Option<String>,
pub username: Option<String>,
pub fields: Map<String, Value>,
}Fields§
§id: EntityId§name: Option<String>§connection_type: Option<String>§status: Option<String>§local_address: Option<String>§remote_address: Option<String>§username: Option<String>§fields: Map<String, Value>Trait Implementations§
Source§impl Clone for VpnClientConnection
impl Clone for VpnClientConnection
Source§fn clone(&self) -> VpnClientConnection
fn clone(&self) -> VpnClientConnection
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 VpnClientConnection
impl Debug for VpnClientConnection
Source§impl<'de> Deserialize<'de> for VpnClientConnection
impl<'de> Deserialize<'de> for VpnClientConnection
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 VpnClientConnection
impl RefUnwindSafe for VpnClientConnection
impl Send for VpnClientConnection
impl Sync for VpnClientConnection
impl Unpin for VpnClientConnection
impl UnsafeUnpin for VpnClientConnection
impl UnwindSafe for VpnClientConnection
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