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