1.0.0[−][src]Struct std::ops::RangeFull
An unbounded range (..).
RangeFull is primarily used as a slicing index, its shorthand is ...
It cannot serve as an Iterator because it doesn't have a starting point.
Examples
The .. syntax is a RangeFull:
assert_eq!((..), std::ops::RangeFull);Run
It does not have an IntoIterator implementation, so you can't use it in
a for loop directly. This won't compile:
for i in .. { // ... }Run
Used as a slicing index, RangeFull produces the full array as a slice.
let arr = [0, 1, 2, 3]; assert_eq!(arr[ .. ], [0,1,2,3]); // RangeFull assert_eq!(arr[ ..3], [0,1,2 ]); assert_eq!(arr[1.. ], [ 1,2,3]); assert_eq!(arr[1..3], [ 1,2 ]);Run
Trait Implementations
impl Hash for RangeFull[src]
impl Hash for RangeFullfn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, 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]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<T> RangeBounds<T> for RangeFull where
T: ?Sized, 1.28.0[src]
impl<T> RangeBounds<T> for RangeFull where
T: ?Sized, fn start_bound(&self) -> Bound<&T>[src]
fn start_bound(&self) -> Bound<&T>Start index bound. Read more
fn end_bound(&self) -> Bound<&T>[src]
fn end_bound(&self) -> Bound<&T>End index bound. Read more
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized, [src]
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized, 🔬 This is a nightly-only experimental API. (range_contains #32311)
recently added as per RFC
Returns true if item is contained in the range. Read more
impl Debug for RangeFull[src]
impl Debug for RangeFullfn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Clone for RangeFull[src]
impl Clone for RangeFullfn clone(&self) -> RangeFull[src]
fn clone(&self) -> RangeFullReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl IndexMut<RangeFull> for str1.3.0[src]
impl IndexMut<RangeFull> for strImplements mutable substring slicing with syntax &mut self[..].
Returns a mutable slice of the whole string. This operation can never panic.
Equivalent to &mut self[0 .. len].
fn index_mut(&mut self, _index: RangeFull) -> &mut str[src]
fn index_mut(&mut self, _index: RangeFull) -> &mut strPerforms the mutable indexing (container[index]) operation.
impl 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].
type Output = str
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &str[src]
fn index(&self, _index: RangeFull) -> &strPerforms the indexing (container[index]) operation.
impl Eq for RangeFull[src]
impl Eq for RangeFullimpl PartialEq<RangeFull> for RangeFull[src]
impl PartialEq<RangeFull> for RangeFullfn eq(&self, other: &RangeFull) -> bool[src]
fn eq(&self, other: &RangeFull) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Copy for RangeFull[src]
impl Copy for RangeFullimpl SliceIndex<str> for RangeFull1.20.0[src]
impl SliceIndex<str> for RangeFulltype Output = str
The output type returned by methods.
fn get(self, slice: &str) -> Option<&<RangeFull as SliceIndex<str>>::Output>[src]
fn get(self, slice: &str) -> Option<&<RangeFull as SliceIndex<str>>::Output>slice_index_methods)Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <RangeFull as SliceIndex<str>>::Output>[src]
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <RangeFull as SliceIndex<str>>::Output>slice_index_methods)Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(
self,
slice: &str
) -> &<RangeFull as SliceIndex<str>>::Output[src]
unsafe fn get_unchecked(
self,
slice: &str
) -> &<RangeFull as SliceIndex<str>>::Outputslice_index_methods)Returns a shared reference to the output at this location, without performing any bounds checking. Read more
unsafe fn get_unchecked_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Output[src]
unsafe fn get_unchecked_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Outputslice_index_methods)Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &str) -> &<RangeFull as SliceIndex<str>>::Output[src]
fn index(self, slice: &str) -> &<RangeFull as SliceIndex<str>>::Outputslice_index_methods)Returns a shared reference to the output at this location, panicking if out of bounds. Read more
fn index_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Output[src]
fn index_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Outputslice_index_methods)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl<T> SliceIndex<[T]> for RangeFull1.15.0[src]
impl<T> SliceIndex<[T]> for RangeFulltype Output = [T]
The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&[T]>[src]
fn get(self, slice: &[T]) -> Option<&[T]>slice_index_methods)Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>[src]
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>slice_index_methods)Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: &[T]) -> &[T][src]
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]slice_index_methods)Returns a shared reference to the output at this location, without performing any bounds checking. Read more
unsafe fn get_unchecked_mut(self, slice: &mut [T]) -> &mut [T][src]
unsafe fn get_unchecked_mut(self, slice: &mut [T]) -> &mut [T]slice_index_methods)Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &[T]) -> &[T][src]
fn index(self, slice: &[T]) -> &[T]slice_index_methods)Returns a shared reference to the output at this location, panicking if out of bounds. Read more
fn index_mut(self, slice: &mut [T]) -> &mut [T][src]
fn index_mut(self, slice: &mut [T]) -> &mut [T]slice_index_methods)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl IndexMut<RangeFull> for String1.3.0[src]
impl IndexMut<RangeFull> for Stringfn index_mut(&mut self, _index: RangeFull) -> &mut str[src]
fn index_mut(&mut self, _index: RangeFull) -> &mut strPerforms the mutable indexing (container[index]) operation.
impl Index<RangeFull> for String[src]
impl Index<RangeFull> for Stringtype Output = str
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &str[src]
fn index(&self, _index: RangeFull) -> &strPerforms the indexing (container[index]) operation.
impl Index<RangeFull> for CString1.7.0[src]
impl Index<RangeFull> for CStringtype Output = CStr
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &CStr[src]
fn index(&self, _index: RangeFull) -> &CStrPerforms the indexing (container[index]) operation.
impl Index<RangeFull> for OsString[src]
impl Index<RangeFull> for OsStringAuto Trait Implementations
Blanket Implementations
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>Performs the conversion.
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>Performs the conversion.
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id #27745)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more