Struct freya::components::ExternalLinkProps
source · pub struct ExternalLinkProps<'a> { /* private fields */ }
Expand description
ExternalLink
component properties.
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 .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§
source§impl<'a> Properties for ExternalLinkProps<'a>
impl<'a> Properties for ExternalLinkProps<'a>
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