pub struct LinkProps {
pub variant: LinkVariant,
pub size: Size,
pub href: Option<String>,
pub external: bool,
pub disabled: bool,
pub class: Option<String>,
pub aria_label: Option<String>,
pub id: Option<String>,
}Expand description
Properties for the styled Link component.
Fields§
§variant: LinkVariant§size: Size§href: Option<String>§external: bool§disabled: bool§class: Option<String>§aria_label: Option<String>§id: Option<String>Trait Implementations§
impl StructuralPartialEq for LinkProps
Auto Trait Implementations§
impl Freeze for LinkProps
impl RefUnwindSafe for LinkProps
impl Send for LinkProps
impl Sync for LinkProps
impl Unpin for LinkProps
impl UnsafeUnpin for LinkProps
impl UnwindSafe for LinkProps
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