pub struct Element<'a> {
pub tag: &'a str,
pub attr: Vec<&'a str>,
pub children: Vec<Child<'a>>,
}
Fields§
§tag: &'a str
The name of the element. E.g. REAPER_PROJECT
, TRACK
, FXCHAIN
, VST
, CONTAINER
attr: Vec<&'a str>
List of attributes for this element.
children: Vec<Child<'a>>
Children of this element. See Child.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Element<'a>
impl<'a> RefUnwindSafe for Element<'a>
impl<'a> Send for Element<'a>
impl<'a> Sync for Element<'a>
impl<'a> Unpin for Element<'a>
impl<'a> UnwindSafe for Element<'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