pub struct FindControllerBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct FindController
objects.
Implementations§
Source§impl FindControllerBuilder
impl FindControllerBuilder
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new FindControllerBuilder
.
Sourcepub fn build(self) -> FindController
pub fn build(self) -> FindController
Build the FindController
.
pub fn web_view<P: IsA<WebView>>(self, web_view: &P) -> Self
Trait Implementations§
Source§impl Clone for FindControllerBuilder
impl Clone for FindControllerBuilder
Source§fn clone(&self) -> FindControllerBuilder
fn clone(&self) -> FindControllerBuilder
Returns a copy 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 moreSource§impl Default for FindControllerBuilder
impl Default for FindControllerBuilder
Source§fn default() -> FindControllerBuilder
fn default() -> FindControllerBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FindControllerBuilder
impl RefUnwindSafe for FindControllerBuilder
impl !Send for FindControllerBuilder
impl !Sync for FindControllerBuilder
impl Unpin for FindControllerBuilder
impl UnwindSafe for FindControllerBuilder
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