pub struct HtmlButton {
pub name: Option<String>,
pub value: Option<String>,
pub label: String,
}Expand description
Button extracted from a form.
Fields§
§name: Option<String>Optional button name.
value: Option<String>Optional button value.
label: StringButton label.
Trait Implementations§
Source§impl Clone for HtmlButton
impl Clone for HtmlButton
Source§fn clone(&self) -> HtmlButton
fn clone(&self) -> HtmlButton
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HtmlButton
impl Debug for HtmlButton
Source§impl PartialEq for HtmlButton
impl PartialEq for HtmlButton
Source§fn eq(&self, other: &HtmlButton) -> bool
fn eq(&self, other: &HtmlButton) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for HtmlButton
impl StructuralPartialEq for HtmlButton
Auto Trait Implementations§
impl Freeze for HtmlButton
impl RefUnwindSafe for HtmlButton
impl Send for HtmlButton
impl Sync for HtmlButton
impl Unpin for HtmlButton
impl UnsafeUnpin for HtmlButton
impl UnwindSafe for HtmlButton
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