pub struct CommunityListResponse {
pub schema_version: String,
pub scope: CommunityReadScope,
pub communities: Vec<CommunitySummary>,
pub next_cursor: Option<String>,
}Fields§
§schema_version: String§scope: CommunityReadScope§communities: Vec<CommunitySummary>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for CommunityListResponse
impl Clone for CommunityListResponse
Source§fn clone(&self) -> CommunityListResponse
fn clone(&self) -> CommunityListResponse
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 CommunityListResponse
impl Debug for CommunityListResponse
Source§impl<'de> Deserialize<'de> for CommunityListResponse
impl<'de> Deserialize<'de> for CommunityListResponse
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 CommunityListResponse
impl PartialEq for CommunityListResponse
Source§impl Serialize for CommunityListResponse
impl Serialize for CommunityListResponse
impl StructuralPartialEq for CommunityListResponse
Auto Trait Implementations§
impl Freeze for CommunityListResponse
impl RefUnwindSafe for CommunityListResponse
impl Send for CommunityListResponse
impl Sync for CommunityListResponse
impl Unpin for CommunityListResponse
impl UnsafeUnpin for CommunityListResponse
impl UnwindSafe for CommunityListResponse
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