pub struct StatusCategory {
pub param_self: Option<String>,
pub id: Option<i64>,
pub key: Option<String>,
pub color_name: Option<String>,
pub name: Option<String>,
}
Expand description
StatusCategory : A status category.
Fields§
§param_self: Option<String>
The URL of the status category.
id: Option<i64>
The ID of the status category.
key: Option<String>
The key of the status category.
color_name: Option<String>
The name of the color used to represent the status category.
name: Option<String>
The name of the status category.
Implementations§
Source§impl StatusCategory
impl StatusCategory
Sourcepub fn new() -> StatusCategory
pub fn new() -> StatusCategory
A status category.
Trait Implementations§
Source§impl Clone for StatusCategory
impl Clone for StatusCategory
Source§fn clone(&self) -> StatusCategory
fn clone(&self) -> StatusCategory
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 StatusCategory
impl Debug for StatusCategory
Source§impl Default for StatusCategory
impl Default for StatusCategory
Source§fn default() -> StatusCategory
fn default() -> StatusCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatusCategory
impl<'de> Deserialize<'de> for StatusCategory
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 StatusCategory
impl PartialEq for StatusCategory
Source§impl Serialize for StatusCategory
impl Serialize for StatusCategory
impl StructuralPartialEq for StatusCategory
Auto Trait Implementations§
impl Freeze for StatusCategory
impl RefUnwindSafe for StatusCategory
impl Send for StatusCategory
impl Sync for StatusCategory
impl Unpin for StatusCategory
impl UnwindSafe for StatusCategory
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