pub struct Italic<'a> {
pub role: Option<Role<'a>>,
pub id: Option<&'a str>,
pub form: Form,
pub content: Vec<InlineNode<'a>>,
pub location: Location,
}Expand description
An Italic represents an italic section of text in a document.
Fields§
§role: Option<Role<'a>>§id: Option<&'a str>§form: Form§content: Vec<InlineNode<'a>>§location: LocationTrait Implementations§
impl<'a> StructuralPartialEq for Italic<'a>
Auto Trait Implementations§
impl<'a> Freeze for Italic<'a>
impl<'a> RefUnwindSafe for Italic<'a>
impl<'a> Send for Italic<'a>
impl<'a> Sync for Italic<'a>
impl<'a> Unpin for Italic<'a>
impl<'a> UnsafeUnpin for Italic<'a>
impl<'a> UnwindSafe for Italic<'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