pub struct SearchInResponseBodyBuilder { /* private fields */ }Expand description
Builder for SearchInResponseBody.
Implementations§
Source§impl SearchInResponseBodyBuilder
impl SearchInResponseBodyBuilder
Sourcepub fn request_id<VALUE: Into<RequestId>>(&mut self, value: VALUE) -> &mut Self
pub fn request_id<VALUE: Into<RequestId>>(&mut self, value: VALUE) -> &mut Self
Identifier of the network response to search.
Sourcepub fn case_sensitive<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn case_sensitive<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
If true, search is case sensitive.
Sourcepub fn is_regex<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn is_regex<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
If true, treats string parameter as regex.
Sourcepub fn build(
&self,
) -> Result<SearchInResponseBody, SearchInResponseBodyBuilderError>
pub fn build( &self, ) -> Result<SearchInResponseBody, SearchInResponseBodyBuilderError>
Trait Implementations§
Source§impl Clone for SearchInResponseBodyBuilder
impl Clone for SearchInResponseBodyBuilder
Source§fn clone(&self) -> SearchInResponseBodyBuilder
fn clone(&self) -> SearchInResponseBodyBuilder
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 SearchInResponseBodyBuilder
impl RefUnwindSafe for SearchInResponseBodyBuilder
impl Send for SearchInResponseBodyBuilder
impl Sync for SearchInResponseBodyBuilder
impl Unpin for SearchInResponseBodyBuilder
impl UnsafeUnpin for SearchInResponseBodyBuilder
impl UnwindSafe for SearchInResponseBodyBuilder
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