[][src]Struct irc3::proto::message::Tag

pub struct Tag { /* fields omitted */ }

A single IRC3 tag.

The [vendor] field of Tag is used to namespace tags. This allows to differentiate between two equally named tags.

Methods

impl Tag[src]

pub fn new(key: &str, value: Option<&str>) -> Tag[src]

pub fn new_with_vendor(
    key: &str,
    value: Option<&str>,
    vendor: Option<&str>
) -> Tag
[src]

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

pub fn vendor(&self) -> Option<&str>[src]

pub fn value(&self) -> Option<&str>[src]

pub fn set_key(&mut self, key: &str)[src]

pub fn set_vendor(&mut self, vendor: &str)[src]

pub fn set_value(&mut self, value: &str)[src]

Trait Implementations

impl Debug for Tag[src]

impl Display for Tag[src]

impl PartialEq<Tag> for Tag[src]

impl StructuralPartialEq for Tag[src]

Auto Trait Implementations

impl RefUnwindSafe for Tag

impl Send for Tag

impl Sync for Tag

impl Unpin for Tag

impl UnwindSafe for Tag

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.