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