Struct vte::Params[][src]

pub struct Params { /* fields omitted */ }

Implementations

impl Params[src]

pub fn len(&self) -> usize[src]

Returns the number of parameters.

pub fn is_empty(&self) -> bool[src]

Returns true if there are no parameters present.

pub fn iter(&self) -> ParamsIter<'_>

Notable traits for ParamsIter<'a>

impl<'a> Iterator for ParamsIter<'a> type Item = &'a [u16];
[src]

Returns an iterator over all parameters and subparameters.

Trait Implementations

impl Debug for Params[src]

impl Default for Params[src]

impl<'a> IntoIterator for &'a Params[src]

type IntoIter = ParamsIter<'a>

Which kind of iterator are we turning this into?

type Item = &'a [u16]

The type of the elements being iterated over.

Auto Trait Implementations

impl Send for Params

impl Sync for Params

impl Unpin for Params

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, 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.