#[repr(C)]pub struct productStruct {
pub unknown: c_int,
pub product: [c_char; 9],
pub unk: [c_char; 3],
}Expand description
Product structure
Fields§
§unknown: c_intUnknown, set to 0, other values used are 1 and 2. Not sure on what they represent
product: [c_char; 9]The product ID string
unk: [c_char; 3]Trait Implementations§
Source§impl Clone for productStruct
impl Clone for productStruct
Source§impl Debug for productStruct
impl Debug for productStruct
impl Copy for productStruct
Auto Trait Implementations§
impl Freeze for productStruct
impl RefUnwindSafe for productStruct
impl Send for productStruct
impl Sync for productStruct
impl Unpin for productStruct
impl UnsafeUnpin for productStruct
impl UnwindSafe for productStruct
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