pub struct JoinPayload {
pub config: JoinConfig,
pub access_token: String,
}Expand description
Subscription configuration payload wrapper
Fields§
§config: JoinConfig§access_token: StringTrait Implementations§
Source§impl Clone for JoinPayload
impl Clone for JoinPayload
Source§fn clone(&self) -> JoinPayload
fn clone(&self) -> JoinPayload
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 JoinPayload
impl Debug for JoinPayload
Source§impl Default for JoinPayload
impl Default for JoinPayload
Source§fn default() -> JoinPayload
fn default() -> JoinPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JoinPayload
impl<'de> Deserialize<'de> for JoinPayload
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 JoinPayload
impl RefUnwindSafe for JoinPayload
impl Send for JoinPayload
impl Sync for JoinPayload
impl Unpin for JoinPayload
impl UnwindSafe for JoinPayload
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