pub struct PopoverTarget {
pub id: String,
pub action: PopoverAction,
}Expand description
Declarative relationship between an invoker and an HTML popover.
Fields§
§id: StringDOM id of the popover controlled by this invoker.
action: PopoverActionVisibility operation requested on activation.
Trait Implementations§
Source§impl Clone for PopoverTarget
impl Clone for PopoverTarget
Source§fn clone(&self) -> PopoverTarget
fn clone(&self) -> PopoverTarget
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 PopoverTarget
impl Debug for PopoverTarget
Source§impl<'de> Deserialize<'de> for PopoverTarget
impl<'de> Deserialize<'de> for PopoverTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PopoverTarget
Source§impl Hash for PopoverTarget
impl Hash for PopoverTarget
Source§impl PartialEq for PopoverTarget
impl PartialEq for PopoverTarget
Source§impl Serialize for PopoverTarget
impl Serialize for PopoverTarget
impl StructuralPartialEq for PopoverTarget
Auto Trait Implementations§
impl Freeze for PopoverTarget
impl RefUnwindSafe for PopoverTarget
impl Send for PopoverTarget
impl Sync for PopoverTarget
impl Unpin for PopoverTarget
impl UnsafeUnpin for PopoverTarget
impl UnwindSafe for PopoverTarget
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