Struct predicates_core::reflection::Product
source · pub struct Product(/* private fields */);
Expand description
A by-product of a predicate evaluation.
use predicates_core;
let product = predicates_core::reflection::Product::new("key", "value");
println!("{}", product);
let product = predicates_core::reflection::Product::new(format!("key-{}", 5), 30);
println!("{}", product);
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Product
impl !RefUnwindSafe for Product
impl !Send for Product
impl !Sync for Product
impl Unpin for Product
impl !UnwindSafe for Product
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