Struct SecGateInfo

Source
#[repr(C)]
pub struct SecGateInfo<F> { pub imp: F, /* private fields */ }
Expand description

A struct of information about a secure gate. These are auto-generated by the crate::secure_gate macro, and stored in a special ELF section (.twz_secgate_info) as an array. The dynamic linker and monitor can then use this to easily enumerate gates.

Fields§

§imp: F

A pointer to the implementation entry function. This must be a pointer, and we statically check that is has the same size as usize (sorry cheri, we’ll fix this another time)

Implementations§

Source§

impl<F> SecGateInfo<F>

Source

pub const fn new(imp: F, name: &'static CStr) -> Self

Source

pub fn name(&self) -> &CStr

Trait Implementations§

Source§

impl<F> Debug for SecGateInfo<F>

Source§

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

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

impl<F: Send> Send for SecGateInfo<F>

Source§

impl<F: Sync> Sync for SecGateInfo<F>

Auto Trait Implementations§

§

impl<F> !Crossing for SecGateInfo<F>

§

impl<F> Freeze for SecGateInfo<F>
where F: Freeze,

§

impl<F> !ObjSafe for SecGateInfo<F>

§

impl<F> RefUnwindSafe for SecGateInfo<F>
where F: RefUnwindSafe,

§

impl<F> Unpin for SecGateInfo<F>
where F: Unpin,

§

impl<F> UnwindSafe for SecGateInfo<F>
where F: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.