Struct relay_sampling::evaluation::MatchedRuleIds
source · pub struct MatchedRuleIds(pub Vec<RuleId>);
Expand description
Represents a list of rule ids which is used for outcomes.
Tuple Fields§
§0: Vec<RuleId>
Implementations§
source§impl MatchedRuleIds
impl MatchedRuleIds
sourcepub fn parse(value: &str) -> Result<MatchedRuleIds, ParseIntError>
pub fn parse(value: &str) -> Result<MatchedRuleIds, ParseIntError>
Parses MatchedRuleIds
from a string with concatenated rule identifiers.
The format it parses from is:
rule_id_1,rule_id_2,...
Trait Implementations§
source§impl Clone for MatchedRuleIds
impl Clone for MatchedRuleIds
source§fn clone(&self) -> MatchedRuleIds
fn clone(&self) -> MatchedRuleIds
Returns a copy 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 MatchedRuleIds
impl Debug for MatchedRuleIds
source§impl Display for MatchedRuleIds
impl Display for MatchedRuleIds
source§impl Hash for MatchedRuleIds
impl Hash for MatchedRuleIds
source§impl PartialEq for MatchedRuleIds
impl PartialEq for MatchedRuleIds
source§impl Serialize for MatchedRuleIds
impl Serialize for MatchedRuleIds
impl Eq for MatchedRuleIds
impl StructuralPartialEq for MatchedRuleIds
Auto Trait Implementations§
impl Freeze for MatchedRuleIds
impl RefUnwindSafe for MatchedRuleIds
impl Send for MatchedRuleIds
impl Sync for MatchedRuleIds
impl Unpin for MatchedRuleIds
impl UnwindSafe for MatchedRuleIds
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.