pub struct Chats {
pub total_count: i32,
pub chat_ids: Vec<i64>,
}
Expand description
Represents a list of chats
Fields§
§total_count: i32
Approximate total number of chats found
chat_ids: Vec<i64>
List of chat identifiers
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Chats
impl<'de> Deserialize<'de> for Chats
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
impl StructuralPartialEq for Chats
Auto Trait Implementations§
impl Freeze for Chats
impl RefUnwindSafe for Chats
impl Send for Chats
impl Sync for Chats
impl Unpin for Chats
impl UnwindSafe for Chats
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