pub struct RunePage {
pub current: bool,
pub id: i64,
pub is_active: bool,
pub is_deletable: bool,
pub is_editable: bool,
pub is_valid: bool,
pub last_modified: i64,
pub name: String,
pub order: i64,
pub primary_style_id: i64,
pub selected_perk_ids: Vec<i64>,
pub sub_style_id: i64,
}Fields§
§current: bool§id: i64§is_active: bool§is_deletable: bool§is_editable: bool§is_valid: bool§last_modified: i64§name: String§order: i64§primary_style_id: i64§selected_perk_ids: Vec<i64>§sub_style_id: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunePage
impl<'de> Deserialize<'de> for RunePage
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
impl Eq for RunePage
impl StructuralPartialEq for RunePage
Auto Trait Implementations§
impl Freeze for RunePage
impl RefUnwindSafe for RunePage
impl Send for RunePage
impl Sync for RunePage
impl Unpin for RunePage
impl UnwindSafe for RunePage
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