#[repr(u8)]pub enum PINEResponse {
Show 17 variants
ResRead8 {
val: u8,
},
ResRead16 {
val: u16,
},
ResRead32 {
val: u32,
},
ResRead64 {
val: u64,
},
ResWrite8,
ResWrite16,
ResWrite32,
ResWrite64,
ResVersion {
version: String,
},
ResSaveState,
ResLoadState,
ResTitle {
title: String,
},
ResID {
id: String,
},
ResUUID {
uuid: String,
},
ResGameVersion {
version: String,
},
ResStatus {
status: PINEStatus,
},
ResUnimplemented,
}Variants§
ResRead8
ResRead16
ResRead32
ResRead64
ResWrite8
ResWrite16
ResWrite32
ResWrite64
ResVersion
ResSaveState
ResLoadState
ResTitle
ResID
ResUUID
ResGameVersion
ResStatus
Fields
§
status: PINEStatusResUnimplemented
Trait Implementations§
Source§impl Clone for PINEResponse
impl Clone for PINEResponse
Source§fn clone(&self) -> PINEResponse
fn clone(&self) -> PINEResponse
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 PINEResponse
impl Debug for PINEResponse
Auto Trait Implementations§
impl Freeze for PINEResponse
impl RefUnwindSafe for PINEResponse
impl Send for PINEResponse
impl Sync for PINEResponse
impl Unpin for PINEResponse
impl UnwindSafe for PINEResponse
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