1.0.0[−][src]Trait std::clone::Clone
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.
Derivable
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, }Run
How can I implement 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 } }Run
Additional implementors
In addition to the implementors listed below,
the following types also implement Clone
:
- Function item types (i.e., the distinct types defined for each function)
- Function pointer types (e.g.,
fn() -> i32
) - Array types, for all sizes, if the item type also implements
Clone
(e.g.,[i32; 123456]
) - Tuple types, if each component also implements
Clone
(e.g.,()
,(i32, bool)
) - Closure types, if they capture no value from the environment
or if all such captured values implement
Clone
themselves. Note that variables captured by shared reference always implementClone
(even if the referent doesn't), while variables captured by mutable reference never implementClone
.
Required methods
#[must_use = "cloning is often expensive and is not expected to have side effects"]
fn clone(&self) -> Self
Provided methods
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.
Implementations on Foreign Types
impl<'a> Clone for EscapeUnicode<'a>
[src]
ⓘImportant traits for EscapeUnicode<'a>fn clone(&self) -> EscapeUnicode<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for TryFromSliceError
[src]
fn clone(&self) -> TryFromSliceError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Clone for EscapeDebug<'a>
[src]
ⓘImportant traits for EscapeDebug<'a>fn clone(&self) -> EscapeDebug<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m512i
[src]
impl Clone for CpuidResult
[src]
fn clone(&self) -> CpuidResult
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m128d
[src]
impl Clone for __m256i
[src]
impl Clone for __m512d
[src]
impl Clone for IntErrorKind
[src]
fn clone(&self) -> IntErrorKind
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m256d
[src]
impl Clone for __m256
[src]
impl Clone for __m128
[src]
impl Clone for __m128i
[src]
impl Clone for __m512
[src]
impl<'a> Clone for EscapeDefault<'a>
[src]
ⓘImportant traits for EscapeDefault<'a>fn clone(&self) -> EscapeDefault<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m64
[src]
impl Clone for TryDemangleError
fn clone(&self) -> TryDemangleError
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Implementors
impl Clone for std::cmp::Ordering
[src]
impl Clone for CollectionAllocErr
[src]
impl Clone for 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]
impl Clone for Shutdown
[src]
impl Clone for std::net::SocketAddr
[src]
impl Clone for FpCategory
[src]
impl Clone for SearchStep
[src]
impl Clone for std::sync::atomic::Ordering
[src]
impl Clone for RecvTimeoutError
[src]
impl Clone for 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]
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 Box<str>
[src]
ⓘImportant traits for Box<I>fn clone(&self) -> Box<str>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for Box<CStr>
[src]
impl Clone for Box<OsStr>
[src]
impl Clone for Box<Path>
[src]
impl Clone for CharTryFromError
[src]
impl Clone for DecodeUtf16Error
[src]
impl Clone for std::char::EscapeDebug
[src]
ⓘImportant traits for EscapeDebugfn clone(&self) -> EscapeDebug
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for std::char::EscapeDefault
[src]
ⓘImportant traits for EscapeDefaultfn clone(&self) -> EscapeDefault
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for std::char::EscapeUnicode
[src]
ⓘImportant traits for EscapeUnicodefn clone(&self) -> EscapeUnicode
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for ParseCharError
[src]
impl Clone for ToLowercase
[src]
ⓘImportant traits for ToLowercasefn clone(&self) -> ToLowercase
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for ToUppercase
[src]
ⓘImportant traits for ToUppercasefn clone(&self) -> ToUppercase
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for UnicodeVersion
[src]
impl Clone for DefaultHasher
[src]
impl Clone for RandomState
[src]
impl Clone for CString
[src]
impl Clone for FromBytesWithNulError
[src]
impl Clone for 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]
impl Clone for Permissions
[src]
impl Clone for SipHasher
[src]
impl Clone for PhantomPinned
[src]
impl Clone for AddrParseError
[src]
impl Clone for Ipv4Addr
[src]
impl Clone for Ipv6Addr
[src]
impl Clone for SocketAddrV4
[src]
impl Clone for SocketAddrV6
[src]
impl Clone for NonZeroI128
[src]
impl Clone for NonZeroI16
[src]
impl Clone for NonZeroI32
[src]
impl Clone for NonZeroI64
[src]
impl Clone for NonZeroI8
[src]
impl Clone for NonZeroIsize
[src]
impl Clone for NonZeroU128
[src]
impl Clone for NonZeroU16
[src]
impl Clone for NonZeroU32
[src]
impl Clone for NonZeroU64
[src]
impl Clone for NonZeroU8
[src]
impl Clone for NonZeroUsize
[src]
impl Clone for ParseFloatError
[src]
impl Clone for ParseIntError
[src]
impl Clone for 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]
impl Clone for PathBuf
[src]
impl Clone for StripPrefixError
[src]
impl Clone for ExitCode
[src]
impl Clone for ExitStatus
[src]
impl Clone for Output
[src]
impl Clone for TraitObject
[src]
impl Clone for ParseBoolError
[src]
impl Clone for Utf8Error
[src]
impl Clone for String
[src]
impl Clone for RecvError
[src]
impl Clone for WaitTimeoutResult
[src]
impl Clone for 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]
impl Clone for SystemTimeError
[src]
impl<'_, A> Clone for std::option::Iter<'_, A>
[src]
ⓘImportant traits for Iter<'a, A>fn clone(&self) -> Iter<'_, A>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, B> Clone for Cow<'_, B> where
B: ToOwned + ?Sized,
[src]
B: ToOwned + ?Sized,
impl<'_, K, V> Clone for std::collections::btree_map::Iter<'_, K, V>
[src]
ⓘImportant traits for Iter<'a, K, V>fn clone(&self) -> Iter<'_, K, V>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, K, V> Clone for std::collections::btree_map::Keys<'_, K, V>
[src]
ⓘImportant traits for Keys<'a, K, V>fn clone(&self) -> Keys<'_, K, V>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, K, V> Clone for std::collections::btree_map::Range<'_, K, V>
[src]
ⓘImportant traits for Range<'a, K, V>fn clone(&self) -> Range<'_, K, V>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'_, K, V> Clone for std::collections::btree_map::Values<'_, K, V>
[src]
ⓘImportant traits for Values<'a, K, V>fn clone(&self) -> Values<'_, K, V>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for &'_ T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn clone(&self) -> &'_ T
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::binary_heap::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::btree_set::Difference<'_, T>
[src]
ⓘImportant traits for Difference<'a, T>fn clone(&self) -> Difference<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::btree_set::Intersection<'_, T>
[src]
ⓘImportant traits for Intersection<'a, T>fn clone(&self) -> Intersection<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::btree_set::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::btree_set::Range<'_, T>
[src]
ⓘImportant traits for Range<'a, T>fn clone(&self) -> Range<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'_, T> Clone for std::collections::btree_set::SymmetricDifference<'_, T>
[src]
ⓘImportant traits for SymmetricDifference<'a, T>fn clone(&self) -> SymmetricDifference<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::btree_set::Union<'_, T>
[src]
ⓘImportant traits for Union<'a, T>fn clone(&self) -> Union<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::linked_list::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::collections::vec_deque::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for std::result::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for Chunks<'_, T>
[src]
ⓘImportant traits for Chunks<'a, T>fn clone(&self) -> Chunks<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for ChunksExact<'_, T>
[src]
ⓘImportant traits for ChunksExact<'a, T>fn clone(&self) -> ChunksExact<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'_, T> Clone for std::slice::Iter<'_, T>
[src]
ⓘImportant traits for Iter<'a, T>fn clone(&self) -> Iter<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T> Clone for RChunks<'_, T>
[src]
ⓘImportant traits for RChunks<'a, T>fn clone(&self) -> RChunks<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'_, T> Clone for Windows<'_, T>
[src]
ⓘImportant traits for Windows<'a, T>fn clone(&self) -> Windows<'_, T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'_, T, P> Clone for std::slice::Split<'_, T, P> where
P: Clone + FnMut(&T) -> bool,
[src]
P: Clone + FnMut(&T) -> bool,
ⓘImportant traits for Split<'a, T, P>fn clone(&self) -> Split<'_, T, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for Component<'a>
[src]
impl<'a> Clone for Prefix<'a>
[src]
impl<'a> Clone for ErrorIter<'a>
[src]
ⓘImportant traits for ErrorIter<'a>fn clone(&self) -> ErrorIter<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Clone for Arguments<'a>
[src]
impl<'a> Clone for EncodeWide<'a>
[src]
ⓘImportant traits for EncodeWide<'a>fn clone(&self) -> EncodeWide<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for Ancestors<'a>
[src]
ⓘImportant traits for Ancestors<'a>fn clone(&self) -> Ancestors<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Clone for Components<'a>
[src]
ⓘImportant traits for Components<'a>fn clone(&self) -> Components<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for std::path::Iter<'a>
[src]
ⓘImportant traits for Iter<'a>fn clone(&self) -> Iter<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for PrefixComponent<'a>
[src]
impl<'a> Clone for CharSearcher<'a>
[src]
impl<'a> Clone for Bytes<'a>
[src]
ⓘImportant traits for Bytes<'_>fn clone(&self) -> Bytes<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for CharIndices<'a>
[src]
ⓘImportant traits for CharIndices<'a>fn clone(&self) -> CharIndices<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for Chars<'a>
[src]
ⓘImportant traits for Chars<'a>fn clone(&self) -> Chars<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for EncodeUtf16<'a>
[src]
ⓘImportant traits for EncodeUtf16<'a>fn clone(&self) -> EncodeUtf16<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Clone for Lines<'a>
[src]
ⓘImportant traits for Lines<'a>fn clone(&self) -> Lines<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for LinesAny<'a>
[src]
ⓘImportant traits for LinesAny<'a>fn clone(&self) -> LinesAny<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for SplitAsciiWhitespace<'a>
[src]
ⓘImportant traits for SplitAsciiWhitespace<'a>fn clone(&self) -> SplitAsciiWhitespace<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Clone for SplitWhitespace<'a>
[src]
ⓘImportant traits for SplitWhitespace<'a>fn clone(&self) -> SplitWhitespace<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>
[src]
impl<'a, 'b> Clone for StrSearcher<'a, 'b>
[src]
impl<'a, F> Clone for CharPredicateSearcher<'a, F> where
F: Clone + FnMut(char) -> bool,
[src]
F: Clone + FnMut(char) -> bool,
fn clone(&self) -> CharPredicateSearcher<'a, F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P> Clone for MatchIndices<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for MatchIndices<'a, P>fn clone(&self) -> MatchIndices<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P> Clone for Matches<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for Matches<'a, P>fn clone(&self) -> Matches<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P> Clone for RMatchIndices<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for RMatchIndices<'a, P>fn clone(&self) -> RMatchIndices<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P> Clone for RMatches<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for RMatches<'a, P>fn clone(&self) -> RMatches<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P> Clone for std::str::RSplit<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for RSplit<'a, P>fn clone(&self) -> RSplit<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P> Clone for RSplitN<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for RSplitN<'a, P>fn clone(&self) -> RSplitN<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P> Clone for RSplitTerminator<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for RSplitTerminator<'a, P>fn clone(&self) -> RSplitTerminator<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P> Clone for std::str::Split<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for Split<'a, P>fn clone(&self) -> Split<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P> Clone for SplitN<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for SplitN<'a, P>fn clone(&self) -> SplitN<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P> Clone for SplitTerminator<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
[src]
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Clone,
ⓘImportant traits for SplitTerminator<'a, P>fn clone(&self) -> SplitTerminator<'a, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, T> Clone for RChunksExact<'a, T>
[src]
ⓘImportant traits for RChunksExact<'a, T>fn clone(&self) -> RChunksExact<'a, T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, T, P> Clone for std::slice::RSplit<'a, T, P> where
P: Clone + FnMut(&T) -> bool,
T: 'a + Clone,
[src]
P: Clone + FnMut(&T) -> bool,
T: 'a + Clone,
ⓘImportant traits for RSplit<'a, T, P>fn clone(&self) -> RSplit<'a, T, P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<A> Clone for Repeat<A> where
A: Clone,
[src]
A: Clone,
ⓘImportant traits for Repeat<A>fn clone(&self) -> Repeat<A>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A> Clone for std::option::IntoIter<A> where
A: Clone,
[src]
A: Clone,
ⓘImportant traits for IntoIter<A>fn clone(&self) -> IntoIter<A>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A, B> Clone for Chain<A, B> where
A: Clone,
B: Clone,
[src]
A: Clone,
B: Clone,
ⓘImportant traits for Chain<A, B>fn clone(&self) -> Chain<A, B>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A, B> Clone for Zip<A, B> where
A: Clone,
B: Clone,
[src]
A: Clone,
B: Clone,
ⓘImportant traits for Zip<A, B>fn clone(&self) -> Zip<A, B>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<F> Clone for FromFn<F> where
F: Clone,
[src]
F: Clone,
ⓘImportant traits for FromFn<F>fn clone(&self) -> FromFn<F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<F> Clone for OnceWith<F> where
F: Clone,
[src]
F: Clone,
ⓘImportant traits for OnceWith<F>fn clone(&self) -> OnceWith<F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<F> Clone for RepeatWith<F> where
F: Clone,
[src]
F: Clone,
ⓘImportant traits for RepeatWith<F>fn clone(&self) -> RepeatWith<F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<H> Clone for BuildHasherDefault<H>
[src]
impl<I> Clone for DecodeUtf16<I> where
I: Clone + Iterator<Item = u16>,
[src]
I: Clone + Iterator<Item = u16>,
ⓘImportant traits for DecodeUtf16<I>fn clone(&self) -> DecodeUtf16<I>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I> Clone for Cloned<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Cloned<I>fn clone(&self) -> Cloned<I>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I> Clone for Copied<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Copied<I>fn clone(&self) -> Copied<I>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I> Clone for Cycle<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Cycle<I>fn clone(&self) -> Cycle<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I> Clone for Enumerate<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Enumerate<I>fn clone(&self) -> Enumerate<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I> Clone for Fuse<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Fuse<I>fn clone(&self) -> Fuse<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I> Clone for Peekable<I> where
I: Clone + Iterator,
<I as Iterator>::Item: Clone,
[src]
I: Clone + Iterator,
<I as Iterator>::Item: Clone,
ⓘImportant traits for Peekable<I>fn clone(&self) -> Peekable<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I> Clone for Skip<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Skip<I>fn clone(&self) -> Skip<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I> Clone for StepBy<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for StepBy<I>fn clone(&self) -> StepBy<I>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I> Clone for Take<I> where
I: Clone,
[src]
I: Clone,
ⓘImportant traits for Take<I>fn clone(&self) -> Take<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, F> Clone for FilterMap<I, F> where
F: Clone,
I: Clone,
[src]
F: Clone,
I: Clone,
ⓘImportant traits for FilterMap<I, F>fn clone(&self) -> FilterMap<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, F> Clone for Inspect<I, F> where
F: Clone,
I: Clone,
[src]
F: Clone,
I: Clone,
ⓘImportant traits for Inspect<I, F>fn clone(&self) -> Inspect<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, F> Clone for Map<I, F> where
F: Clone,
I: Clone,
[src]
F: Clone,
I: Clone,
ⓘImportant traits for Map<I, F>fn clone(&self) -> Map<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, P> Clone for Filter<I, P> where
I: Clone,
P: Clone,
[src]
I: Clone,
P: Clone,
ⓘImportant traits for Filter<I, P>fn clone(&self) -> Filter<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, P> Clone for SkipWhile<I, P> where
I: Clone,
P: Clone,
[src]
I: Clone,
P: Clone,
ⓘImportant traits for SkipWhile<I, P>fn clone(&self) -> SkipWhile<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, P> Clone for TakeWhile<I, P> where
I: Clone,
P: Clone,
[src]
I: Clone,
P: Clone,
ⓘImportant traits for TakeWhile<I, P>fn clone(&self) -> TakeWhile<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I, St, F> Clone for Scan<I, St, F> where
F: Clone,
I: Clone,
St: Clone,
[src]
F: Clone,
I: Clone,
St: Clone,
ⓘImportant traits for Scan<I, St, F>fn clone(&self) -> Scan<I, St, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
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]
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,
ⓘImportant traits for Flatten<I>fn clone(&self) -> Flatten<I>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I, U, F> Clone for FlatMap<I, U, F> where
F: Clone,
I: Clone,
U: Clone + IntoIterator,
<U as IntoIterator>::IntoIter: Clone,
[src]
F: Clone,
I: Clone,
U: Clone + IntoIterator,
<U as IntoIterator>::IntoIter: Clone,
ⓘImportant traits for FlatMap<I, U, F>fn clone(&self) -> FlatMap<I, U, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx> Clone for std::ops::Range<Idx> where
Idx: Clone,
[src]
Idx: Clone,
ⓘImportant traits for Range<A>fn clone(&self) -> Range<Idx>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx> Clone for RangeFrom<Idx> where
Idx: Clone,
[src]
Idx: Clone,
ⓘImportant traits for RangeFrom<A>fn clone(&self) -> RangeFrom<Idx>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx> Clone for RangeInclusive<Idx> where
Idx: Clone,
[src]
Idx: Clone,
ⓘImportant traits for RangeInclusive<A>fn clone(&self) -> RangeInclusive<Idx>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<Idx> Clone for RangeTo<Idx> where
Idx: Clone,
[src]
Idx: Clone,
impl<Idx> Clone for RangeToInclusive<Idx> where
Idx: Clone,
[src]
Idx: Clone,
impl<K, '_> Clone for std::collections::hash_set::Iter<'_, K>
[src]
impl<K, V> Clone for BTreeMap<K, V> where
K: Clone,
V: Clone,
[src]
K: Clone,
V: Clone,
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<K: Clone, V: Clone, S: Clone> Clone for HashMap<K, V, S>
[src]
impl<P> Clone for Pin<P> where
P: Clone,
[src]
P: Clone,
ⓘImportant traits for Pin<P>fn clone(&self) -> Pin<P>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for Bound<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for Option<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for Poll<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for *const T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Clone for *mut T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Clone for Box<[T]> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for Box<I>fn clone(&self) -> Box<[T]>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for Box<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for Box<I>fn clone(&self) -> Box<T>
[src]
Returns a new box with a clone()
of this box's contents.
Examples
let x = Box::new(5); let y = x.clone();Run
fn clone_from(&mut self, source: &Box<T>)
[src]
impl<T> Clone for Cell<T> where
T: Copy,
[src]
T: Copy,
impl<T> Clone for RefCell<T> where
T: Clone,
[src]
T: Clone,
fn clone(&self) -> RefCell<T>
[src]
Panics
Panics if the value is currently mutably borrowed.
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for Reverse<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for BinaryHeap<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for std::collections::binary_heap::IntoIter<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for IntoIter<T>fn clone(&self) -> IntoIter<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for BTreeSet<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for std::collections::linked_list::IntoIter<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for IntoIter<T>fn clone(&self) -> IntoIter<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for LinkedList<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for std::collections::vec_deque::IntoIter<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for IntoIter<T>fn clone(&self) -> IntoIter<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for VecDeque<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for Empty<T>
[src]
ⓘImportant traits for Empty<T>fn clone(&self) -> Empty<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for Once<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for Once<T>fn clone(&self) -> Once<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for Rev<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for Rev<I>fn clone(&self) -> Rev<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for PhantomData<T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Clone for Discriminant<T>
[src]
impl<T> Clone for ManuallyDrop<T> where
T: Clone + ?Sized,
[src]
T: Clone + ?Sized,
impl<T> Clone for Wrapping<T> where
T: Clone,
[src]
T: Clone,
impl<T> Clone for NonNull<T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Clone for Rc<T> where
T: ?Sized,
[src]
T: ?Sized,
fn clone(&self) -> Rc<T>
[src]
Makes a clone of the Rc
pointer.
This creates another pointer to the same inner value, increasing the strong reference count.
Examples
use std::rc::Rc; let five = Rc::new(5); let _ = Rc::clone(&five);Run
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for std::rc::Weak<T> where
T: ?Sized,
[src]
T: ?Sized,
fn clone(&self) -> Weak<T>
[src]
Makes a clone of the Weak
pointer that points to the same value.
Examples
use std::rc::{Rc, Weak}; let weak_five = Rc::downgrade(&Rc::new(5)); let _ = Weak::clone(&weak_five);Run
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for std::result::IntoIter<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for IntoIter<T>fn clone(&self) -> IntoIter<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for Sender<T>
[src]
impl<T> Clone for SyncSender<T>
[src]
impl<T> Clone for Arc<T> where
T: ?Sized,
[src]
T: ?Sized,
fn clone(&self) -> Arc<T>
[src]
Makes a clone of the Arc
pointer.
This creates another pointer to the same inner value, increasing the strong reference count.
Examples
use std::sync::Arc; let five = Arc::new(5); let _ = Arc::clone(&five);Run
fn clone_from(&mut self, source: &Self)
[src]
impl<T> Clone for std::sync::Weak<T> where
T: ?Sized,
[src]
T: ?Sized,
fn clone(&self) -> Weak<T>
[src]
Makes a clone of the Weak
pointer that points to the same value.
Examples
use std::sync::{Arc, Weak}; let weak_five = Arc::downgrade(&Arc::new(5)); let _ = Weak::clone(&weak_five);Run
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for std::vec::IntoIter<T> where
T: Clone,
[src]
T: Clone,
ⓘImportant traits for IntoIter<T>fn clone(&self) -> IntoIter<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Clone for Vec<T> where
T: Clone,
[src]
T: Clone,
impl<T, E> Clone for Result<T, E> where
E: Clone,
T: Clone,
[src]
E: Clone,
T: Clone,
impl<T, F> Clone for Successors<T, F> where
F: Clone,
T: Clone,
[src]
F: Clone,
T: Clone,
ⓘImportant traits for Successors<T, F>fn clone(&self) -> Successors<T, F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
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<T: Clone> Clone for TrySendError<T>
[src]
impl<T: Clone> Clone for Cursor<T>
[src]
ⓘImportant traits for Cursor<T>fn clone(&self) -> Cursor<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T: Clone> Clone for SendError<T>
[src]
impl<T: Clone, S: Clone> Clone for HashSet<T, S>
[src]
impl<Y, R> Clone for GeneratorState<Y, R> where
R: Clone,
Y: Clone,
[src]
R: Clone,
Y: Clone,