Struct acpi_tables::aml::If
source · pub struct If<'a> {
predicate: &'a dyn Aml,
if_children: Vec<&'a dyn Aml>,
}
Expand description
If object with the if condition(predicate) and the body presented by the if_children objects.
Fields§
§predicate: &'a dyn Aml
§if_children: Vec<&'a dyn Aml>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for If<'a>
impl<'a> !Send for If<'a>
impl<'a> !Sync for If<'a>
impl<'a> Unpin for If<'a>
impl<'a> !UnwindSafe for If<'a>
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