pub struct ConnectResult {
pub client: String,
pub version: String,
pub expires: bool,
pub ttl: u32,
pub data: Vec<u8>,
pub ping: u32,
pub pong: bool,
pub session: String,
pub node: String,
pub time: i64,
}Expand description
Successful connection handshake returned by Centrifugo.
Fields§
§client: String§version: String§expires: bool§ttl: u32§data: Vec<u8>§ping: u32Server ping interval in seconds, or zero when disabled.
pong: bool§session: String§node: String§time: i64Trait Implementations§
Source§impl Clone for ConnectResult
impl Clone for ConnectResult
Source§fn clone(&self) -> ConnectResult
fn clone(&self) -> ConnectResult
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 ConnectResult
impl Debug for ConnectResult
Source§impl From<ConnectResult> for ConnectResult
impl From<ConnectResult> for ConnectResult
Source§fn from(result: ConnectResult) -> Self
fn from(result: ConnectResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConnectResult
impl RefUnwindSafe for ConnectResult
impl Send for ConnectResult
impl Sync for ConnectResult
impl Unpin for ConnectResult
impl UnsafeUnpin for ConnectResult
impl UnwindSafe for ConnectResult
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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