pub struct PinsListing {
pub items: Vec<MessagePin>,
pub has_more: bool,
}Expand description
Pins listing request object for get_pins endpoint. docs
Fields§
§items: Vec<MessagePin>The fetched message pins based on the query.
has_more: boolIf there is more pins that exists outside the returned items in the channel.
Trait Implementations§
Source§impl Clone for PinsListing
impl Clone for PinsListing
Source§fn clone(&self) -> PinsListing
fn clone(&self) -> PinsListing
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 PinsListing
impl Debug for PinsListing
Source§impl<'de> Deserialize<'de> for PinsListing
impl<'de> Deserialize<'de> for PinsListing
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 PinsListing
impl PartialEq for PinsListing
Source§impl Serialize for PinsListing
impl Serialize for PinsListing
impl StructuralPartialEq for PinsListing
Auto Trait Implementations§
impl Freeze for PinsListing
impl RefUnwindSafe for PinsListing
impl Send for PinsListing
impl Sync for PinsListing
impl Unpin for PinsListing
impl UnwindSafe for PinsListing
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