pub struct WaitForRequestBuilder<'a, M> { /* private fields */ }Expand description
Builder for waiting for a request.
Implementations§
Source§impl<'a, M: UrlMatcher + Clone + 'static> WaitForRequestBuilder<'a, M>
impl<'a, M: UrlMatcher + Clone + 'static> WaitForRequestBuilder<'a, M>
Sourcepub fn new(
connection: &'a Arc<CdpConnection>,
session_id: &'a str,
pattern: M,
) -> Self
pub fn new( connection: &'a Arc<CdpConnection>, session_id: &'a str, pattern: M, ) -> Self
Create a new wait for request builder.
Trait Implementations§
Auto Trait Implementations§
impl<'a, M> Freeze for WaitForRequestBuilder<'a, M>where
M: Freeze,
impl<'a, M> !RefUnwindSafe for WaitForRequestBuilder<'a, M>
impl<'a, M> Send for WaitForRequestBuilder<'a, M>where
M: Send,
impl<'a, M> Sync for WaitForRequestBuilder<'a, M>where
M: Sync,
impl<'a, M> Unpin for WaitForRequestBuilder<'a, M>where
M: Unpin,
impl<'a, M> !UnwindSafe for WaitForRequestBuilder<'a, M>
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