#[repr(C)]pub struct jtag_proc {
pub jtagtap_reset: Option<unsafe extern "C" fn()>,
pub jtagtap_next: Option<unsafe extern "C" fn(tms: bool, tdi: bool) -> bool>,
pub jtagtap_tms_seq: Option<unsafe extern "C" fn(tms_states: u32, clock_cycles: usize)>,
pub jtagtap_tdi_tdo_seq: Option<unsafe extern "C" fn(data_out: *mut u8, final_tms: bool, data_in: *const u8, clock_cycles: usize)>,
pub jtagtap_tdi_seq: Option<unsafe extern "C" fn(final_tms: bool, data_in: *const u8, clock_cycles: usize)>,
pub jtagtap_cycle: Option<unsafe extern "C" fn(tms: bool, tdi: bool, clock_cycles: usize)>,
pub tap_idle_cycles: u8,
}Fields§
§jtagtap_reset: Option<unsafe extern "C" fn()>§jtagtap_next: Option<unsafe extern "C" fn(tms: bool, tdi: bool) -> bool>§jtagtap_tms_seq: Option<unsafe extern "C" fn(tms_states: u32, clock_cycles: usize)>§jtagtap_tdi_tdo_seq: Option<unsafe extern "C" fn(data_out: *mut u8, final_tms: bool, data_in: *const u8, clock_cycles: usize)>§jtagtap_tdi_seq: Option<unsafe extern "C" fn(final_tms: bool, data_in: *const u8, clock_cycles: usize)>§jtagtap_cycle: Option<unsafe extern "C" fn(tms: bool, tdi: bool, clock_cycles: usize)>§tap_idle_cycles: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for jtag_proc
impl RefUnwindSafe for jtag_proc
impl Send for jtag_proc
impl Sync for jtag_proc
impl Unpin for jtag_proc
impl UnwindSafe for jtag_proc
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