pub enum HostList<'a> {
HostObjList(HostObjList<'a>),
HostAttrList(HostAttrList<'a>),
}Expand description
Enum that can accept one type which corresponds to either the <hostObj> or <hostAttr> list of tags
Variants§
HostObjList(HostObjList<'a>)
HostAttrList(HostAttrList<'a>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for HostList<'a>
impl<'a> RefUnwindSafe for HostList<'a>
impl<'a> Send for HostList<'a>
impl<'a> Sync for HostList<'a>
impl<'a> Unpin for HostList<'a>
impl<'a> UnwindSafe for HostList<'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