pub struct ThreadsListing {
pub has_more: Option<bool>,
pub members: Vec<ThreadMember>,
pub threads: Vec<Channel>,
}
Expand description
Response body returned in thread listing methods.
Fields§
§has_more: Option<bool>
Whether there are potentially more threads that could be returned.
members: Vec<ThreadMember>
A thread member object for each returned thread the current user has joined.
threads: Vec<Channel>
List of threads.
Trait Implementations§
source§impl Clone for ThreadsListing
impl Clone for ThreadsListing
source§fn clone(&self) -> ThreadsListing
fn clone(&self) -> ThreadsListing
Returns a copy 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 ThreadsListing
impl Debug for ThreadsListing
source§impl<'de> Deserialize<'de> for ThreadsListing
impl<'de> Deserialize<'de> for ThreadsListing
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 Hash for ThreadsListing
impl Hash for ThreadsListing
source§impl PartialEq for ThreadsListing
impl PartialEq for ThreadsListing
source§impl Serialize for ThreadsListing
impl Serialize for ThreadsListing
impl Eq for ThreadsListing
impl StructuralPartialEq for ThreadsListing
Auto Trait Implementations§
impl Freeze for ThreadsListing
impl RefUnwindSafe for ThreadsListing
impl Send for ThreadsListing
impl Sync for ThreadsListing
impl Unpin for ThreadsListing
impl UnwindSafe for ThreadsListing
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)