Trait nom::lib::std::iter::Extend1.0.0[][src]

pub trait Extend<A> {
    pub fn extend<T>(&mut self, iter: T)
    where
        T: IntoIterator<Item = A>
; pub fn extend_one(&mut self, item: A) { ... }
pub fn extend_reserve(&mut self, additional: usize) { ... } }
[]

Extend a collection with the contents of an iterator.

Iterators produce a series of values, and collections can also be thought of as a series of values. The Extend trait bridges this gap, allowing you to extend a collection by including the contents of that iterator. When extending a collection with an already existing key, that entry is updated or, in the case of collections that permit multiple entries with equal keys, that entry is inserted.

Examples

Basic usage:

// You can extend a String with some chars:
let mut message = String::from("The first three letters are: ");

message.extend(&['a', 'b', 'c']);

assert_eq!("abc", &message[29..32]);

Implementing Extend:

// A sample collection, that's just a wrapper over Vec<T>
#[derive(Debug)]
struct MyCollection(Vec<i32>);

// Let's give it some methods so we can create one and add things
// to it.
impl MyCollection {
    fn new() -> MyCollection {
        MyCollection(Vec::new())
    }

    fn add(&mut self, elem: i32) {
        self.0.push(elem);
    }
}

// since MyCollection has a list of i32s, we implement Extend for i32
impl Extend<i32> for MyCollection {

    // This is a bit simpler with the concrete type signature: we can call
    // extend on anything which can be turned into an Iterator which gives
    // us i32s. Because we need i32s to put into MyCollection.
    fn extend<T: IntoIterator<Item=i32>>(&mut self, iter: T) {

        // The implementation is very straightforward: loop through the
        // iterator, and add() each element to ourselves.
        for elem in iter {
            self.add(elem);
        }
    }
}

let mut c = MyCollection::new();

c.add(5);
c.add(6);
c.add(7);

// let's extend our collection with three more numbers
c.extend(vec![1, 2, 3]);

// we've added these elements onto the end
assert_eq!("MyCollection([5, 6, 7, 1, 2, 3])", format!("{:?}", c));

Required methods

pub fn extend<T>(&mut self, iter: T) where
    T: IntoIterator<Item = A>, 
[src][]

Extends a collection with the contents of an iterator.

As this is the only required method for this trait, the trait-level docs contain more details.

Examples

Basic usage:

// You can extend a String with some chars:
let mut message = String::from("abc");

message.extend(['d', 'e', 'f'].iter());

assert_eq!("abcdef", &message);

Provided methods

pub fn extend_one(&mut self, item: A)[src][]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

pub fn extend_reserve(&mut self, additional: usize)[src][]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements.

The default implementation does nothing.

Implementations on Foreign Types

impl<'a> Extend<Cow<'a, OsStr>> for OsString[src][]

impl Extend<OsString> for OsString[src][]

impl<'a> Extend<&'a OsStr> for OsString[src][]

impl<P> Extend<P> for PathBuf where
    P: AsRef<Path>, 
[src][]

impl Extend<()> for ()[src][]

Implementors

impl Extend<char> for String[src][+]

impl Extend<Box<str, Global>> for String1.45.0[src][+]

impl Extend<String> for String1.4.0[src][+]

impl<'a> Extend<&'a char> for String1.2.0[src][+]

impl<'a> Extend<&'a str> for String[src][+]

impl<'a> Extend<Cow<'a, str>> for String1.19.0[src][+]

impl<'a, K, V> Extend<(&'a K, &'a V)> for BTreeMap<K, V> where
    K: Ord + Copy,
    V: Copy
1.2.0[src][+]

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for HashMap<K, V, S> where
    K: Eq + Hash + Copy,
    S: BuildHasher,
    V: Copy
1.4.0[src][+]

impl<'a, T> Extend<&'a T> for BTreeSet<T> where
    T: 'a + Ord + Copy
1.2.0[src][+]

impl<'a, T> Extend<&'a T> for BinaryHeap<T> where
    T: 'a + Ord + Copy
1.2.0[src][+]

impl<'a, T> Extend<&'a T> for LinkedList<T> where
    T: 'a + Copy
1.2.0[src][+]

impl<'a, T> Extend<&'a T> for VecDeque<T> where
    T: 'a + Copy
