[][src]Struct wallabag_api::types::TagString

pub struct TagString { /* fields omitted */ }

Represents a valid tag name for tags when sent to the API as a comma separated string. (eg. "tag1,tag2") Only client methods that need to format a list of tags in this way will use this.

Methods

impl TagString[src]

pub fn try_from<T: Into<String>>(label: T) -> Result<Self, TagStringError>[src]

Create a new tag label, guaranteed to be a valid tag label. Returns None if invalid tag label.

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

Get a reference to the tag label.

pub fn into_string(self) -> String[src]

Consume the tag and convert into a plain String.

Trait Implementations

impl Debug for TagString[src]

impl Display for TagString[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.