pub struct AndBuilder { /* private fields */ }
Expand description
Builder for And
.
Implementations§
Source§impl AndBuilder
impl AndBuilder
Sourcepub fn path<VALUE: Into<JSONPath>>(self, value: VALUE) -> Self
pub fn path<VALUE: Into<JSONPath>>(self, value: VALUE) -> Self
Must be a JSON Pointer If the “path” member is not specified within the predicate object, it’s value is assumed to be an empty string.
pub fn apply<VALUE: Into<Vec<Predicate>>>(self, value: VALUE) -> Self
Sourcepub fn build(self) -> Result<And, AndBuilderError>
pub fn build(self) -> Result<And, AndBuilderError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AndBuilder
impl RefUnwindSafe for AndBuilder
impl Send for AndBuilder
impl Sync for AndBuilder
impl Unpin for AndBuilder
impl UnwindSafe for AndBuilder
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