pub struct JoinConfig {
pub broadcast: BroadcastConfig,
pub presence: PresenceConfig,
pub postgres_changes: Vec<PostgresChange>,
}Expand description
Subscription configuration data
Fields§
§broadcast: BroadcastConfig§presence: PresenceConfig§postgres_changes: Vec<PostgresChange>Trait Implementations§
Source§impl Clone for JoinConfig
impl Clone for JoinConfig
Source§fn clone(&self) -> JoinConfig
fn clone(&self) -> JoinConfig
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 JoinConfig
impl Debug for JoinConfig
Source§impl Default for JoinConfig
impl Default for JoinConfig
Source§fn default() -> JoinConfig
fn default() -> JoinConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JoinConfig
impl<'de> Deserialize<'de> for JoinConfig
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 JoinConfig
impl RefUnwindSafe for JoinConfig
impl Send for JoinConfig
impl Sync for JoinConfig
impl Unpin for JoinConfig
impl UnwindSafe for JoinConfig
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