pub struct IdentList<'a> {
pub span: Span,
pub idents: Vec<'a, InterpolableIdent<'a>>,
}Expand description
A space-separated <ident>+ list, e.g. the argument of ::part(tab active)
(CSS Shadow Parts).
Fields§
§span: Span§idents: Vec<'a, InterpolableIdent<'a>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for IdentList<'a>
impl<'a> !Send for IdentList<'a>
impl<'a> !Sync for IdentList<'a>
impl<'a> !UnwindSafe for IdentList<'a>
impl<'a> Freeze for IdentList<'a>
impl<'a> Unpin for IdentList<'a>
impl<'a> UnsafeUnpin for IdentList<'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