pub struct VectorMatchFillValues {
pub rhs: Option<f64>,
pub lhs: Option<f64>,
}Expand description
VectorMatchFillValues contains the fill values to use for Vector matching when one side does not find a match on the other side. When a fill value is nil, no fill is applied for that side, and there is no output for the match group if there is no match.
Fields§
§rhs: Option<f64>§lhs: Option<f64>Implementations§
Trait Implementations§
Source§impl Clone for VectorMatchFillValues
impl Clone for VectorMatchFillValues
Source§fn clone(&self) -> VectorMatchFillValues
fn clone(&self) -> VectorMatchFillValues
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 moreSource§impl Debug for VectorMatchFillValues
impl Debug for VectorMatchFillValues
Source§impl Default for VectorMatchFillValues
impl Default for VectorMatchFillValues
Source§fn default() -> VectorMatchFillValues
fn default() -> VectorMatchFillValues
Returns the “default value” for a type. Read more
Source§impl PartialEq for VectorMatchFillValues
impl PartialEq for VectorMatchFillValues
Source§fn eq(&self, other: &VectorMatchFillValues) -> bool
fn eq(&self, other: &VectorMatchFillValues) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VectorMatchFillValues
Auto Trait Implementations§
impl Freeze for VectorMatchFillValues
impl RefUnwindSafe for VectorMatchFillValues
impl Send for VectorMatchFillValues
impl Sync for VectorMatchFillValues
impl Unpin for VectorMatchFillValues
impl UnsafeUnpin for VectorMatchFillValues
impl UnwindSafe for VectorMatchFillValues
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