struct YamlExport {
pub nls: Nls,
pub custom_syscall_count: u16,
pub game_mode: u8,
pub game_mode_reserved: u8,
pub game_title: String,
pub syscall_count: u16,
pub syscalls: BTreeMap<usize, YamlSyscall>,
}Fields§
§nls: Nls§custom_syscall_count: u16§game_mode: u8§game_mode_reserved: u8§game_title: String§syscall_count: u16§syscalls: BTreeMap<usize, YamlSyscall>Trait Implementations§
Source§impl Clone for YamlExport
impl Clone for YamlExport
Source§fn clone(&self) -> YamlExport
fn clone(&self) -> YamlExport
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 YamlExport
impl Debug for YamlExport
Source§impl Default for YamlExport
impl Default for YamlExport
Source§fn default() -> YamlExport
fn default() -> YamlExport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for YamlExport
impl<'de> Deserialize<'de> for YamlExport
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 YamlExport
impl RefUnwindSafe for YamlExport
impl Send for YamlExport
impl Sync for YamlExport
impl Unpin for YamlExport
impl UnwindSafe for YamlExport
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