pub struct CommunityProfile {
pub health_percentage: i32,
pub description: Option<String>,
pub documentation: Option<String>,
pub files: Box<CommunityProfileFiles>,
pub updated_at: Option<String>,
pub content_reports_enabled: Option<bool>,
}
Expand description
CommunityProfile : Community Profile
Fields§
§health_percentage: i32
§description: Option<String>
§documentation: Option<String>
§files: Box<CommunityProfileFiles>
§updated_at: Option<String>
§content_reports_enabled: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for CommunityProfile
impl Clone for CommunityProfile
Source§fn clone(&self) -> CommunityProfile
fn clone(&self) -> CommunityProfile
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 CommunityProfile
impl Debug for CommunityProfile
Source§impl Default for CommunityProfile
impl Default for CommunityProfile
Source§fn default() -> CommunityProfile
fn default() -> CommunityProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommunityProfile
impl<'de> Deserialize<'de> for CommunityProfile
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 CommunityProfile
impl PartialEq for CommunityProfile
Source§impl Serialize for CommunityProfile
impl Serialize for CommunityProfile
impl StructuralPartialEq for CommunityProfile
Auto Trait Implementations§
impl Freeze for CommunityProfile
impl RefUnwindSafe for CommunityProfile
impl Send for CommunityProfile
impl Sync for CommunityProfile
impl Unpin for CommunityProfile
impl UnwindSafe for CommunityProfile
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