pub struct SkillMasterFile {
pub skill_masters: Vec<SkillMasterRecord>,
}Expand description
Endless Skill Master File
Fields§
§skill_masters: Vec<SkillMasterRecord>Implementations§
Trait Implementations§
Source§impl Clone for SkillMasterFile
impl Clone for SkillMasterFile
Source§fn clone(&self) -> SkillMasterFile
fn clone(&self) -> SkillMasterFile
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 SkillMasterFile
impl Debug for SkillMasterFile
Source§impl Default for SkillMasterFile
impl Default for SkillMasterFile
Source§fn default() -> SkillMasterFile
fn default() -> SkillMasterFile
Returns the “default value” for a type. Read more
Source§impl EoSerialize for SkillMasterFile
impl EoSerialize for SkillMasterFile
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a SkillMasterFile into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a SkillMasterFile from an EoReader instance
Source§impl PartialEq for SkillMasterFile
impl PartialEq for SkillMasterFile
impl Eq for SkillMasterFile
impl StructuralPartialEq for SkillMasterFile
Auto Trait Implementations§
impl Freeze for SkillMasterFile
impl RefUnwindSafe for SkillMasterFile
impl Send for SkillMasterFile
impl Sync for SkillMasterFile
impl Unpin for SkillMasterFile
impl UnsafeUnpin for SkillMasterFile
impl UnwindSafe for SkillMasterFile
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