pub struct UnsubscribeCustomData {
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 UnsubscribeCustomData
impl Clone for UnsubscribeCustomData
Source§fn clone(&self) -> UnsubscribeCustomData
fn clone(&self) -> UnsubscribeCustomData
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 UnsubscribeCustomData
impl RefUnwindSafe for UnsubscribeCustomData
impl Send for UnsubscribeCustomData
impl Sync for UnsubscribeCustomData
impl Unpin for UnsubscribeCustomData
impl UnwindSafe for UnsubscribeCustomData
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