pub struct ButtonProps {
pub label: String,
pub variant: ButtonVariant,
pub size: Size,
pub disabled: Option<bool>,
pub icon: Option<String>,
pub icon_position: Option<IconPosition>,
pub button_type: Option<ButtonType>,
pub form: Option<String>,
}Expand description
Props for Button component.
Fields§
§label: String§variant: ButtonVariant§size: Size§disabled: Option<bool>§icon: Option<String>§icon_position: Option<IconPosition>§form: Option<String>HTML5 form attribute. Lets a submit button rendered outside its
target <form> (e.g. in a PageHeader actions slot) still submit
that form, by matching the form’s id.
Trait Implementations§
Source§impl Clone for ButtonProps
impl Clone for ButtonProps
Source§fn clone(&self) -> ButtonProps
fn clone(&self) -> ButtonProps
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 ButtonProps
impl Debug for ButtonProps
Source§impl<'de> Deserialize<'de> for ButtonProps
impl<'de> Deserialize<'de> for ButtonProps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for ButtonProps
impl JsonSchema for ButtonProps
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ButtonProps
impl PartialEq for ButtonProps
Source§fn eq(&self, other: &ButtonProps) -> bool
fn eq(&self, other: &ButtonProps) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ButtonProps
impl Serialize for ButtonProps
impl StructuralPartialEq for ButtonProps
Auto Trait Implementations§
impl Freeze for ButtonProps
impl RefUnwindSafe for ButtonProps
impl Send for ButtonProps
impl Sync for ButtonProps
impl Unpin for ButtonProps
impl UnsafeUnpin for ButtonProps
impl UnwindSafe for ButtonProps
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