pub struct WaitForResponseBuilder<'a, M> { /* private fields */ }Expand description
Builder for waiting for a response.
Implementations§
Source§impl<'a, M: UrlMatcher + Clone + 'static> WaitForResponseBuilder<'a, M>
impl<'a, M: UrlMatcher + Clone + 'static> WaitForResponseBuilder<'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 response builder.
Trait Implementations§
Auto Trait Implementations§
impl<'a, M> Freeze for WaitForResponseBuilder<'a, M>where
M: Freeze,
impl<'a, M> !RefUnwindSafe for WaitForResponseBuilder<'a, M>
impl<'a, M> Send for WaitForResponseBuilder<'a, M>where
M: Send,
impl<'a, M> Sync for WaitForResponseBuilder<'a, M>where
M: Sync,
impl<'a, M> Unpin for WaitForResponseBuilder<'a, M>where
M: Unpin,
impl<'a, M> !UnwindSafe for WaitForResponseBuilder<'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