Struct html_sys::text::SideComment
source · #[non_exhaustive]pub struct SideComment {
pub data_map: DataMap,
/* private fields */
}
Expand description
The HTML <small>
element
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_map: DataMap
Trait Implementations§
source§impl Clone for SideComment
impl Clone for SideComment
source§fn clone(&self) -> SideComment
fn clone(&self) -> SideComment
Returns a copy 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 Debug for SideComment
impl Debug for SideComment
source§impl Default for SideComment
impl Default for SideComment
source§fn default() -> SideComment
fn default() -> SideComment
Returns the “default value” for a type. Read more
source§impl Deref for SideComment
impl Deref for SideComment
source§impl DerefMut for SideComment
impl DerefMut for SideComment
source§impl Display for SideComment
impl Display for SideComment
source§impl PartialEq<SideComment> for SideComment
impl PartialEq<SideComment> for SideComment
source§fn eq(&self, other: &SideComment) -> bool
fn eq(&self, other: &SideComment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RenderElement for SideComment
impl RenderElement for SideComment
impl StructuralPartialEq for SideComment
Auto Trait Implementations§
impl RefUnwindSafe for SideComment
impl Send for SideComment
impl Sync for SideComment
impl Unpin for SideComment
impl UnwindSafe for SideComment
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