Struct secgate::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§
Trait Implementations§
impl<F: Send> Send for SecGateInfo<F>
impl<F: Sync> Sync for SecGateInfo<F>
Auto Trait Implementations§
impl<F> !Crossing for SecGateInfo<F>
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> 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