pub struct iter<T>;
Expand description

An iterator over plugins registered of a given type.

The value inventory::iter::<T> is an iterator with element type &'static T.

There is no guarantee about the order that plugins of the same type are visited by the iterator. They may be visited in any order.

Examples

use my_flags::Flag;

fn main() {
    for flag in inventory::iter::<Flag> {
        println!("-{}, --{}", flag.short, flag.name);
    }
}

Refer to the crate level documentation for a complete example of instantiating a plugin registry and submitting plugins.

Trait Implementations

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.