Struct html_sys::text::DescriptionTerm
source · #[non_exhaustive]pub struct DescriptionTerm {
pub data_map: DataMap,
/* private fields */
}
Expand description
The HTML <dt>
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 DescriptionTerm
impl Clone for DescriptionTerm
source§fn clone(&self) -> DescriptionTerm
fn clone(&self) -> DescriptionTerm
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 DescriptionTerm
impl Debug for DescriptionTerm
source§impl Default for DescriptionTerm
impl Default for DescriptionTerm
source§fn default() -> DescriptionTerm
fn default() -> DescriptionTerm
Returns the “default value” for a type. Read more
source§impl Deref for DescriptionTerm
impl Deref for DescriptionTerm
source§impl DerefMut for DescriptionTerm
impl DerefMut for DescriptionTerm
source§impl Display for DescriptionTerm
impl Display for DescriptionTerm
source§impl PartialEq<DescriptionTerm> for DescriptionTerm
impl PartialEq<DescriptionTerm> for DescriptionTerm
source§fn eq(&self, other: &DescriptionTerm) -> bool
fn eq(&self, other: &DescriptionTerm) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RenderElement for DescriptionTerm
impl RenderElement for DescriptionTerm
impl StructuralPartialEq for DescriptionTerm
Auto Trait Implementations§
impl RefUnwindSafe for DescriptionTerm
impl Send for DescriptionTerm
impl Sync for DescriptionTerm
impl Unpin for DescriptionTerm
impl UnwindSafe for DescriptionTerm
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