pub enum Affiliated<'a> {
Name(Option<NodeID>),
Caption(Option<NodeID>, NodeID),
Attr {
child_id: Option<NodeID>,
backend: &'a str,
val: &'a str,
},
}
Variants§
Trait Implementations§
Source§impl<'a> Clone for Affiliated<'a>
impl<'a> Clone for Affiliated<'a>
Source§fn clone(&self) -> Affiliated<'a>
fn clone(&self) -> Affiliated<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for Affiliated<'a>
impl<'a> Debug for Affiliated<'a>
Source§impl<'a> From<Affiliated<'a>> for Expr<'a>
impl<'a> From<Affiliated<'a>> for Expr<'a>
Source§fn from(original: Affiliated<'a>) -> Expr<'a>
fn from(original: Affiliated<'a>) -> Expr<'a>
Converts to this type from the input type.
Source§impl<'a> PartialEq for Affiliated<'a>
impl<'a> PartialEq for Affiliated<'a>
impl<'a> Eq for Affiliated<'a>
impl<'a> StructuralPartialEq for Affiliated<'a>
Auto Trait Implementations§
impl<'a> Freeze for Affiliated<'a>
impl<'a> RefUnwindSafe for Affiliated<'a>
impl<'a> Send for Affiliated<'a>
impl<'a> Sync for Affiliated<'a>
impl<'a> Unpin for Affiliated<'a>
impl<'a> UnwindSafe for Affiliated<'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