[][src]Struct irc_rust::params::Params

pub struct Params<'a> {
    pub trailing: Option<&'a str>,
    // some fields omitted
}

Parameter list with an optional trailing message.

Fields

trailing: Option<&'a str>

Methods

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

pub fn new(raw: &'a str) -> Params<'a>[src]

Create a new Parameter list from the given string. Expects the string to be a valid parameter list.

pub fn iter(&self) -> impl Iterator<Item = &'a str>[src]

Create an iterator over the parameter list excluding the trailing parameter.

Trait Implementations

impl<'a> ToString for Params<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Params<'a>

impl<'a> Send for Params<'a>

impl<'a> Sync for Params<'a>

impl<'a> Unpin for Params<'a>

impl<'a> UnwindSafe for Params<'a>

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.