Struct esp_idf_sys::XtosCoreState

source ·
#[repr(C)]
pub struct XtosCoreState {
Show 38 fields pub signature: c_long, pub restore_label: c_long, pub aftersave_label: c_long, pub areg: [c_long; 64], pub caller_regs: [c_long; 16], pub caller_regs_saved: c_long, pub windowbase: c_long, pub windowstart: c_long, pub sar: c_long, pub epc1: c_long, pub ps: c_long, pub excsave1: c_long, pub depc: c_long, pub epc: [c_long; 6], pub eps: [c_long; 6], pub excsave: [c_long; 6], pub lcount: c_long, pub lbeg: c_long, pub lend: c_long, pub vecbase: c_long, pub atomctl: c_long, pub memctl: c_long, pub ccount: c_long, pub ccompare: [c_long; 3], pub intenable: c_long, pub interrupt: c_long, pub icount: c_long, pub icountlevel: c_long, pub debugcause: c_long, pub dbreakc: [c_long; 2], pub dbreaka: [c_long; 2], pub ibreaka: [c_long; 2], pub ibreakenable: c_long, pub misc: [c_long; 4], pub cpenable: c_long, pub tlbs: [c_long; 16], pub ncp: [c_char; 48], pub cp0: [c_char; 72],
}

Fields§

§signature: c_long§restore_label: c_long§aftersave_label: c_long§areg: [c_long; 64]§caller_regs: [c_long; 16]§caller_regs_saved: c_long§windowbase: c_long§windowstart: c_long§sar: c_long§epc1: c_long§ps: c_long§excsave1: c_long§depc: c_long§epc: [c_long; 6]§eps: [c_long; 6]§excsave: [c_long; 6]§lcount: c_long§lbeg: c_long§lend: c_long§vecbase: c_long§atomctl: c_long§memctl: c_long§ccount: c_long§ccompare: [c_long; 3]§intenable: c_long§interrupt: c_long§icount: c_long§icountlevel: c_long§debugcause: c_long§dbreakc: [c_long; 2]§dbreaka: [c_long; 2]§ibreaka: [c_long; 2]§ibreakenable: c_long§misc: [c_long; 4]§cpenable: c_long§tlbs: [c_long; 16]§ncp: [c_char; 48]§cp0: [c_char; 72]

Trait Implementations§

source§

impl Clone for XtosCoreState

source§

fn clone(&self) -> XtosCoreState

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for XtosCoreState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for XtosCoreState

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for XtosCoreState

Auto Trait Implementations§

§

impl Freeze for XtosCoreState

§

impl RefUnwindSafe for XtosCoreState

§

impl Send for XtosCoreState

§

impl Sync for XtosCoreState

§

impl Unpin for XtosCoreState

§

impl UnwindSafe for XtosCoreState

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Copy,

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.