pub struct Icons<'a> {
pub icons: Vec<Icon<'a>>,
}Expand description
The container for zero or one <Icon> element.
<xs:element name="Icons">
<xs:complexType>
<xs:sequence>
<xs:element name="Icon" minOccurs="1" maxOccurs="unbounded" type="vast:Icon_type">
</xs:sequence>
</xs:complexType>
</xs:element>Fields§
§icons: Vec<Icon<'a>>The container for one or more <Icon> elements.
Trait Implementations§
impl<'a> StructuralPartialEq for Icons<'a>
Auto Trait Implementations§
impl<'a> Freeze for Icons<'a>
impl<'a> RefUnwindSafe for Icons<'a>
impl<'a> Send for Icons<'a>
impl<'a> Sync for Icons<'a>
impl<'a> Unpin for Icons<'a>
impl<'a> UnwindSafe for Icons<'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