1.2.0[src][+]

impl<'a, T, A> Extend<&'a T> for Vec<T, A> where
    T: 'a + Copy,
    A: 'a + Allocator
1.2.0[src][+]

Extend implementation that copies elements out of references before pushing them onto the Vec.

This implementation is specialized for slice iterators, where it uses copy_from_slice to append the entire slice at once.

impl<'a, T, S> Extend<&'a T> for HashSet<T, S> where
    T: 'a + Eq + Hash + Copy,
    S: BuildHasher
1.4.0[src][+]

impl<A> Extend<A> for VecDeque<A>[src][+]

impl<K, V> Extend<(K, V)> for BTreeMap<K, V> where
    K: Ord
[src][+]

impl<K, V, S> Extend<(K, V)> for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src][+]

Inserts all new key-values from the iterator and replaces values with existing keys with new values returned from the iterator.

impl<T> Extend<T> for BTreeSet<T> where
    T: Ord
[src][+]

impl<T> Extend<T> for BinaryHeap<T> where
    T: Ord
[src][+]

impl<T> Extend<T> for LinkedList<T>[src][+]

impl<T, A> Extend<T> for Vec<T, A> where
    A: Allocator
[src][+]

impl<T, S> Extend<T> for HashSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher
[src][+]

impl<K, V, S> Extend<(K, V)> for AHashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for AHashMap<K, V, S> where
    K: Eq + Hash + Copy + 'a,
    V: Copy + 'a,
    S: BuildHasher

impl<T, S> Extend<T> for AHashSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher

impl<'a, T, S> Extend<&'a T> for AHashSet<T, S> where
    T: 'a + Eq + Hash + Copy,
    S: BuildHasher

impl<A: Array> Extend<<A as Array>::Item> for ArrayVec<A>

impl Extend<u8> for BytesMut

impl<'a> Extend<&'a u8> for BytesMut

impl Extend<FeatureGate> for FeatureGate

impl<K: Eq + Hash, S: BuildHasher + Clone> Extend<K> for DashSet<K, S>

impl<K: Eq + Hash, V, S: BuildHasher + Clone> Extend<(K, V)> for DashMap<K, V, S>

impl<L, R, A> Extend<A> for Either<L, R> where
    L: Extend<A>,
    R: Extend<A>, 

impl<Fut: Future> Extend<Fut> for FuturesOrdered<Fut>

impl<Fut> Extend<Fut> for FuturesUnordered<Fut>

impl<St: Stream + Unpin> Extend<St> for SelectAll<St>

impl<T> Extend<(Option<HeaderName>, T)> for HeaderMap<T>

impl<T> Extend<(HeaderName, T)> for HeaderMap<T>

impl<T, S> Extend<T> for IndexSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher

impl<'a, T, S> Extend<&'a T> for IndexSet<T, S> where
    T: Hash + Eq + Copy + 'a,
    S: BuildHasher

impl<K, V, S> Extend<(K, V)> for IndexMap<K, V, S> where
    K: Hash + Eq,
    S: BuildHasher

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for IndexMap<K, V, S> where
    K: Hash + Eq + Copy,
    V: Copy,
    S: BuildHasher

impl Extend<EventMask> for EventMask

impl Extend<WatchMask> for WatchMask

impl<K: Hash + Eq, V, S: BuildHasher> Extend<(K, V)> for LinkedHashMap<K, V, S>

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for LinkedHashMap<K, V, S> where
    K: 'a + Hash + Eq + Copy,
    V: 'a + Copy,
    S: BuildHasher

impl<T, S> Extend<T> for LinkedHashSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher

impl<'a, T, S> Extend<&'a T> for LinkedHashSet<T, S> where
    T: 'a + Eq + Hash + Copy,
    S: BuildHasher

impl Extend<AtFlags> for AtFlags

impl Extend<OFlag> for OFlag

impl Extend<SealFlag> for SealFlag

impl Extend<FdFlag> for FdFlag

impl Extend<SpliceFFlags> for SpliceFFlags

impl Extend<FallocateFlags> for FallocateFlags

impl Extend<ModuleInitFlags> for ModuleInitFlags

impl Extend<DeleteModuleFlags> for DeleteModuleFlags

impl Extend<MsFlags> for MsFlags

