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