#[lang = "clone"] pub trait Clone { #[must_use = "cloning is often expensive and is not expected to have side effects"] fn clone(&self) -> Self; fn clone_from(&mut self, source: &Self) { ... } }
A common trait for the ability to explicitly duplicate an object.
Differs from Copy
in that Copy
is implicit and extremely inexpensive, while Clone
is always explicit and may or may not be expensive. In order to enforce these characteristics, Rust does not allow you to reimplement Copy
, but you may reimplement Clone
and run arbitrary code.
Since Clone
is more general than Copy
, you can automatically make anything Copy
be Clone
as well.
This trait can be used with #[derive]
if all fields are Clone
. The derive
d implementation of clone
calls clone
on each field.
For a generic struct, #[derive]
implements Clone
conditionally by adding bound Clone
on generic parameters.
// `derive` implements Clone for Reading<T> when T is Clone. #[derive(Clone)] struct Reading<T> { frequency: T, }
Clone
?Types that are Copy
should have a trivial implementation of Clone
. More formally: if T: Copy
, x: T
, and y: &T
, then let x = y.clone();
is equivalent to let x = *y;
. Manual implementations should be careful to uphold this invariant; however, unsafe code must not rely on it to ensure memory safety.
An example is a generic struct holding a function pointer. In this case, the implementation of Clone
cannot be derive
d, but can be implemented as:
struct Generate<T>(fn() -> T); impl<T> Copy for Generate<T> {} impl<T> Clone for Generate<T> { fn clone(&self) -> Self { *self } }
In addition to the implementors listed below, the following types also implement Clone
:
fn() -> i32
)Clone
(e.g., [i32; 123456]
)Clone
(e.g., ()
, (i32, bool)
)Clone
themselves. Note that variables captured by shared reference always implement Clone
(even if the referent doesn't), while variables captured by mutable reference never implement Clone
.#[must_use = "cloning is often expensive and is not expected to have side effects"]
fn clone(&self) -> Self
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
.
a.clone_from(&b)
is equivalent to a = b.clone()
in functionality, but can be overridden to reuse the resources of a
to avoid unnecessary allocations.
impl Clone for __m256i
[src]
fn clone(&self) -> __m256i
[src]
impl Clone for __m64
[src]
fn clone(&self) -> __m64
[src]
impl Clone for __m128d
[src]
fn clone(&self) -> __m128d
[src]
impl Clone for CpuidResult
[src]
fn clone(&self) -> CpuidResult
[src]
impl Clone for __m128
[src]
fn clone(&self) -> __m128
[src]
impl Clone for __m512
[src]
fn clone(&self) -> __m512
[src]
impl Clone for __m128i
[src]
fn clone(&self) -> __m128i
[src]
impl Clone for __m256d
[src]
fn clone(&self) -> __m256d
[src]
impl Clone for __m512d
[src]
fn clone(&self) -> __m512d
[src]
impl Clone for __m256
[src]
fn clone(&self) -> __m256
[src]
impl Clone for __m512i
[src]
fn clone(&self) -> __m512i
[src]
impl<'_, T, S> Clone for Difference<'_, T, S>
fn clone(&self) -> Difference<'_, T, S>
impl<'a, T, S> Iterator for Difference<'a, T, S> where S: BuildHasher, T: Eq + Hash, type Item = &'a T;
impl Clone for CollectionAllocErr
fn clone(&self) -> CollectionAllocErr
impl<'_, K> Clone for Iter<'_, K>
fn clone(&self) -> Iter<'_, K>
impl<'_, T, S> Clone for SymmetricDifference<'_, T, S>
fn clone(&self) -> SymmetricDifference<'_, T, S>
impl<'a, T, S> Iterator for SymmetricDifference<'a, T, S> where S: BuildHasher, T: Eq + Hash, type Item = &'a T;
impl<T, S> Clone for HashSet<T, S> where
S: Clone,
T: Clone,
fn clone(&self) -> HashSet<T, S>
impl<'_, K, V> Clone for Iter<'_, K, V>
fn clone(&self) -> Iter<'_, K, V>
impl<'a, K, V> Iterator for Iter<'a, K, V> type Item = (&'a K, &'a V);
impl<'_, K, V> Clone for Values<'_, K, V>
fn clone(&self) -> Values<'_, K, V>
impl<'a, K, V> Iterator for Values<'a, K, V> type Item = &'a V;
impl<'_, K, V> Clone for Keys<'_, K, V>
fn clone(&self) -> Keys<'_, K, V>
impl<'_, T, S> Clone for Intersection<'_, T, S>
fn clone(&self) -> Intersection<'_, T, S>
impl<'a, T, S> Iterator for Intersection<'a, T, S> where S: BuildHasher, T: Eq + Hash, type Item = &'a T;
impl<K, V, S> Clone for HashMap<K, V, S> where
K: Clone,
S: Clone,
V: Clone,
fn clone(&self) -> HashMap<K, V, S>
impl<'_, T, S> Clone for Union<'_, T, S>
fn clone(&self) -> Union<'_, T, S>
impl<'a, T, S> Iterator for Union<'a, T, S> where S: BuildHasher, T: Eq + Hash, type Item = &'a T;
impl Clone for Frame
[src]
fn clone(&self) -> Frame
[src]
impl Clone for TryDemangleError
fn clone(&self) -> TryDemangleError
impl Clone for std::cmp::Ordering
[src]
impl Clone for std::collections::CollectionAllocErr
[src]
fn clone(&self) -> CollectionAllocErr
[src]
impl Clone for Infallible
[src]
fn clone(&self) -> Infallible
[src]
impl Clone for VarError
[src]
impl Clone for ErrorKind
[src]
impl Clone for SeekFrom
[src]
impl Clone for IpAddr
[src]
impl Clone for Ipv6MulticastScope
[src]
fn clone(&self) -> Ipv6MulticastScope
[src]
impl Clone for Shutdown
[src]
impl Clone for std::net::SocketAddr
[src]
fn clone(&self) -> SocketAddr
[src]
impl Clone for FpCategory
[src]
fn clone(&self) -> FpCategory
[src]
impl Clone for IntErrorKind
[src]
fn clone(&self) -> IntErrorKind
[src]
impl Clone for SearchStep
[src]
fn clone(&self) -> SearchStep
[src]
impl Clone for std::sync::atomic::Ordering
[src]
impl Clone for RecvTimeoutError
[src]
fn clone(&self) -> RecvTimeoutError
[src]
impl Clone for TryRecvError
[src]
fn clone(&self) -> TryRecvError
[src]
impl Clone for bool
[src]
impl Clone for char
[src]
impl Clone for f32
[src]
impl Clone for f64
[src]
impl Clone for i128
[src]
impl Clone for i16
[src]
impl Clone for i32
[src]
impl Clone for i64
[src]
impl Clone for i8
[src]
impl Clone for isize
[src]
impl Clone for !
[src]
impl Clone for u128
[src]
impl Clone for u16
[src]
impl Clone for u32
[src]
impl Clone for u64
[src]
impl Clone for u8
[src]
impl Clone for usize
[src]
impl Clone for AllocErr
[src]
impl Clone for CannotReallocInPlace
[src]
fn clone(&self) -> CannotReallocInPlace
[src]
impl Clone for Global
[src]
impl Clone for Layout
[src]
impl Clone for LayoutErr
[src]
impl Clone for System
[src]
impl Clone for TypeId
[src]
impl Clone for TryFromSliceError
[src]
fn clone(&self) -> TryFromSliceError
[src]
impl Clone for Box<str>
[src]
fn clone(&self) -> Box<str>
[src]
impl<I> Iterator for Box<I> where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<F> Future for Box<F> where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<R: Read + ?Sized> Read for Box<R> impl<W: Write + ?Sized> Write for Box<W>
impl Clone for Box<CStr>
[src]
impl Clone for Box<OsStr>
[src]
impl Clone for Box<Path>
[src]
impl Clone for CharTryFromError
[src]
fn clone(&self) -> CharTryFromError
[src]
impl Clone for DecodeUtf16Error
[src]
fn clone(&self) -> DecodeUtf16Error
[src]
impl Clone for std::char::EscapeDebug
[src]
fn clone(&self) -> EscapeDebug
[src]
impl Iterator for EscapeDebug type Item = char;
impl Clone for std::char::EscapeDefault
[src]
fn clone(&self) -> EscapeDefault
[src]
impl Iterator for EscapeDefault type Item = char;
impl Clone for std::char::EscapeUnicode
[src]
fn clone(&self) -> EscapeUnicode
[src]
impl Iterator for EscapeUnicode type Item = char;
impl Clone for ParseCharError
[src]
fn clone(&self) -> ParseCharError
[src]
impl Clone for ToLowercase
[src]
fn clone(&self) -> ToLowercase
[src]
impl Iterator for ToLowercase type Item = char;
impl Clone for ToUppercase
[src]
fn clone(&self) -> ToUppercase
[src]
impl Iterator for ToUppercase type Item = char;
impl Clone for UnicodeVersion
[src]
fn clone(&self) -> UnicodeVersion
[src]
impl Clone for DefaultHasher
[src]
fn clone(&self) -> DefaultHasher
[src]
impl Clone for RandomState
[src]
fn clone(&self) -> RandomState
[src]
impl Clone for CString
[src]
impl Clone for FromBytesWithNulError
[src]
fn clone(&self) -> FromBytesWithNulError
[src]
impl Clone for IntoStringError
[src]
fn clone(&self) -> IntoStringError
[src]
impl Clone for NulError
[src]
impl Clone for OsString
[src]
impl Clone for Error
[src]
impl Clone for FileType
[src]
impl Clone for Metadata
[src]
impl Clone for OpenOptions
[src]
fn clone(&self) -> OpenOptions
[src]
impl Clone for Permissions
[src]
fn clone(&self) -> Permissions
[src]
impl Clone for SipHasher
[src]
impl Clone for PhantomPinned
[src]
fn clone(&self) -> PhantomPinned
[src]
impl Clone for AddrParseError
[src]
fn clone(&self) -> AddrParseError
[src]
impl Clone for Ipv4Addr
[src]
impl Clone for Ipv6Addr
[src]
impl Clone for SocketAddrV4
[src]
fn clone(&self) -> SocketAddrV4
[src]
impl Clone for SocketAddrV6
[src]
fn clone(&self) -> SocketAddrV6
[src]
impl Clone for NonZeroI128
[src]
fn clone(&self) -> NonZeroI128
[src]
impl Clone for NonZeroI16
[src]
fn clone(&self) -> NonZeroI16
[src]
impl Clone for NonZeroI32
[src]
fn clone(&self) -> NonZeroI32
[src]
impl Clone for NonZeroI64
[src]
fn clone(&self) -> NonZeroI64
[src]
impl Clone for NonZeroI8
[src]
impl Clone for NonZeroIsize
[src]
fn clone(&self) -> NonZeroIsize
[src]
impl Clone for NonZeroU128
[src]
fn clone(&self) -> NonZeroU128
[src]
impl Clone for NonZeroU16
[src]
fn clone(&self) -> NonZeroU16
[src]
impl Clone for NonZeroU32
[src]
fn clone(&self) -> NonZeroU32
[src]
impl Clone for NonZeroU64
[src]
fn clone(&self) -> NonZeroU64
[src]
impl Clone for NonZeroU8
[src]
impl Clone for NonZeroUsize
[src]
fn clone(&self) -> NonZeroUsize
[src]
impl Clone for ParseFloatError
[src]
fn clone(&self) -> ParseFloatError
[src]
impl Clone for ParseIntError
[src]
fn clone(&self) -> ParseIntError
[src]
impl Clone for TryFromIntError
[src]
fn clone(&self) -> TryFromIntError
[src]
impl Clone for RangeFull
[src]
impl Clone for NoneError
[src]
impl Clone for stat
[src]
impl Clone for std::os::unix::net::SocketAddr
[src]
fn clone(&self) -> SocketAddr
[src]
impl Clone for PathBuf
[src]
impl Clone for StripPrefixError
[src]
fn clone(&self) -> StripPrefixError
[src]
impl Clone for ExitCode
[src]
impl Clone for ExitStatus
[src]
fn clone(&self) -> ExitStatus
[src]
impl Clone for Output
[src]
impl Clone for TraitObject
[src]
fn clone(&self) -> TraitObject
[src]
impl Clone for ParseBoolError
[src]
fn clone(&self) -> ParseBoolError
[src]
impl Clone for Utf8Error
[src]
impl Clone for String
[src]
impl Clone for RecvError
[src]
impl Clone for WaitTimeoutResult
[src]
fn clone(&self) -> WaitTimeoutResult
[src]
impl Clone for RawWakerVTable
[src]
fn clone(&self) -> RawWakerVTable
[src]
impl Clone for Waker
[src]
impl Clone for Thread
[src]
impl Clone for ThreadId
[src]
impl Clone for Duration
[src]
impl Clone for Instant
[src]
impl Clone for SystemTime
[src]
fn clone(&self) -> SystemTime
[src]
impl Clone for SystemTimeError
[src]
fn clone(&self) -> SystemTimeError
[src]
impl<'_, A> Clone for std::option::Iter<'_, A>
[src]
fn clone(&self) -> Iter<'_, A>
[src]
impl<'a, A> Iterator for Iter<'a, A> type Item = &'a A;
impl<'_, B> Clone for Cow<'_, B> where
B: ToOwned + ?Sized,
[src]
impl<'_, K> Clone for std::collections::hash_set::Iter<'_, K>
[src]
impl<'_, K, V> Clone for std::collections::btree_map::Iter<'_, K, V>
[src]
fn clone(&self) -> Iter<'_, K, V>
[src]
impl<'a, K, V> Iterator for Iter<'a, K, V> where K: 'a, V: 'a, type Item = (&'a K, &'a V);
impl<'_, K, V> Clone for std::collections::btree_map::Keys<'_, K, V>
[src]
fn clone(&self) -> Keys<'_, K, V>
[src]
impl<'a, K, V> Iterator for Keys<'a, K, V> type Item = &'a K;
impl<'_, K, V> Clone for std::collections::btree_map::Range<'_, K, V>
[src]
fn clone(&self) -> Range<'_, K, V>
[src]
impl<'a, K, V> Iterator for Range<'a, K, V> type Item = (&'a K, &'a V);
impl<'_, K, V> Clone for std::collections::btree_map::Values<'_, K, V>
[src]
fn clone(&self) -> Values<'_, K, V>
[src]
impl<'a, K, V> Iterator for Values<'a, K, V> type Item = &'a V;
impl<'_, K, V> Clone for std::collections::hash_map::Iter<'_, K, V>
[src]
impl<'_, K, V> Clone for std::collections::hash_map::Keys<'_, K, V>
[src]
impl<'_, K, V> Clone for std::collections::hash_map::Values<'_, K, V>
[src]
impl<'_, T> Clone for &'_ T where
T: ?Sized,
[src]
fn clone(&self) -> &'_ T
[src]
impl<'_, F> Future for &'_ mut F where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<'_, I> Iterator for &'_ mut I where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<'_, R: Read + ?Sized> Read for &'_ mut R impl<'_, W: Write + ?Sized> Write for &'_ mut W
impl<'_, T> Clone for std::collections::binary_heap::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::Difference<'_, T>
[src]
fn clone(&self) -> Difference<'_, T>
[src]
impl<'a, T> Iterator for Difference<'a, T> where T: Ord, type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::Intersection<'_, T>
[src]
fn clone(&self) -> Intersection<'_, T>
[src]
impl<'a, T> Iterator for Intersection<'a, T> where T: Ord, type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::Range<'_, T>
[src]
fn clone(&self) -> Range<'_, T>
[src]
impl<'a, T> Iterator for Range<'a, T> type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::SymmetricDifference<'_, T>
[src]
fn clone(&self) -> SymmetricDifference<'_, T>
[src]
impl<'a, T> Iterator for SymmetricDifference<'a, T> where T: Ord, type Item = &'a T;
impl<'_, T> Clone for std::collections::btree_set::Union<'_, T>
[src]
fn clone(&self) -> Union<'_, T>
[src]
impl<'a, T> Iterator for Union<'a, T> where T: Ord, type Item = &'a T;
impl<'_, T> Clone for std::collections::linked_list::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for std::collections::vec_deque::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for std::result::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for Chunks<'_, T>
[src]
fn clone(&self) -> Chunks<'_, T>
[src]
impl<'a, T> Iterator for Chunks<'a, T> type Item = &'a [T];
impl<'_, T> Clone for ChunksExact<'_, T>
[src]
fn clone(&self) -> ChunksExact<'_, T>
[src]
impl<'a, T> Iterator for ChunksExact<'a, T> type Item = &'a [T];
impl<'_, T> Clone for std::slice::Iter<'_, T>
[src]
fn clone(&self) -> Iter<'_, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<'_, T> Clone for RChunks<'_, T>
[src]
fn clone(&self) -> RChunks<'_, T>
[src]
impl<'a, T> Iterator for RChunks<'a, T> type Item = &'a [T];
impl<'_, T> Clone for Windows<'_, T>
[src]
fn clone(&self) -> Windows<'_, T>
[src]
impl<'a, T> Iterator for Windows<'a, T> type Item = &'a [T];
impl<'_, T, P> Clone for std::slice::Split<'_, T, P> where
P: Clone + FnMut(&T) -> bool,
[src]
fn clone(&self) -> Split<'_, T, P>
[src]
impl<'a, T, P> Iterator for Split<'a, T, P> where P: FnMut(&T) -> bool, type Item = &'a [T];
impl<'_, T, S> Clone for std::collections::hash_set::Difference<'_, T, S>
[src]
impl<'_, T, S> Clone for std::collections::hash_set::Intersection<'_, T, S>
[src]
impl<'_, T, S> Clone for std::collections::hash_set::SymmetricDifference<'_, T, S>
[src]
impl<'_, T, S> Clone for std::collections::hash_set::Union<'_, T, S>
[src]
impl<'a> Clone for Component<'a>
[src]
impl<'a> Clone for Prefix<'a>
[src]
impl<'a> Clone for ErrorIter<'a>
[src]
fn clone(&self) -> ErrorIter<'a>
[src]
impl<'a> Iterator for ErrorIter<'a> type Item = &'a (dyn Error + 'static);
impl<'a> Clone for Arguments<'a>
[src]
impl<'a> Clone for EncodeWide<'a>
[src]
fn clone(&self) -> EncodeWide<'a>
[src]
impl<'a> Iterator for EncodeWide<'a> type Item = u16;
impl<'a> Clone for Ancestors<'a>
[src]
fn clone(&self) -> Ancestors<'a>
[src]
impl<'a> Iterator for Ancestors<'a> type Item = &'a Path;
impl<'a> Clone for Components<'a>
[src]
fn clone(&self) -> Components<'a>
[src]
impl<'a> Iterator for Components<'a> type Item = Component<'a>;
impl<'a> Clone for std::path::Iter<'a>
[src]
fn clone(&self) -> Iter<'a>
[src]
impl<'a> Iterator for Iter<'a> type Item = &'a OsStr;
impl<'a> Clone for PrefixComponent<'a>
[src]
fn clone(&self) -> PrefixComponent<'a>
[src]
impl<'a> Clone for CharSearcher<'a>
[src]
fn clone(&self) -> CharSearcher<'a>
[src]
impl<'a> Clone for Bytes<'a>
[src]
fn clone(&self) -> Bytes<'a>
[src]
impl<'_> Iterator for Bytes<'_> type Item = u8;
impl<'a> Clone for CharIndices<'a>
[src]
fn clone(&self) -> CharIndices<'a>
[src]
impl<'a> Iterator for CharIndices<'a> type Item = (usize, char);
impl<'a> Clone for Chars<'a>
[src]
fn clone(&self) -> Chars<'a>
[src]
impl<'a> Iterator for Chars<'a> type Item = char;
impl<'a> Clone for EncodeUtf16<'a>
[src]
fn clone(&self) -> EncodeUtf16<'a>
[src]
impl<'a> Iterator for EncodeUtf16<'a> type Item = u16;
impl<'a> Clone for std::str::EscapeDebug<'a>
[src]
fn clone(&self) -> EscapeDebug<'a>
[src]
impl<'a> Iterator for EscapeDebug<'a> type Item = char;
impl<'a> Clone for std::str::EscapeDefault<'a>
[src]
fn clone(&self) -> EscapeDefault<'a>
[src]
impl<'a> Iterator for EscapeDefault<'a> type Item = char;
impl<'a> Clone for std::str::EscapeUnicode<'a>
[src]
fn clone(&self) -> EscapeUnicode<'a>
[src]
impl<'a> Iterator for EscapeUnicode<'a> type Item = char;
impl<'a> Clone for Lines<'a>
[src]
fn clone(&self) -> Lines<'a>
[src]
impl<'a> Iterator for Lines<'a> type Item = &'a str;
impl<'a> Clone for LinesAny<'a>
[src]
fn clone(&self) -> LinesAny<'a>
[src]
impl<'a> Iterator for LinesAny<'a> type Item = &'a str;
impl<'a> Clone for SplitAsciiWhitespace<'a>
[src]
fn clone(&self) -> SplitAsciiWhitespace<'a>
[src]
impl<'a> Iterator for SplitAsciiWhitespace<'a> type Item = &'a str;
impl<'a> Clone for SplitWhitespace<'a>
[src]
fn clone(&self) -> SplitWhitespace<'a>
[src]
impl<'a> Iterator for SplitWhitespace<'a> type Item = &'a str;
impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>
[src]
fn clone(&self) -> CharSliceSearcher<'a, 'b>
[src]
impl<'a, 'b> Clone for StrSearcher<'a, 'b>
[src]
fn clone(&self) -> StrSearcher<'a, 'b>
[src]
impl<'a, F> Clone for CharPredicateSearcher<'a, F> where
F: Clone + FnMut(char) -> bool,
[src]
fn clone(&self) -> CharPredicateSearcher<'a, F>
[src]
impl<'a, P> Clone for MatchIndices<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> MatchIndices<'a, P>
[src]
impl<'a, P> Iterator for MatchIndices<'a, P> where P: Pattern<'a>, type Item = (usize, &'a str);
impl<'a, P> Clone for Matches<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> Matches<'a, P>
[src]
impl<'a, P> Iterator for Matches<'a, P> where P: Pattern<'a>, type Item = &'a str;
impl<'a, P> Clone for RMatchIndices<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> RMatchIndices<'a, P>
[src]
impl<'a, P> Iterator for RMatchIndices<'a, P> where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>, type Item = (usize, &'a str);
impl<'a, P> Clone for RMatches<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> RMatches<'a, P>
[src]
impl<'a, P> Iterator for RMatches<'a, P> where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>, type Item = &'a str;
impl<'a, P> Clone for std::str::RSplit<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> RSplit<'a, P>
[src]
impl<'a, P> Iterator for RSplit<'a, P> where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>, type Item = &'a str;
impl<'a, P> Clone for RSplitN<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> RSplitN<'a, P>
[src]
impl<'a, P> Iterator for RSplitN<'a, P> where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>, type Item = &'a str;
impl<'a, P> Clone for RSplitTerminator<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> RSplitTerminator<'a, P>
[src]
impl<'a, P> Iterator for RSplitTerminator<'a, P> where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>, type Item = &'a str;
impl<'a, P> Clone for std::str::Split<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> Split<'a, P>
[src]
impl<'a, P> Iterator for Split<'a, P> where P: Pattern<'a>, type Item = &'a str;
impl<'a, P> Clone for SplitN<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> SplitN<'a, P>
[src]
impl<'a, P> Iterator for SplitN<'a, P> where P: Pattern<'a>, type Item = &'a str;
impl<'a, P> Clone for SplitTerminator<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
fn clone(&self) -> SplitTerminator<'a, P>
[src]
impl<'a, P> Iterator for SplitTerminator<'a, P> where P: Pattern<'a>, type Item = &'a str;
impl<'a, T> Clone for RChunksExact<'a, T>
[src]
fn clone(&self) -> RChunksExact<'a, T>
[src]
impl<'a, T> Iterator for RChunksExact<'a, T> type Item = &'a [T];
impl<'a, T, P> Clone for std::slice::RSplit<'a, T, P> where
P: Clone + FnMut(&T) -> bool,
T: 'a + Clone,
[src]
fn clone(&self) -> RSplit<'a, T, P>
[src]
impl<'a, T, P> Iterator for RSplit<'a, T, P> where P: FnMut(&T) -> bool, type Item = &'a [T];
impl<'f> Clone for VaListImpl<'f>
[src]
fn clone(&self) -> VaListImpl<'f>
[src]
impl<A> Clone for Repeat<A> where
A: Clone,
[src]
fn clone(&self) -> Repeat<A>
[src]
impl<A> Iterator for Repeat<A> where A: Clone, type Item = A;
impl<A> Clone for std::option::IntoIter<A> where
A: Clone,
[src]
fn clone(&self) -> IntoIter<A>
[src]
impl<A> Iterator for IntoIter<A> type Item = A;
impl<A, B> Clone for Chain<A, B> where
A: Clone,
B: Clone,
[src]
fn clone(&self) -> Chain<A, B>
[src]
impl<A, B> Iterator for Chain<A, B> where A: Iterator, B: Iterator<Item = <A as Iterator>::Item>, type Item = <A as Iterator>::Item;
impl<A, B> Clone for Zip<A, B> where
A: Clone,
B: Clone,
[src]
fn clone(&self) -> Zip<A, B>
[src]
impl<A, B> Iterator for Zip<A, B> where A: Iterator, B: Iterator, type Item = (<A as Iterator>::Item, <B as Iterator>::Item);
impl<F> Clone for FromFn<F> where
F: Clone,
[src]
fn clone(&self) -> FromFn<F>
[src]
impl<T, F> Iterator for FromFn<F> where F: FnMut() -> Option<T>, type Item = T;
impl<F> Clone for OnceWith<F> where
F: Clone,
[src]
fn clone(&self) -> OnceWith<F>
[src]
impl<A, F> Iterator for OnceWith<F> where F: FnOnce() -> A, type Item = A;
impl<F> Clone for RepeatWith<F> where
F: Clone,
[src]
fn clone(&self) -> RepeatWith<F>
[src]
impl<A, F> Iterator for RepeatWith<F> where F: FnMut() -> A, type Item = A;
impl<H> Clone for BuildHasherDefault<H>
[src]
fn clone(&self) -> BuildHasherDefault<H>
[src]
impl<I> Clone for DecodeUtf16<I> where
I: Clone + Iterator<Item = u16>,
[src]
fn clone(&self) -> DecodeUtf16<I>
[src]
impl<I> Iterator for DecodeUtf16<I> where I: Iterator<Item = u16>, type Item = Result<char, DecodeUtf16Error>;
impl<I> Clone for Cloned<I> where
I: Clone,
[src]
fn clone(&self) -> Cloned<I>
[src]
impl<'a, I, T> Iterator for Cloned<I> where I: Iterator<Item = &'a T>, T: 'a + Clone, type Item = T;
impl<I> Clone for Copied<I> where
I: Clone,
[src]
fn clone(&self) -> Copied<I>
[src]
impl<'a, I, T> Iterator for Copied<I> where I: Iterator<Item = &'a T>, T: 'a + Copy, type Item = T;
impl<I> Clone for Cycle<I> where
I: Clone,
[src]
fn clone(&self) -> Cycle<I>
[src]
impl<I> Iterator for Cycle<I> where I: Clone + Iterator, type Item = <I as Iterator>::Item;
impl<I> Clone for Enumerate<I> where
I: Clone,
[src]
fn clone(&self) -> Enumerate<I>
[src]
impl<I> Iterator for Enumerate<I> where I: Iterator, type Item = (usize, <I as Iterator>::Item);
impl<I> Clone for Fuse<I> where
I: Clone,
[src]
fn clone(&self) -> Fuse<I>
[src]
impl<I> Iterator for Fuse<I> where I: FusedIterator, impl<I> Iterator for Fuse<I> where I: Iterator, type Item = <I as Iterator>::Item;
impl<I> Clone for Peekable<I> where
I: Clone + Iterator,
<I as Iterator>::Item: Clone,
[src]
fn clone(&self) -> Peekable<I>
[src]
impl<I> Iterator for Peekable<I> where I: Iterator, type Item = <I as Iterator>::Item;
impl<I> Clone for Skip<I> where
I: Clone,
[src]
fn clone(&self) -> Skip<I>
[src]
impl<I> Iterator for Skip<I> where I: Iterator, type Item = <I as Iterator>::Item;
impl<I> Clone for StepBy<I> where
I: Clone,
[src]
fn clone(&self) -> StepBy<I>
[src]
impl<I> Iterator for StepBy<I> where I: Iterator, type Item = <I as Iterator>::Item;
impl<I> Clone for Take<I> where
I: Clone,
[src]
fn clone(&self) -> Take<I>
[src]
impl<I> Iterator for Take<I> where I: Iterator, type Item = <I as Iterator>::Item;
impl<I, F> Clone for FilterMap<I, F> where
F: Clone,
I: Clone,
[src]
fn clone(&self) -> FilterMap<I, F>
[src]
impl<B, I, F> Iterator for FilterMap<I, F> where F: FnMut(<I as Iterator>::Item) -> Option<B>, I: Iterator, type Item = B;
impl<I, F> Clone for Inspect<I, F> where
F: Clone,
I: Clone,
[src]
fn clone(&self) -> Inspect<I, F>
[src]
impl<I, F> Iterator for Inspect<I, F> where F: FnMut(&<I as Iterator>::Item), I: Iterator, type Item = <I as Iterator>::Item;
impl<I, F> Clone for Map<I, F> where
F: Clone,
I: Clone,
[src]
fn clone(&self) -> Map<I, F>
[src]
impl<B, I, F> Iterator for Map<I, F> where F: FnMut(<I as Iterator>::Item) -> B, I: Iterator, type Item = B;
impl<I, P> Clone for Filter<I, P> where
I: Clone,
P: Clone,
[src]
fn clone(&self) -> Filter<I, P>
[src]
impl<I, P> Iterator for Filter<I, P> where I: Iterator, P: FnMut(&<I as Iterator>::Item) -> bool, type Item = <I as Iterator>::Item;
impl<I, P> Clone for SkipWhile<I, P> where
I: Clone,
P: Clone,
[src]
fn clone(&self) -> SkipWhile<I, P>
[src]
impl<I, P> Iterator for SkipWhile<I, P> where I: Iterator, P: FnMut(&<I as Iterator>::Item) -> bool, type Item = <I as Iterator>::Item;
impl<I, P> Clone for TakeWhile<I, P> where
I: Clone,
P: Clone,
[src]
fn clone(&self) -> TakeWhile<I, P>
[src]
impl<I, P> Iterator for TakeWhile<I, P> where I: Iterator, P: FnMut(&<I as Iterator>::Item) -> bool, type Item = <I as Iterator>::Item;
impl<I, St, F> Clone for Scan<I, St, F> where
F: Clone,
I: Clone,
St: Clone,
[src]
fn clone(&self) -> Scan<I, St, F>
[src]
impl<B, I, St, F> Iterator for Scan<I, St, F> where F: FnMut(&mut St, <I as Iterator>::Item) -> Option<B>, I: Iterator, type Item = B;
impl<I, U> Clone for Flatten<I> where
I: Iterator + Clone,
U: Iterator + Clone,
<I as Iterator>::Item: IntoIterator,
<<I as Iterator>::Item as IntoIterator>::IntoIter == U,
<<I as Iterator>::Item as IntoIterator>::Item == <U as Iterator>::Item,
[src]
fn clone(&self) -> Flatten<I>
[src]
impl<I, U> Iterator for Flatten<I> where I: Iterator, U: Iterator, <I as Iterator>::Item: IntoIterator, <<I as Iterator>::Item as IntoIterator>::IntoIter == U, <<I as Iterator>::Item as IntoIterator>::Item == <U as Iterator>::Item, type Item = <U as Iterator>::Item;
impl<I, U, F> Clone for FlatMap<I, U, F> where
F: Clone,
I: Clone,
U: Clone + IntoIterator,
<U as IntoIterator>::IntoIter: Clone,
[src]
fn clone(&self) -> FlatMap<I, U, F>
[src]
impl<I, U, F> Iterator for FlatMap<I, U, F> where F: FnMut(<I as Iterator>::Item) -> U, I: Iterator, U: IntoIterator, type Item = <U as IntoIterator>::Item;
impl<Idx> Clone for std::ops::Range<Idx> where
Idx: Clone,
[src]
fn clone(&self) -> Range<Idx>
[src]
impl<A> Iterator for Range<A> where A: Step, type Item = A;
impl<Idx> Clone for RangeFrom<Idx> where
Idx: Clone,
[src]
fn clone(&self) -> RangeFrom<Idx>
[src]
impl<A> Iterator for RangeFrom<A> where A: Step, type Item = A;
impl<Idx> Clone for RangeInclusive<Idx> where
Idx: Clone,
[src]
fn clone(&self) -> RangeInclusive<Idx>
[src]
impl<A> Iterator for RangeInclusive<A> where A: Step, type Item = A;
impl<Idx> Clone for RangeTo<Idx> where
Idx: Clone,
[src]
impl<Idx> Clone for RangeToInclusive<Idx> where
Idx: Clone,
[src]
fn clone(&self) -> RangeToInclusive<Idx>
[src]
impl<K, V> Clone for BTreeMap<K, V> where
K: Clone,
V: Clone,
[src]
impl<K: Clone, V: Clone, S: Clone> Clone for std::collections::HashMap<K, V, S>
[src]
impl<P> Clone for Pin<P> where
P: Clone,
[src]
fn clone(&self) -> Pin<P>
[src]
impl<P> Future for Pin<P> where P: Unpin + DerefMut, <P as Deref>::Target: Future, type Output = <<P as Deref>::Target as Future>::Output;
impl<T> Clone for Bound<T> where
T: Clone,
[src]
impl<T> Clone for Option<T> where
T: Clone,
[src]
impl<T> Clone for Poll<T> where
T: Clone,
[src]
impl<T> Clone for *const T where
T: ?Sized,
[src]
impl<T> Clone for *mut T where
T: ?Sized,
[src]
impl<T> Clone for Box<[T]> where
T: Clone,
[src]
fn clone(&self) -> Box<[T]>
[src]
impl<I> Iterator for Box<I> where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<F> Future for Box<F> where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<R: Read + ?Sized> Read for Box<R> impl<W: Write + ?Sized> Write for Box<W>
impl<T> Clone for Box<T> where
T: Clone,
[src]
fn clone(&self) -> Box<T>
[src]
impl<I> Iterator for Box<I> where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<F> Future for Box<F> where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<R: Read + ?Sized> Read for Box<R> impl<W: Write + ?Sized> Write for Box<W>
Returns a new box with a clone()
of this box's contents.
fn clone_from(&mut self, source: &Box<T>)
[src]
impl<T> Clone for Cell<T> where
T: Copy,
[src]
impl<T> Clone for RefCell<T> where
T: Clone,
[src]
impl<T> Clone for Reverse<T> where
T: Clone,
[src]
impl<T> Clone for BinaryHeap<T> where
T: Clone,
[src]
fn clone(&self) -> BinaryHeap<T>
[src]
fn clone_from(&mut self, source: &BinaryHeap<T>)
[src]
impl<T> Clone for std::collections::binary_heap::IntoIter<T> where
T: Clone,
[src]
fn clone(&self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
impl<T> Clone for BTreeSet<T> where
T: Clone,
[src]
impl<T> Clone for std::collections::linked_list::IntoIter<T> where
T: Clone,
[src]
fn clone(&self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
impl<T> Clone for LinkedList<T> where
T: Clone,
[src]
fn clone(&self) -> LinkedList<T>
[src]
impl<T> Clone for std::collections::vec_deque::IntoIter<T> where
T: Clone,
[src]
fn clone(&self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
impl<T> Clone for VecDeque<T> where
T: Clone,
[src]
impl<T> Clone for Empty<T>
[src]
fn clone(&self) -> Empty<T>
[src]
impl<T> Iterator for Empty<T> type Item = T;
impl<T> Clone for Once<T> where
T: Clone,
[src]
fn clone(&self) -> Once<T>
[src]
impl<T> Iterator for Once<T> type Item = T;
impl<T> Clone for Rev<T> where
T: Clone,
[src]
fn clone(&self) -> Rev<T>
[src]
impl<I> Iterator for Rev<I> where I: DoubleEndedIterator, type Item = <I as Iterator>::Item;
impl<T> Clone for PhantomData<T> where
T: ?Sized,
[src]
fn clone(&self) -> PhantomData<T>
[src]
impl<T> Clone for Discriminant<T>
[src]
fn clone(&self) -> Discriminant<T>
[src]
impl<T> Clone for ManuallyDrop<T> where
T: Clone + ?Sized,
[src]
fn clone(&self) -> ManuallyDrop<T>
[src]
impl<T> Clone for Wrapping<T> where
T: Clone,
[src]
impl<T> Clone for NonNull<T> where
T: ?Sized,
[src]
impl<T> Clone for Rc<T> where
T: ?Sized,
[src]
impl<T> Clone for std::rc::Weak<T> where
T: ?Sized,
[src]
impl<T> Clone for std::result::IntoIter<T> where
T: Clone,
[src]
fn clone(&self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
impl<T> Clone for Sender<T>
[src]
impl<T> Clone for SyncSender<T>
[src]
fn clone(&self) -> SyncSender<T>
[src]
impl<T> Clone for Arc<T> where
T: ?Sized,
[src]
impl<T> Clone for std::sync::Weak<T> where
T: ?Sized,
[src]
impl<T> Clone for std::vec::IntoIter<T> where
T: Clone,
[src]
fn clone(&self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
impl<T> Clone for Vec<T> where
T: Clone,
[src]
impl<T> Clone for MaybeUninit<T> where
T: Copy,
[src]
fn clone(&self) -> MaybeUninit<T>
[src]
impl<T, E> Clone for Result<T, E> where
E: Clone,
T: Clone,
[src]
impl<T, F> Clone for Successors<T, F> where
F: Clone,
T: Clone,
[src]
fn clone(&self) -> Successors<T, F>
[src]
impl<T, F> Iterator for Successors<T, F> where F: FnMut(&T) -> Option<T>, type Item = T;
impl<T: Clone> Clone for TrySendError<T>
[src]
fn clone(&self) -> TrySendError<T>
[src]
impl<T: Clone> Clone for Cursor<T>
[src]
fn clone(&self) -> Cursor<T>
[src]
impl<T> Read for Cursor<T> where T: AsRef<[u8]>, impl<'_> Write for Cursor<&'_ mut [u8]> impl<'_> Write for Cursor<&'_ mut Vec<u8>> impl Write for Cursor<Vec<u8>> impl Write for Cursor<Box<[u8]>>
impl<T: Clone> Clone for SendError<T>
[src]
impl<T: Clone, S: Clone> Clone for std::collections::HashSet<T, S>
[src]
impl<Y, R> Clone for GeneratorState<Y, R> where
R: Clone,
Y: Clone,
[src]
fn clone(&self) -> GeneratorState<Y, R>
[src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/clone/trait.Clone.html