pub struct VectorMatching {
pub op: VectorMatchingOp,
pub labels: Vec<String>,
pub group: Option<GroupModifier>,
}Expand description
Vector matching specification for binary operations
Fields§
§op: VectorMatchingOpThe matching operation (on or ignoring)
labels: Vec<String>Labels to match on or ignore
group: Option<GroupModifier>Optional group modifier
Trait Implementations§
Source§impl Clone for VectorMatching
impl Clone for VectorMatching
Source§fn clone(&self) -> VectorMatching
fn clone(&self) -> VectorMatching
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 moreSource§impl Debug for VectorMatching
impl Debug for VectorMatching
Source§impl Display for VectorMatching
impl Display for VectorMatching
Source§impl PartialEq for VectorMatching
impl PartialEq for VectorMatching
impl Eq for VectorMatching
impl StructuralPartialEq for VectorMatching
Auto Trait Implementations§
impl Freeze for VectorMatching
impl RefUnwindSafe for VectorMatching
impl Send for VectorMatching
impl Sync for VectorMatching
impl Unpin for VectorMatching
impl UnwindSafe for VectorMatching
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