pub struct CommunityResponse {
pub id: CommunityId,
pub name: String,
pub display_name: String,
pub description: Option<String>,
pub is_governance: bool,
pub member_count: Option<i64>,
}Expand description
A community listing.
Fields§
§id: CommunityId§name: String§display_name: String§description: Option<String>§is_governance: bool§member_count: Option<i64>Trait Implementations§
Source§impl Debug for CommunityResponse
impl Debug for CommunityResponse
Source§impl<'de> Deserialize<'de> for CommunityResponse
impl<'de> Deserialize<'de> for CommunityResponse
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
Auto Trait Implementations§
impl Freeze for CommunityResponse
impl RefUnwindSafe for CommunityResponse
impl Send for CommunityResponse
impl Sync for CommunityResponse
impl Unpin for CommunityResponse
impl UnsafeUnpin for CommunityResponse
impl UnwindSafe for CommunityResponse
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