pub struct DiscussionCategory {
pub name: String,
pub description: String,
pub emoji: Option<String>,
pub created_at: String,
pub updated_at: String,
pub slug: Option<String>,
pub is_answerable: bool,
}Fields§
§name: String§description: String§emoji: Option<String>§created_at: String§updated_at: String§slug: Option<String>§is_answerable: boolTrait Implementations§
Source§impl Debug for DiscussionCategory
impl Debug for DiscussionCategory
Source§impl<'de> Deserialize<'de> for DiscussionCategory
impl<'de> Deserialize<'de> for DiscussionCategory
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 DiscussionCategory
impl RefUnwindSafe for DiscussionCategory
impl Send for DiscussionCategory
impl Sync for DiscussionCategory
impl Unpin for DiscussionCategory
impl UnwindSafe for DiscussionCategory
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