pub struct BackendCapabilities {
pub produces_elf: bool,
pub supports_rule_verification: bool,
pub supports_binary_verification: bool,
pub is_external: bool,
}Expand description
What a backend can and cannot do
Fields§
§produces_elf: boolBackend produces complete ELF files (external backends like aWsm)
supports_rule_verification: boolBackend supports per-rule verification (only our custom ARM backend)
supports_binary_verification: boolBackend supports binary-level verification (all backends via disassembly)
is_external: boolBackend is an external tool (not a library)
Trait Implementations§
Source§impl Clone for BackendCapabilities
impl Clone for BackendCapabilities
Source§fn clone(&self) -> BackendCapabilities
fn clone(&self) -> BackendCapabilities
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BackendCapabilities
impl RefUnwindSafe for BackendCapabilities
impl Send for BackendCapabilities
impl Sync for BackendCapabilities
impl Unpin for BackendCapabilities
impl UnsafeUnpin for BackendCapabilities
impl UnwindSafe for BackendCapabilities
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