pub struct CaseParameter {
pub key: String,
pub value: String,
}Expand description
Generic key/value parameter descriptor used by experiment cases.
Fields§
§key: String§value: StringImplementations§
Trait Implementations§
Source§impl Clone for CaseParameter
impl Clone for CaseParameter
Source§fn clone(&self) -> CaseParameter
fn clone(&self) -> CaseParameter
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 CaseParameter
impl Debug for CaseParameter
Source§impl Display for CaseParameter
impl Display for CaseParameter
Source§impl PartialEq for CaseParameter
impl PartialEq for CaseParameter
Source§fn eq(&self, other: &CaseParameter) -> bool
fn eq(&self, other: &CaseParameter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CaseParameter
impl StructuralPartialEq for CaseParameter
Auto Trait Implementations§
impl Freeze for CaseParameter
impl RefUnwindSafe for CaseParameter
impl Send for CaseParameter
impl Sync for CaseParameter
impl Unpin for CaseParameter
impl UnsafeUnpin for CaseParameter
impl UnwindSafe for CaseParameter
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