pub struct CampaignReach {
pub gauge: GaugeRef,
pub at_least: bool,
pub threshold: String,
pub unit: Option<String>,
pub span: SourceSpan,
}Expand description
reach <gauge> at least 0.9 / reach std.latency at most 800ms.
Fields§
§gauge: GaugeRef§at_least: bool§threshold: String§unit: Option<String>Optional trailing unit ident (ms, s); recorded verbatim.
span: SourceSpanTrait Implementations§
Source§impl Clone for CampaignReach
impl Clone for CampaignReach
Source§fn clone(&self) -> CampaignReach
fn clone(&self) -> CampaignReach
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 CampaignReach
impl Debug for CampaignReach
impl Eq for CampaignReach
Source§impl PartialEq for CampaignReach
impl PartialEq for CampaignReach
impl StructuralPartialEq for CampaignReach
Auto Trait Implementations§
impl Freeze for CampaignReach
impl RefUnwindSafe for CampaignReach
impl Send for CampaignReach
impl Sync for CampaignReach
impl Unpin for CampaignReach
impl UnsafeUnpin for CampaignReach
impl UnwindSafe for CampaignReach
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