pub struct AppServerHandshakeSummary {
pub state: String,
pub protocol: String,
pub transport: String,
pub experimental_api_enabled: bool,
pub notification_mode: String,
pub opt_out_notification_methods: Vec<String>,
pub detail: Option<String>,
pub updated_at_ms: i64,
}Fields§
§state: String§protocol: String§transport: String§experimental_api_enabled: bool§notification_mode: String§opt_out_notification_methods: Vec<String>§detail: Option<String>§updated_at_ms: i64Implementations§
Trait Implementations§
Source§impl Clone for AppServerHandshakeSummary
impl Clone for AppServerHandshakeSummary
Source§fn clone(&self) -> AppServerHandshakeSummary
fn clone(&self) -> AppServerHandshakeSummary
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 AppServerHandshakeSummary
impl Debug for AppServerHandshakeSummary
Source§impl Default for AppServerHandshakeSummary
impl Default for AppServerHandshakeSummary
Source§fn default() -> AppServerHandshakeSummary
fn default() -> AppServerHandshakeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppServerHandshakeSummary
impl<'de> Deserialize<'de> for AppServerHandshakeSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppServerHandshakeSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppServerHandshakeSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AppServerHandshakeSummary
impl Serialize for AppServerHandshakeSummary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AppServerHandshakeSummary
impl StructuralPartialEq for AppServerHandshakeSummary
Auto Trait Implementations§
impl Freeze for AppServerHandshakeSummary
impl RefUnwindSafe for AppServerHandshakeSummary
impl Send for AppServerHandshakeSummary
impl Sync for AppServerHandshakeSummary
impl Unpin for AppServerHandshakeSummary
impl UnsafeUnpin for AppServerHandshakeSummary
impl UnwindSafe for AppServerHandshakeSummary
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