pub struct StatusInformation {
pub tunnels: Vec<TunnelInformation>,
}Expand description
Information about the current status of the server.
Fields§
§tunnels: Vec<TunnelInformation>A list of information about the tunnels that have been opened during this server’s lifetime.
This list includes tunnels that have been closed, but not any tunnels opened from any previous invocations of the server.
Trait Implementations§
Source§impl Debug for StatusInformation
impl Debug for StatusInformation
Source§impl<'de> Deserialize<'de> for StatusInformation
impl<'de> Deserialize<'de> for StatusInformation
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 StatusInformation
impl PartialEq for StatusInformation
Source§impl Serialize for StatusInformation
impl Serialize for StatusInformation
impl StructuralPartialEq for StatusInformation
Auto Trait Implementations§
impl Freeze for StatusInformation
impl RefUnwindSafe for StatusInformation
impl Send for StatusInformation
impl Sync for StatusInformation
impl Unpin for StatusInformation
impl UnwindSafe for StatusInformation
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