pub struct SkillEntry {
pub index: usize,
pub name: String,
pub raw: i32,
pub tag_bonus: i32,
pub bonus: i32,
pub total: i32,
}Fields§
§index: usize§name: String§raw: i32§tag_bonus: i32§bonus: i32§total: i32Trait Implementations§
Source§impl Clone for SkillEntry
impl Clone for SkillEntry
Source§fn clone(&self) -> SkillEntry
fn clone(&self) -> SkillEntry
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 SkillEntry
impl Debug for SkillEntry
Source§impl<'de> Deserialize<'de> for SkillEntry
impl<'de> Deserialize<'de> for SkillEntry
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 SkillEntry
impl PartialEq for SkillEntry
Source§impl Serialize for SkillEntry
impl Serialize for SkillEntry
impl Eq for SkillEntry
impl StructuralPartialEq for SkillEntry
Auto Trait Implementations§
impl Freeze for SkillEntry
impl RefUnwindSafe for SkillEntry
impl Send for SkillEntry
impl Sync for SkillEntry
impl Unpin for SkillEntry
impl UnsafeUnpin for SkillEntry
impl UnwindSafe for SkillEntry
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