pub struct ActiveConnection {
pub colo_name: String,
pub id: Uuid,
pub is_pending_reconnect: bool,
}Expand description
An active connection for a Named Argo Tunnel. https://api.cloudflare.com/#argo-tunnel-properties
Fields§
§colo_name: String§id: Uuid§is_pending_reconnect: boolTrait Implementations§
Source§impl Clone for ActiveConnection
impl Clone for ActiveConnection
Source§fn clone(&self) -> ActiveConnection
fn clone(&self) -> ActiveConnection
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 ActiveConnection
impl Debug for ActiveConnection
Source§impl<'de> Deserialize<'de> for ActiveConnection
impl<'de> Deserialize<'de> for ActiveConnection
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
Source§impl PartialEq for ActiveConnection
impl PartialEq for ActiveConnection
Source§impl Serialize for ActiveConnection
impl Serialize for ActiveConnection
impl Eq for ActiveConnection
impl StructuralPartialEq for ActiveConnection
Auto Trait Implementations§
impl Freeze for ActiveConnection
impl RefUnwindSafe for ActiveConnection
impl Send for ActiveConnection
impl Sync for ActiveConnection
impl Unpin for ActiveConnection
impl UnwindSafe for ActiveConnection
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