pub struct DataResponse {
pub correlation_id: UUID4,
pub client_id: ClientId,
pub venue: Venue,
pub data_type: DataType,
pub data: Payload,
pub ts_init: UnixNanos,
pub params: Option<HashMap<String, String>>,
}
Fields§
§correlation_id: UUID4
§client_id: ClientId
§venue: Venue
§data_type: DataType
§data: Payload
§ts_init: UnixNanos
§params: Option<HashMap<String, String>>
Implementations§
Trait Implementations§
Source§impl Clone for DataResponse
impl Clone for DataResponse
Source§fn clone(&self) -> DataResponse
fn clone(&self) -> DataResponse
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for DataResponse
impl !RefUnwindSafe for DataResponse
impl Send for DataResponse
impl Sync for DataResponse
impl Unpin for DataResponse
impl !UnwindSafe for DataResponse
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