Struct freya_components::ExternalLinkProps 
source · pub struct ExternalLinkProps<'a> {
    pub theme: Option<ExternalLinkThemeWith>,
    pub children: Element<'a>,
    pub onerror: Option<EventHandler<'a, ()>>,
    pub show_tooltip: Option<bool>,
    pub url: &'a str,
}Expand description
ExternalLink component properties.
Fields§
§theme: Option<ExternalLinkThemeWith>Theme override.
children: Element<'a>Inner children for the ExternalLink.
onerror: Option<EventHandler<'a, ()>>Handler for the onerror event.
show_tooltip: Option<bool>Whether to show a tooltip with the URL or not.
url: &'a strThe ExternalLink destination URL.
Implementations§
source§impl<'a> ExternalLinkProps<'a>
 
impl<'a> ExternalLinkProps<'a>
sourcepub fn builder() -> ExternalLinkPropsBuilder<'a, ((), (), (), (), ())>
 
pub fn builder() -> ExternalLinkPropsBuilder<'a, ((), (), (), (), ())>
Create a builder for building ExternalLinkProps.
On the builder, call .theme(...)(optional), .children(...)(optional), .onerror(...)(optional), .show_tooltip(...)(optional), .url(...) to set the values of the fields.
Finally, call .build() to create the instance of ExternalLinkProps.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ExternalLinkProps<'a>
impl<'a> !Send for ExternalLinkProps<'a>
impl<'a> !Sync for ExternalLinkProps<'a>
impl<'a> Unpin for ExternalLinkProps<'a>
impl<'a> !UnwindSafe for ExternalLinkProps<'a>
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