Struct freya::components::TooltipProps
source · pub struct TooltipProps<'a> {
pub theme: Option<TooltipThemeWith>,
pub url: &'a str,
}
Expand description
Tooltip
component properties.
Fields§
§theme: Option<TooltipThemeWith>
Theme override.
url: &'a str
Url as the Tooltip destination.
Implementations§
Trait Implementations§
source§impl<'a> Properties for TooltipProps<'a>
impl<'a> Properties for TooltipProps<'a>
§type Builder = TooltipPropsBuilder<'a, ((), ())>
type Builder = TooltipPropsBuilder<'a, ((), ())>
The type of the builder for this component.
Used to create “in-progress” versions of the props.
source§fn builder() -> <TooltipProps<'a> as Properties>::Builder
fn builder() -> <TooltipProps<'a> as Properties>::Builder
Create a builder for this component.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for TooltipProps<'a>
impl<'a> Send for TooltipProps<'a>
impl<'a> Sync for TooltipProps<'a>
impl<'a> Unpin for TooltipProps<'a>
impl<'a> UnwindSafe for TooltipProps<'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