1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! [AnyVec] operations.
//!
//! You don't need, nor can't construct anything from this module manually.
//!
//! [AnyVec]: crate::AnyVec
pub
pub
pub
pub
pub
pub use TempValue;
pub use Iter;
use crateAnyVecPtr;
/// Lazily `pop` on consumption/drop.
///
/// This is created by [`AnyVec::pop`].
///
/// [`AnyVec::pop`]: crate::AnyVec::pop
pub type Pop<'a, Traits, M> = ;
/// Lazily `remove` element on consumption/drop.
///
/// This is created by [`AnyVec::remove`].
///
/// [`AnyVec::remove`]: crate::AnyVec::remove
pub type Remove<'a, Traits, M> = ;
/// Lazily `swap_remove` element on consumption/drop.
///
/// This is created by [`AnyVec::swap_remove`].
///
/// [`AnyVec::swap_remove`]: crate::AnyVec::swap_remove
pub type SwapRemove<'a, Traits, M> = ;
/// A draining [`ElementIterator`] for [`AnyVec`]. Return items as [`Element`]s.
///
/// This is created by [`AnyVec::drain`].
///
/// [`AnyVec`]: crate::AnyVec
/// [`AnyVec::drain`]: crate::AnyVec::drain
/// [`Element`]: crate::element::Element
/// [`ElementIterator`]: crate::iter::ElementIterator
pub type Drain<'a, Traits, M> = ;
/// A splicing [`ElementIterator`] for [`AnyVec`]. Return items as [`Element`]s.
///
/// This is created by [`AnyVec::splice`].
///
/// [`AnyVec`]: crate::AnyVec
/// [`AnyVec::splice`]: crate::AnyVec::splice
/// [`Element`]: crate::element::Element
/// [`ElementIterator`]: crate::iter::ElementIterator
pub type Splice<'a, Traits, M, I> = ;