Struct freya::prelude::ExternalLinkProps
pub struct ExternalLinkProps<'a> { /* private fields */ }
Expand description
ExternalLink
component properties.
Implementations§
§impl<'a> ExternalLinkProps<'a>
impl<'a> ExternalLinkProps<'a>
pub 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§
§impl<'a> Properties for ExternalLinkProps<'a>
impl<'a> Properties for ExternalLinkProps<'a>
§type Builder = ExternalLinkPropsBuilder<'a, ((), (), (), ())>
type Builder = ExternalLinkPropsBuilder<'a, ((), (), (), ())>
The type of the builder for this component.
Used to create “in-progress” versions of the props.
§fn builder() -> <ExternalLinkProps<'a> as Properties>::Builder
fn builder() -> <ExternalLinkProps<'a> as Properties>::Builder
Create a builder for this component.
§unsafe fn memoize(&self, other: &ExternalLinkProps<'a>) -> bool
unsafe fn memoize(&self, other: &ExternalLinkProps<'a>) -> bool
Memoization can only happen if the props are valid for the ’static lifetime Read more
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