Struct saphir::RequestAddonCollection[][src]

pub struct RequestAddonCollection { /* fields omitted */ }

A convenience class to contains RequestParams

Methods

impl RequestAddonCollection
[src]

Retrieve a Ref of a param by its name

Retrieve a RefMut of a param by its name

Add a RequestAddon to the collection

Remove a RequestAddon from the collection

Trait Implementations

impl Debug for RequestAddonCollection
[src]

Formats the value using the given formatter. Read more

impl Index<usize> for RequestAddonCollection
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl IndexMut<usize> for RequestAddonCollection
[src]

Performs the mutable indexing (container[index]) operation.

impl<'a> IntoIterator for &'a mut RequestAddonCollection
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl IntoIterator for RequestAddonCollection
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations