[][src]Struct hdrhistogram::serialization::interval_log::Tag

pub struct Tag<'a>(_);

A tag for an interval histogram.

Tags are just strs that do not contain a few disallowed characters: ',', '\r', '\n', and ' '.

To get the wrapped str back out, use as_str() or the Deref<str> implementation (&some_tag).

Methods

impl<'a> Tag<'a>[src]

pub fn new(s: &'a str) -> Option<Tag<'a>>[src]

Create a new Tag.

If a disallowed character is present, this will return None.

pub fn as_str(&self) -> &'a str[src]

Returns the tag contents as a str.

Trait Implementations

impl<'a> PartialEq<Tag<'a>> for Tag<'a>[src]

impl<'a> Copy for Tag<'a>[src]

impl<'a> Clone for Tag<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Deref for Tag<'a>[src]

type Target = str

The resulting type after dereferencing.

impl<'a> Debug for Tag<'a>[src]

Auto Trait Implementations

impl<'a> Send for Tag<'a>

impl<'a> Sync for Tag<'a>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]