pub struct BrokerageSessionInitRequest {
pub compete: Option<bool>,
pub publish: Option<bool>,
}Fields§
§compete: Option<bool>Determines if other brokerage sessions should be disconnected to prioritize this connection.
publish: Option<bool>publish brokerage session token at the same time when brokerage session initialized. If set false, then session token should be published before calling init. Setting true is preferred way.
Trait Implementations§
Source§impl Clone for BrokerageSessionInitRequest
impl Clone for BrokerageSessionInitRequest
Source§fn clone(&self) -> BrokerageSessionInitRequest
fn clone(&self) -> BrokerageSessionInitRequest
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 BrokerageSessionInitRequest
impl Debug for BrokerageSessionInitRequest
impl StructuralPartialEq for BrokerageSessionInitRequest
Auto Trait Implementations§
impl Freeze for BrokerageSessionInitRequest
impl RefUnwindSafe for BrokerageSessionInitRequest
impl Send for BrokerageSessionInitRequest
impl Sync for BrokerageSessionInitRequest
impl Unpin for BrokerageSessionInitRequest
impl UnsafeUnpin for BrokerageSessionInitRequest
impl UnwindSafe for BrokerageSessionInitRequest
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