pub struct DialogProps {
pub open: bool,
pub class: Option<String>,
pub aria_label: Option<String>,
pub aria_describedby: Option<String>,
pub id: Option<String>,
}Expand description
Properties for the Dialog content panel.
Fields§
§open: bool§class: Option<String>§aria_label: Option<String>§aria_describedby: Option<String>§id: Option<String>Trait Implementations§
Source§impl Clone for DialogProps
impl Clone for DialogProps
Source§fn clone(&self) -> DialogProps
fn clone(&self) -> DialogProps
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 DialogProps
impl Debug for DialogProps
Source§impl Default for DialogProps
impl Default for DialogProps
Source§fn default() -> DialogProps
fn default() -> DialogProps
Returns the “default value” for a type. Read more
Source§impl PartialEq for DialogProps
impl PartialEq for DialogProps
Source§fn eq(&self, other: &DialogProps) -> bool
fn eq(&self, other: &DialogProps) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DialogProps
Auto Trait Implementations§
impl Freeze for DialogProps
impl RefUnwindSafe for DialogProps
impl Send for DialogProps
impl Sync for DialogProps
impl Unpin for DialogProps
impl UnsafeUnpin for DialogProps
impl UnwindSafe for DialogProps
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