Struct splits_io_api::Category
source · pub struct Category {
pub created_at: Box<str>,
pub id: Box<str>,
pub name: Box<str>,
pub updated_at: Box<str>,
}Expand description
A Category is a ruleset for a Game (Any%, 100%, MST, etc.) and an optional container for Runs.
Fields§
§created_at: Box<str>The time and date at which this category was created on Splits.io. This field conforms to ISO 8601.
id: Box<str>The unique ID of the category.
name: Box<str>The name of the category.
updated_at: Box<str>The time and date at which this category was most recently modified on Splits.io. This field conforms to ISO 8601.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Category
impl<'de> Deserialize<'de> for Category
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