Struct esp_idf_sys::XtExcFrame

source ·
#[repr(C)]
pub struct XtExcFrame {
Show 28 fields pub exit: c_long, pub pc: c_long, pub ps: c_long, pub a0: c_long, pub a1: c_long, pub a2: c_long, pub a3: c_long, pub a4: c_long, pub a5: c_long, pub a6: c_long, pub a7: c_long, pub a8: c_long, pub a9: c_long, pub a10: c_long, pub a11: c_long, pub a12: c_long, pub a13: c_long, pub a14: c_long, pub a15: c_long, pub sar: c_long, pub exccause: c_long, pub excvaddr: c_long, pub lbeg: c_long, pub lend: c_long, pub lcount: c_long, pub tmp0: c_long, pub tmp1: c_long, pub tmp2: c_long,
}

Fields§

§exit: c_long§pc: c_long§ps: c_long§a0: c_long§a1: c_long§a2: c_long§a3: c_long§a4: c_long§a5: c_long§a6: c_long§a7: c_long§a8: c_long§a9: c_long§a10: c_long§a11: c_long§a12: c_long§a13: c_long§a14: c_long§a15: c_long§sar: c_long§exccause: c_long§excvaddr: c_long§lbeg: c_long§lend: c_long§lcount: c_long§tmp0: c_long§tmp1: c_long§tmp2: c_long

Trait Implementations§

source§

impl Clone for XtExcFrame

source§

fn clone(&self) -> XtExcFrame

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 XtExcFrame

source§

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

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

impl Default for XtExcFrame

source§

fn default() -> XtExcFrame

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

impl Copy for XtExcFrame

Auto Trait Implementations§

§

impl Freeze for XtExcFrame

§

impl RefUnwindSafe for XtExcFrame

§

impl Send for XtExcFrame

§

impl Sync for XtExcFrame

§

impl Unpin for XtExcFrame

§

impl UnwindSafe for XtExcFrame

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.