pub struct GetNodeForLocationBuilder { /* private fields */ }Expand description
Builder for GetNodeForLocation.
Implementations§
Source§impl GetNodeForLocationBuilder
impl GetNodeForLocationBuilder
Sourcepub fn include_user_agent_shadow_dom<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn include_user_agent_shadow_dom<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
False to skip to the nearest non-UA shadow root ancestor (default: false).
Sourcepub fn ignore_pointer_events_none<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn ignore_pointer_events_none<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Whether to ignore pointer-events: none on elements and hit test them.
Sourcepub fn build(
&self,
) -> Result<GetNodeForLocation, GetNodeForLocationBuilderError>
pub fn build( &self, ) -> Result<GetNodeForLocation, GetNodeForLocationBuilderError>
Trait Implementations§
Source§impl Clone for GetNodeForLocationBuilder
impl Clone for GetNodeForLocationBuilder
Source§fn clone(&self) -> GetNodeForLocationBuilder
fn clone(&self) -> GetNodeForLocationBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GetNodeForLocationBuilder
impl RefUnwindSafe for GetNodeForLocationBuilder
impl Send for GetNodeForLocationBuilder
impl Sync for GetNodeForLocationBuilder
impl Unpin for GetNodeForLocationBuilder
impl UnsafeUnpin for GetNodeForLocationBuilder
impl UnwindSafe for GetNodeForLocationBuilder
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