pub struct DomEventPhase(/* private fields */);Expand description
See cef_dom_event_phase_t for more documentation.
Implementations§
Source§impl DomEventPhase
impl DomEventPhase
Sourcepub const UNKNOWN: Self
pub const UNKNOWN: Self
See cef_dom_event_phase_t::DOM_EVENT_PHASE_UNKNOWN for more documentation.
Sourcepub const CAPTURING: Self
pub const CAPTURING: Self
See cef_dom_event_phase_t::DOM_EVENT_PHASE_CAPTURING for more documentation.
Sourcepub const AT_TARGET: Self
pub const AT_TARGET: Self
See cef_dom_event_phase_t::DOM_EVENT_PHASE_AT_TARGET for more documentation.
Sourcepub const BUBBLING: Self
pub const BUBBLING: Self
See cef_dom_event_phase_t::DOM_EVENT_PHASE_BUBBLING for more documentation.
Sourcepub const NUM_VALUES: Self
pub const NUM_VALUES: Self
See cef_dom_event_phase_t::DOM_EVENT_PHASE_NUM_VALUES for more documentation.
Trait Implementations§
Source§impl AsMut<cef_dom_event_phase_t> for DomEventPhase
impl AsMut<cef_dom_event_phase_t> for DomEventPhase
Source§fn as_mut(&mut self) -> &mut cef_dom_event_phase_t
fn as_mut(&mut self) -> &mut cef_dom_event_phase_t
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<cef_dom_event_phase_t> for DomEventPhase
impl AsRef<cef_dom_event_phase_t> for DomEventPhase
Source§fn as_ref(&self) -> &cef_dom_event_phase_t
fn as_ref(&self) -> &cef_dom_event_phase_t
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for DomEventPhase
impl Clone for DomEventPhase
Source§fn clone(&self) -> DomEventPhase
fn clone(&self) -> DomEventPhase
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 DomEventPhase
impl Debug for DomEventPhase
Source§impl Default for DomEventPhase
impl Default for DomEventPhase
Source§impl From<DomEventPhase> for cef_dom_event_phase_t
impl From<DomEventPhase> for cef_dom_event_phase_t
Source§fn from(value: DomEventPhase) -> Self
fn from(value: DomEventPhase) -> Self
Converts to this type from the input type.
Source§impl From<cef_dom_event_phase_t> for DomEventPhase
impl From<cef_dom_event_phase_t> for DomEventPhase
Source§fn from(value: cef_dom_event_phase_t) -> Self
fn from(value: cef_dom_event_phase_t) -> Self
Converts to this type from the input type.
Source§impl Hash for DomEventPhase
impl Hash for DomEventPhase
Source§impl PartialEq for DomEventPhase
impl PartialEq for DomEventPhase
Source§fn eq(&self, other: &DomEventPhase) -> bool
fn eq(&self, other: &DomEventPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DomEventPhase
impl Eq for DomEventPhase
impl StructuralPartialEq for DomEventPhase
Auto Trait Implementations§
impl Freeze for DomEventPhase
impl RefUnwindSafe for DomEventPhase
impl Send for DomEventPhase
impl Sync for DomEventPhase
impl Unpin for DomEventPhase
impl UnsafeUnpin for DomEventPhase
impl UnwindSafe for DomEventPhase
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