pub enum Instance {
SecurePhysical,
SecureVirtual(u16),
}Expand description
An FF-A instance is a valid combination of two FF-A components at an exception level boundary.
Variants§
SecurePhysical
The instance between the SPMC and SPMD.
SecureVirtual(u16)
The instance between the SPMC and a physical SP (contains the SP’s endpoint ID).
Trait Implementations§
impl Copy for Instance
impl StructuralPartialEq for Instance
Auto Trait Implementations§
impl Freeze for Instance
impl RefUnwindSafe for Instance
impl Send for Instance
impl Sync for Instance
impl Unpin for Instance
impl UnwindSafe for Instance
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