Struct syntax::util::ThinVec
[−]
[src]
pub struct ThinVec<T>(_);
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A vector type optimized for cases where this size is usually 0 (c.f. SmallVector
).
The Option<Box<..>>
wrapping allows us to represent a zero sized vector with None
,
which uses only a single (null) pointer.
Methods
impl<T> ThinVec<T>
[src]
pub fn new() -> Self
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Trait Implementations
impl<T: Clone> Clone for ThinVec<T>
[src]
fn clone(&self) -> ThinVec<T>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T: PartialEq> PartialEq for ThinVec<T>
[src]
fn eq(&self, __arg_0: &ThinVec<T>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ThinVec<T>) -> bool
[src]
This method tests for !=
.
impl<T: Eq> Eq for ThinVec<T>
[src]
impl<T: Encodable> Encodable for ThinVec<T>
[src]
fn encode<__ST: Encoder>(&self, __arg_0: &mut __ST) -> Result<(), __ST::Error>
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl<T: Decodable> Decodable for ThinVec<T>
[src]
fn decode<__DT: Decoder>(__arg_0: &mut __DT) -> Result<ThinVec<T>, __DT::Error>
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl<T: Hash> Hash for ThinVec<T>
[src]
fn hash<__HT: Hasher>(&self, __arg_0: &mut __HT)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<T: Debug> Debug for ThinVec<T>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<T> From<Vec<T>> for ThinVec<T>
[src]
impl<T> Into<Vec<T>> for ThinVec<T>
[src]
impl<T> Extend<T> for ThinVec<T>
[src]
fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)
[src]
Extends a collection with the contents of an iterator. Read more
impl HasAttrs for ThinVec<Attribute>
[src]
fn attrs(&self) -> &[Attribute]
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
fn map_attrs<F: FnOnce(Vec<Attribute>) -> Vec<Attribute>>(self, f: F) -> Self
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?