pub struct SubscribeCustomData {
pub client_id: Option<ClientId>,
pub venue: Option<Venue>,
pub data_type: DataType,
pub command_id: UUID4,
pub ts_init: UnixNanos,
pub params: Option<IndexMap<String, String>>,
}
Fields§
§client_id: Option<ClientId>
§venue: Option<Venue>
§data_type: DataType
§command_id: UUID4
§ts_init: UnixNanos
§params: Option<IndexMap<String, String>>
Implementations§
Trait Implementations§
Source§impl Clone for SubscribeCustomData
impl Clone for SubscribeCustomData
Source§fn clone(&self) -> SubscribeCustomData
fn clone(&self) -> SubscribeCustomData
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SubscribeCustomData
impl RefUnwindSafe for SubscribeCustomData
impl Send for SubscribeCustomData
impl Sync for SubscribeCustomData
impl Unpin for SubscribeCustomData
impl UnwindSafe for SubscribeCustomData
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