pub enum IEnumTyped<'a> {
Element(BoxDynElement<'a>),
Text(BoxDynText<'a>),
UncareNode(BoxDynUncareNode<'a>),
}
Variants§
Implementations§
Source§impl<'a> IEnumTyped<'a>
impl<'a> IEnumTyped<'a>
pub fn into_element(self) -> Option<BoxDynElement<'a>>
pub fn into_text(self) -> Option<BoxDynText<'a>>
Auto Trait Implementations§
impl<'a> Freeze for IEnumTyped<'a>
impl<'a> !RefUnwindSafe for IEnumTyped<'a>
impl<'a> !Send for IEnumTyped<'a>
impl<'a> !Sync for IEnumTyped<'a>
impl<'a> Unpin for IEnumTyped<'a>
impl<'a> !UnwindSafe for IEnumTyped<'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