#[repr(C)]pub struct GB_workboy_t {
pub byte_to_send: u8,
pub bit_to_send: bool,
pub byte_being_received: u8,
pub bits_received: u8,
pub mode: u8,
pub key: u8,
pub shift_down: bool,
pub user_shift_down: bool,
pub buffer: [u8; 21],
pub buffer_index: u8,
}Fields§
§byte_to_send: u8§bit_to_send: bool§byte_being_received: u8§bits_received: u8§mode: u8§key: u8§shift_down: bool§user_shift_down: bool§buffer: [u8; 21]§buffer_index: u8Trait Implementations§
Source§impl Clone for GB_workboy_t
impl Clone for GB_workboy_t
Source§fn clone(&self) -> GB_workboy_t
fn clone(&self) -> GB_workboy_t
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 GB_workboy_t
impl Debug for GB_workboy_t
impl Copy for GB_workboy_t
Auto Trait Implementations§
impl Freeze for GB_workboy_t
impl RefUnwindSafe for GB_workboy_t
impl Send for GB_workboy_t
impl Sync for GB_workboy_t
impl Unpin for GB_workboy_t
impl UnwindSafe for GB_workboy_t
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