pub struct AnnotationEventData {
pub action: AnnotationEventAction,
pub id: Option<String>,
pub serial: String,
pub message_serial: String,
pub annotation_type: String,
pub name: Option<String>,
pub client_id: Option<String>,
pub count: Option<u64>,
pub data: Option<Value>,
pub encoding: Option<String>,
pub timestamp: i64,
}Fields§
§action: AnnotationEventAction§id: Option<String>§serial: String§message_serial: String§annotation_type: String§name: Option<String>§client_id: Option<String>§count: Option<u64>§data: Option<Value>§encoding: Option<String>§timestamp: i64Trait Implementations§
Source§impl Clone for AnnotationEventData
impl Clone for AnnotationEventData
Source§fn clone(&self) -> AnnotationEventData
fn clone(&self) -> AnnotationEventData
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 AnnotationEventData
impl Debug for AnnotationEventData
Source§impl<'de> Deserialize<'de> for AnnotationEventData
impl<'de> Deserialize<'de> for AnnotationEventData
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
Source§impl PartialEq for AnnotationEventData
impl PartialEq for AnnotationEventData
Source§impl Serialize for AnnotationEventData
impl Serialize for AnnotationEventData
impl StructuralPartialEq for AnnotationEventData
Auto Trait Implementations§
impl Freeze for AnnotationEventData
impl !RefUnwindSafe for AnnotationEventData
impl Send for AnnotationEventData
impl Sync for AnnotationEventData
impl Unpin for AnnotationEventData
impl UnsafeUnpin for AnnotationEventData
impl !UnwindSafe for AnnotationEventData
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