pub struct CategorySection {
pub id: u32,
pub game_id: u32,
pub name: String,
pub package_type: u32,
pub path: String,
pub initial_inclusion_pattern: String,
pub extra_include_pattern: Option<String>,
pub game_category_id: u16,
}
Fields§
§id: u32
§game_id: u32
§name: String
§package_type: u32
§path: String
§initial_inclusion_pattern: String
§extra_include_pattern: Option<String>
§game_category_id: u16
Trait Implementations§
Source§impl Debug for CategorySection
impl Debug for CategorySection
Source§impl<'de> Deserialize<'de> for CategorySection
impl<'de> Deserialize<'de> for CategorySection
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 CategorySection
impl RefUnwindSafe for CategorySection
impl Send for CategorySection
impl Sync for CategorySection
impl Unpin for CategorySection
impl UnwindSafe for CategorySection
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