pub struct IfOp {
pub predicate: Vec<u8>,
pub body: Vec<u8>,
}Expand description
An AML If conditional operation.
Fields§
§predicate: Vec<u8>Pre-serialized predicate expression.
body: Vec<u8>Pre-serialized body operations.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IfOp
impl RefUnwindSafe for IfOp
impl Send for IfOp
impl Sync for IfOp
impl Unpin for IfOp
impl UnwindSafe for IfOp
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