pub struct AnnotationEventsResponse {
pub channel: String,
pub message_serial: String,
pub limit: usize,
pub has_more: bool,
pub next_cursor: Option<String>,
pub items: Vec<Value>,
}Fields§
§channel: String§message_serial: String§limit: usize§has_more: bool§next_cursor: Option<String>§items: Vec<Value>Trait Implementations§
Source§impl Clone for AnnotationEventsResponse
impl Clone for AnnotationEventsResponse
Source§fn clone(&self) -> AnnotationEventsResponse
fn clone(&self) -> AnnotationEventsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnnotationEventsResponse
impl Debug for AnnotationEventsResponse
Source§impl<'de> Deserialize<'de> for AnnotationEventsResponse
impl<'de> Deserialize<'de> for AnnotationEventsResponse
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
Auto Trait Implementations§
impl !RefUnwindSafe for AnnotationEventsResponse
impl !UnwindSafe for AnnotationEventsResponse
impl Freeze for AnnotationEventsResponse
impl Send for AnnotationEventsResponse
impl Sync for AnnotationEventsResponse
impl Unpin for AnnotationEventsResponse
impl UnsafeUnpin for AnnotationEventsResponse
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