1.0.0[−][src]Trait std::ops::Index
Used for indexing operations (container[index]) in immutable contexts.
container[index] is actually syntactic sugar for *container.index(index),
but only when used as an immutable value. If a mutable value is requested,
IndexMut is used instead. This allows nice things such as
let value = v[index] if the type of value implements Copy.
Examples
The following example implements Index on a read-only NucleotideCount
container, enabling individual counts to be retrieved with index syntax.
use std::ops::Index; enum Nucleotide { A, C, G, T, } struct NucleotideCount { a: usize, c: usize, g: usize, t: usize, } impl Index<Nucleotide> for NucleotideCount { type Output = usize; fn index(&self, nucleotide: Nucleotide) -> &usize { match nucleotide { Nucleotide::A => &self.a, Nucleotide::C => &self.c, Nucleotide::G => &self.g, Nucleotide::T => &self.t, } } } let nucleotide_count = NucleotideCount {a: 14, c: 9, g: 10, t: 12}; assert_eq!(nucleotide_count[Nucleotide::A], 14); assert_eq!(nucleotide_count[Nucleotide::C], 9); assert_eq!(nucleotide_count[Nucleotide::G], 10); assert_eq!(nucleotide_count[Nucleotide::T], 12);Run
Associated Types
Required Methods
Implementors
impl Index<Range<usize>> for str[src]
impl Index<Range<usize>> for strImplements substring slicing with syntax &self[begin .. end].
Returns a slice of the given string from the byte range
[begin..end).
This operation is O(1).
Panics
Panics if begin or end does not point to the starting
byte offset of a character (as defined by is_char_boundary).
Requires that begin <= end and end <= len where len is the
length of the string.
Examples
let s = "Löwe 老虎 Léopard"; assert_eq!(&s[0 .. 1], "L"); assert_eq!(&s[1 .. 9], "öwe 老"); // these will panic: // byte 2 lies within `ö`: // &s[2 ..3]; // byte 8 lies within `老` // &s[1 .. 8]; // byte 100 is outside the string // &s[3 .. 100];Run
impl Index<Range<usize>> for String[src]
impl Index<Range<usize>> for Stringimpl Index<RangeFrom<usize>> for str[src]
impl Index<RangeFrom<usize>> for strImplements substring slicing with syntax &self[begin ..].
Returns a slice of the string from byte offset begin
to the end of the string.
Equivalent to &self[begin .. len].
impl Index<RangeFrom<usize>> for String[src]
impl Index<RangeFrom<usize>> for Stringimpl Index<RangeFull> for str[src]
impl Index<RangeFull> for strImplements substring slicing with syntax &self[..].
Returns a slice of the whole string. This operation can never panic.
Equivalent to &self[0 .. len].
impl Index<RangeFull> for CString[src]
impl Index<RangeFull> for CStringimpl Index<RangeFull> for OsString[src]
impl Index<RangeFull> for OsStringimpl Index<RangeFull> for String[src]
impl Index<RangeFull> for Stringimpl Index<RangeInclusive<usize>> for str[src]
impl Index<RangeInclusive<usize>> for strimpl Index<RangeInclusive<usize>> for String[src]
impl Index<RangeInclusive<usize>> for Stringimpl Index<RangeTo<usize>> for str[src]
impl Index<RangeTo<usize>> for strImplements substring slicing with syntax &self[.. end].
Returns a slice of the string from the beginning to byte offset
end.
Equivalent to &self[0 .. end].
impl Index<RangeTo<usize>> for String[src]
impl Index<RangeTo<usize>> for Stringimpl Index<RangeToInclusive<usize>> for str[src]
impl Index<RangeToInclusive<usize>> for strimpl Index<RangeToInclusive<usize>> for String[src]
impl Index<RangeToInclusive<usize>> for Stringimpl<'a, K, Q, V> Index<&'a Q> for BTreeMap<K, V> where
K: Ord + Borrow<Q>,
Q: Ord + ?Sized, [src]
impl<'a, K, Q, V> Index<&'a Q> for BTreeMap<K, V> where
K: Ord + Borrow<Q>,
Q: Ord + ?Sized, type Output = V
ⓘImportant traits for &'a mut Ifn index(&self, key: &Q) -> &V[src]
fn index(&self, key: &Q) -> &VReturns a reference to the value corresponding to the supplied key.
Panics
Panics if the key is not present in the BTreeMap.
impl<'a, K, Q: ?Sized, V, S> Index<&'a Q> for HashMap<K, V, S> where
K: Eq + Hash + Borrow<Q>,
Q: Eq + Hash,
S: BuildHasher, [src]
impl<'a, K, Q: ?Sized, V, S> Index<&'a Q> for HashMap<K, V, S> where
K: Eq + Hash + Borrow<Q>,
Q: Eq + Hash,
S: BuildHasher, type Output = V
ⓘImportant traits for &'a mut Ifn index(&self, key: &Q) -> &V[src]
fn index(&self, key: &Q) -> &VReturns a reference to the value corresponding to the supplied key.
Panics
Panics if the key is not present in the HashMap.
impl<A> Index<usize> for VecDeque<A>[src]
impl<A> Index<usize> for VecDeque<A>impl<T, I> Index<I> for [T] where
I: SliceIndex<[T]>, [src]
impl<T, I> Index<I> for [T] where
I: SliceIndex<[T]>, type Output = <I as SliceIndex<[T]>>::Output
fn index(&self, index: I) -> &<I as SliceIndex<[T]>>::Output[src]
fn index(&self, index: I) -> &<I as SliceIndex<[T]>>::Outputimpl<T, I> Index<I> for Vec<T> where
I: SliceIndex<[T]>, [src]
impl<T, I> Index<I> for Vec<T> where
I: SliceIndex<[T]>,