Struct sgx_tstd::ops::RangeFull 1.0.0[−][src]
pub struct 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);
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 .. { // ... }
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 ]);
Trait Implementations
impl Clone for RangeFull
[src]
impl Clone for RangeFull
fn clone(&self) -> RangeFull
[src]
fn clone(&self) -> RangeFull
Returns 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 str
1.3.0[src]
impl IndexMut<RangeFull> for str
Implements 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 str
Performs the mutable indexing (container[index]
) operation.
impl Eq for RangeFull
[src]
impl Eq for RangeFull
impl Hash for RangeFull
[src]
impl Hash for RangeFull
fn 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 Debug for RangeFull
[src]
impl Debug for RangeFull
fn 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<T> SliceIndex<[T]> for RangeFull
1.15.0[src]
impl<T> SliceIndex<[T]> for RangeFull
type 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 SliceIndex<str> for RangeFull
1.20.0[src]
impl SliceIndex<str> for RangeFull
type 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>>::Output
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 str
) -> &mut <RangeFull as SliceIndex<str>>::Output
[src]
unsafe fn get_unchecked_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Output
slice_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>>::Output
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 str
) -> &mut <RangeFull as SliceIndex<str>>::Output
[src]
fn index_mut(
self,
slice: &mut str
) -> &mut <RangeFull as SliceIndex<str>>::Output
slice_index_methods
)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl Index<RangeFull> for str
[src]
impl Index<RangeFull> for str
Implements 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) -> &str
Performs the indexing (container[index]
) operation.
impl PartialEq<RangeFull> for RangeFull
[src]
impl PartialEq<RangeFull> for RangeFull
fn eq(&self, other: &RangeFull) -> bool
[src]
fn eq(&self, other: &RangeFull) -> bool
This 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) -> bool
This method tests for !=
.
impl Copy for RangeFull
[src]
impl Copy for RangeFull
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
)
recently added as per RFC
Returns true
if item
is contained in the range. Read more
impl Index<RangeFull> for String
[src]
impl Index<RangeFull> for String
type Output = str
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &str
[src]
fn index(&self, _index: RangeFull) -> &str
Performs the indexing (container[index]
) operation.
impl IndexMut<RangeFull> for String
1.3.0[src]
impl IndexMut<RangeFull> for String
fn index_mut(&mut self, _index: RangeFull) -> &mut str
[src]
fn index_mut(&mut self, _index: RangeFull) -> &mut str
Performs the mutable indexing (container[index]
) operation.
impl Index<RangeFull> for CString
[src]
impl Index<RangeFull> for CString
type Output = CStr
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &CStr
[src]
fn index(&self, _index: RangeFull) -> &CStr
Performs the indexing (container[index]
) operation.
impl Index<RangeFull> for OsString
[src]
impl Index<RangeFull> for OsString