Struct predicates_core::reflection::Product
source · pub struct Product(_, _);
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 !RefUnwindSafe for Product
impl !Send for Product
impl !Sync for Product
impl Unpin for Product
impl !UnwindSafe for Product
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more