pub struct TooltipProps {
pub side: TooltipSide,
pub open: bool,
pub class: Option<String>,
pub content: String,
pub id: Option<String>,
}Expand description
Properties for the styled Tooltip.
Fields§
§side: TooltipSide§open: bool§class: Option<String>§content: String§id: Option<String>Trait Implementations§
Source§impl Clone for TooltipProps
impl Clone for TooltipProps
Source§fn clone(&self) -> TooltipProps
fn clone(&self) -> TooltipProps
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TooltipProps
impl Debug for TooltipProps
Source§impl Default for TooltipProps
impl Default for TooltipProps
Source§fn default() -> TooltipProps
fn default() -> TooltipProps
Returns the “default value” for a type. Read more
Source§impl PartialEq for TooltipProps
impl PartialEq for TooltipProps
Source§fn eq(&self, other: &TooltipProps) -> bool
fn eq(&self, other: &TooltipProps) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TooltipProps
Auto Trait Implementations§
impl Freeze for TooltipProps
impl RefUnwindSafe for TooltipProps
impl Send for TooltipProps
impl Sync for TooltipProps
impl Unpin for TooltipProps
impl UnsafeUnpin for TooltipProps
impl UnwindSafe for TooltipProps
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