pub enum ShapeProbe {
Value {
label: String,
value: Value,
},
Expr {
label: String,
expr: Expr,
},
}Expand description
Example value or expression used to gather relation evidence.
Variants§
Trait Implementations§
Source§impl Clone for ShapeProbe
impl Clone for ShapeProbe
Source§fn clone(&self) -> ShapeProbe
fn clone(&self) -> ShapeProbe
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 !RefUnwindSafe for ShapeProbe
impl !UnwindSafe for ShapeProbe
impl Freeze for ShapeProbe
impl Send for ShapeProbe
impl Sync for ShapeProbe
impl Unpin for ShapeProbe
impl UnsafeUnpin for ShapeProbe
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