pub struct CCCategoryData {
pub type_: String,
pub id: i32,
pub name: String,
pub category: String,
}
Fields§
§type_: String
Type of the message.
id: i32
The unique identifier for the news category entry.
name: String
The name of the news category.
category: String
Trait Implementations§
Source§impl Debug for CCCategoryData
impl Debug for CCCategoryData
Source§impl<'de> Deserialize<'de> for CCCategoryData
impl<'de> Deserialize<'de> for CCCategoryData
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 CCCategoryData
impl RefUnwindSafe for CCCategoryData
impl Send for CCCategoryData
impl Sync for CCCategoryData
impl Unpin for CCCategoryData
impl UnwindSafe for CCCategoryData
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