[][src]Enum irc_proto::prefix::Prefix

pub enum Prefix {
    ServerName(String),
    Nickname(StringStringString),
}

The Prefix indicates "the true origin of the message", according to the server.

Variants

ServerName(String)

servername, e.g. collins.mozilla.org

Nickname(StringStringString)

nickname [ ["!" username] "@" hostname ] i.e. Nickname(nickname, username, hostname) Any of the strings may be ""

Implementations

impl Prefix[src]

pub fn new_from_str(s: &str) -> Prefix[src]

Creates a prefix by parsing a string.

Example

Prefix::new_from_str("nickname!username@hostname");
Prefix::new_from_str("example.com");

Trait Implementations

impl Clone for Prefix[src]

impl Debug for Prefix[src]

impl Display for Prefix[src]

This is isomorphic with FromStr

impl Eq for Prefix[src]

impl<'a> From<&'a str> for Prefix[src]

impl FromStr for Prefix[src]

This implementation never returns an error and is isomorphic with Display.

type Err = ()

The associated error which can be returned from parsing.

impl PartialEq<Prefix> for Prefix[src]

impl StructuralEq for Prefix[src]

impl StructuralPartialEq for Prefix[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.