pub struct article {
pub attributes: <article as TypedElement>::Attributes,
pub other_attributes: Vec<(String, Option<String>)>,
}
Available on crate feature
typed
only.Fields§
§attributes: <article as TypedElement>::Attributes
§other_attributes: Vec<(String, Option<String>)>
Trait Implementations§
Source§impl TypedElement for article
impl TypedElement for article
Source§type Attributes = ArticleAttributes
type Attributes = ArticleAttributes
The attributes of the element.
Source§fn from_attributes(
attributes: <article as TypedElement>::Attributes,
other_attributes: Vec<(String, Option<String>)>,
) -> article
fn from_attributes( attributes: <article as TypedElement>::Attributes, other_attributes: Vec<(String, Option<String>)>, ) -> article
Create an element from its attributes.
Auto Trait Implementations§
impl Freeze for article
impl RefUnwindSafe for article
impl Send for article
impl Sync for article
impl Unpin for article
impl UnwindSafe for article
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