pub struct Conversations {
pub conversations: Vec<Conversation>,
pub next_cursor: Option<String>,
pub previous_cursor: Option<String>,
}Fields§
§conversations: Vec<Conversation>§next_cursor: Option<String>§previous_cursor: Option<String>Trait Implementations§
Source§impl Clone for Conversations
impl Clone for Conversations
Source§fn clone(&self) -> Conversations
fn clone(&self) -> Conversations
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 Conversations
impl Debug for Conversations
Source§impl<'de> Deserialize<'de> for Conversations
impl<'de> Deserialize<'de> for Conversations
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 Conversations
impl PartialEq for Conversations
Source§impl Serialize for Conversations
impl Serialize for Conversations
impl Eq for Conversations
impl StructuralPartialEq for Conversations
Auto Trait Implementations§
impl Freeze for Conversations
impl RefUnwindSafe for Conversations
impl Send for Conversations
impl Sync for Conversations
impl Unpin for Conversations
impl UnwindSafe for Conversations
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