impl Extend<MntFlags> for MntFlags

impl Extend<MQ_OFlag> for MQ_OFlag

impl Extend<FdFlag> for FdFlag

impl Extend<InterfaceFlags> for InterfaceFlags

impl Extend<PollFlags> for PollFlags

impl Extend<CloneFlags> for CloneFlags

impl Extend<EpollFlags> for EpollFlags

impl Extend<EpollCreateFlags> for EpollCreateFlags

impl Extend<EfdFlags> for EfdFlags

impl Extend<MemFdCreateFlag> for MemFdCreateFlag

impl Extend<ProtFlags> for ProtFlags

impl Extend<MapFlags> for MapFlags

impl Extend<MsFlags> for MsFlags

impl Extend<MlockAllFlags> for MlockAllFlags

impl Extend<Options> for Options

impl Extend<QuotaValidFlags> for QuotaValidFlags

impl Extend<SaFlags> for SaFlags

impl Extend<SfdFlags> for SfdFlags

impl Extend<SockFlag> for SockFlag

impl Extend<MsgFlags> for MsgFlags

impl Extend<SFlag> for SFlag

impl Extend<Mode> for Mode

impl Extend<FsFlags> for FsFlags

impl Extend<InputFlags> for InputFlags

impl Extend<OutputFlags> for OutputFlags

impl Extend<ControlFlags> for ControlFlags

impl Extend<LocalFlags> for LocalFlags

impl Extend<WaitPidFlag> for WaitPidFlag

impl Extend<AddWatchFlags> for AddWatchFlags

impl Extend<InitFlags> for InitFlags

impl Extend<TimerFlags> for TimerFlags

impl Extend<TimerSetTimeFlags> for TimerSetTimeFlags

impl Extend<AccessFlags> for AccessFlags

impl Extend<Op> for Op

impl Extend<CMSOptions> for CMSOptions

impl Extend<OcspFlag> for OcspFlag

impl Extend<Pkcs7Flags> for Pkcs7Flags

impl Extend<SslOptions> for SslOptions

impl Extend<SslMode> for SslMode

impl Extend<SslVerifyMode> for SslVerifyMode

impl Extend<SslSessionCacheMode> for SslSessionCacheMode

impl Extend<ExtensionContext> for ExtensionContext

impl Extend<ShutdownState> for ShutdownState

impl Extend<X509CheckFlags> for X509CheckFlags

impl Extend<TokenTree> for TokenStream

impl Extend<TokenStream> for TokenStream

impl Extend<NFSServerCaps> for NFSServerCaps

impl Extend<StatFlags> for StatFlags

impl Extend<CoredumpFlags> for CoredumpFlags

impl Extend<FDPermissions> for FDPermissions

impl Extend<PeerTicks> for PeerTicks

impl Extend<ProposalContext> for ProposalContext

impl Extend<(String, Value)> for Map<String, Value>

impl<A: Array> Extend<<A as Array>::Item> for SmallVec<A>

impl<S> Extend<S> for StrStack where
    S: AsRef<str>, 

impl<T, P> Extend<T> for Punctuated<T, P> where
    P: Default

impl<T, P> Extend<Pair<T, P>> for Punctuated<T, P>

impl Extend<Error> for Error

impl Extend<FieldTypeFlag> for FieldTypeFlag

impl Extend<WeekMode> for WeekMode

impl Extend<Flags> for Flags

impl Extend<SqlMode> for SqlMode

impl Extend<Flag> for Flag

impl Extend<u8> for BufferVec

impl<'a> Extend<&'a u8> for BufferVec

impl<'a> Extend<u8> for WithConcatExtend<'a>

impl<'a, 'b> Extend<&'a u8> for WithConcatExtend<'b>

impl Extend<(String, Value)> for Map<String, Value>

impl Extend<WriteBatchFlags> for WriteBatchFlags

impl<V> Extend<(usize, V)> for VecMap<V>

impl<'a, V: Copy> Extend<(usize, &'a V)> for VecMap<V>

impl<'a> Extend<(&'a str, &'a str)> for Namespace

impl<'a> Extend<(&'a str, &'a str)> for NamespaceStack

impl<'a, 'b> Extend<(&'b str, &'b str)> for CheckedTarget<'a>