1.0.0[−][src]Trait core::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 derived
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 derived, 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
Clonethemselves. 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"]pub fn clone(&self) -> Self[src]
Provided methods
pub fn clone_from(&mut self, source: &Self)[src]
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.
Implementors
impl Clone for ![src]
impl Clone for core::cmp::Ordering[src]
impl Clone for Infallible[src]
pub fn clone(&self) -> Infallible[src]
impl Clone for FpCategory[src]
pub fn clone(&self) -> FpCategory[src]
impl Clone for IntErrorKind[src]
pub fn clone(&self) -> IntErrorKind[src]
impl Clone for SearchStep[src]
pub fn clone(&self) -> SearchStep[src]
impl Clone for core::sync::atomic::Ordering[src]
impl Clone for AllocError[src]
pub fn clone(&self) -> AllocError[src]
impl Clone for Layout[src]
impl Clone for LayoutError[src]
pub fn clone(&self) -> LayoutError[src]
impl Clone for TypeId[src]
impl Clone for float64x1_t[src]
pub fn clone(&self) -> float64x1_t[src]
impl Clone for float64x2_t[src]
pub fn clone(&self) -> float64x2_t[src]
impl Clone for int8x16x2_t[src]
pub fn clone(&self) -> int8x16x2_t[src]
impl Clone for int8x16x3_t[src]
pub fn clone(&self) -> int8x16x3_t[src]
impl Clone for int8x16x4_t[src]
pub fn clone(&self) -> int8x16x4_t[src]
impl Clone for poly8x16x2_t[src]
pub fn clone(&self) -> poly8x16x2_t[src]
impl Clone for poly8x16x3_t[src]
pub fn clone(&self) -> poly8x16x3_t[src]
impl Clone for poly8x16x4_t[src]
pub fn clone(&self) -> poly8x16x4_t[src]
impl Clone for uint8x16x2_t[src]
pub fn clone(&self) -> uint8x16x2_t[src]
impl Clone for uint8x16x3_t[src]
pub fn clone(&self) -> uint8x16x3_t[src]
impl Clone for uint8x16x4_t[src]
pub fn clone(&self) -> uint8x16x4_t[src]
impl Clone for float32x2_t[src]
pub fn clone(&self) -> float32x2_t[src]
impl Clone for float32x4_t[src]
pub fn clone(&self) -> float32x4_t[src]
impl Clone for int8x8_t[src]
impl Clone for int8x8x2_t[src]
pub fn clone(&self) -> int8x8x2_t[src]
impl Clone for int8x8x3_t[src]
pub fn clone(&self) -> int8x8x3_t[src]
impl Clone for int8x8x4_t[src]
pub fn clone(&self) -> int8x8x4_t[src]
impl Clone for int8x16_t[src]
impl Clone for int16x4_t[src]
impl Clone for int16x8_t[src]
impl Clone for int32x2_t[src]
impl Clone for int32x4_t[src]
impl Clone for int64x1_t[src]
impl Clone for int64x2_t[src]
impl Clone for poly8x8_t[src]
impl Clone for poly8x8x2_t[src]
pub fn clone(&self) -> poly8x8x2_t[src]
impl Clone for poly8x8x3_t[src]
pub fn clone(&self) -> poly8x8x3_t[src]
impl Clone for poly8x8x4_t[src]
pub fn clone(&self) -> poly8x8x4_t[src]
impl Clone for poly8x16_t[src]
pub fn clone(&self) -> poly8x16_t[src]
impl Clone for poly16x4_t[src]
pub fn clone(&self) -> poly16x4_t[src]
impl Clone for poly16x8_t[src]
pub fn clone(&self) -> poly16x8_t[src]
impl Clone for poly64x1_t[src]
pub fn clone(&self) -> poly64x1_t[src]
impl Clone for poly64x2_t[src]
pub fn clone(&self) -> poly64x2_t[src]
impl Clone for uint8x8_t[src]
impl Clone for uint8x8x2_t[src]
pub fn clone(&self) -> uint8x8x2_t[src]
impl Clone for uint8x8x3_t[src]
pub fn clone(&self) -> uint8x8x3_t[src]
impl Clone for uint8x8x4_t[src]
pub fn clone(&self) -> uint8x8x4_t[src]
impl Clone for uint8x16_t[src]
pub fn clone(&self) -> uint8x16_t[src]
impl Clone for uint16x4_t[src]
pub fn clone(&self) -> uint16x4_t[src]
impl Clone for uint16x8_t[src]
pub fn clone(&self) -> uint16x8_t[src]
impl Clone for uint32x2_t[src]
pub fn clone(&self) -> uint32x2_t[src]
impl Clone for uint32x4_t[src]
pub fn clone(&self) -> uint32x4_t[src]
impl Clone for uint64x1_t[src]
pub fn clone(&self) -> uint64x1_t[src]
impl Clone for uint64x2_t[src]
pub fn clone(&self) -> uint64x2_t[src]
impl Clone for vector_bool_long[src]
pub fn clone(&self) -> vector_bool_long[src]
impl Clone for vector_double[src]
pub fn clone(&self) -> vector_double[src]
impl Clone for vector_signed_long[src]
pub fn clone(&self) -> vector_signed_long[src]
impl Clone for vector_unsigned_long[src]
pub fn clone(&self) -> vector_unsigned_long[src]
impl Clone for v128[src]
impl Clone for CpuidResult[src]
pub fn clone(&self) -> CpuidResult[src]
impl Clone for __m128[src]
impl Clone for __m128d[src]
impl Clone for __m128i[src]
impl Clone for __m256[src]
impl Clone for __m256d[src]
impl Clone for __m256i[src]
impl Clone for __m512[src]
impl Clone for __m512d[src]
impl Clone for __m512i[src]
impl Clone for TryFromSliceError[src]
pub fn clone(&self) -> TryFromSliceError[src]
impl Clone for core::ascii::EscapeDefault[src]
pub fn clone(&self) -> EscapeDefaultⓘNotable traits for EscapeDefault
impl Iterator for EscapeDefault type Item = u8;[src]
Notable traits for EscapeDefault
impl Iterator for EscapeDefault type Item = u8;impl Clone for CharTryFromError[src]
pub fn clone(&self) -> CharTryFromError[src]
impl Clone for DecodeUtf16Error[src]
pub fn clone(&self) -> DecodeUtf16Error[src]
impl Clone for core::char::EscapeDebug[src]
pub fn clone(&self) -> EscapeDebugⓘNotable traits for EscapeDebug
impl Iterator for EscapeDebug type Item = char;[src]
Notable traits for EscapeDebug
impl Iterator for EscapeDebug type Item = char;impl Clone for core::char::EscapeDefault[src]
pub fn clone(&self) -> EscapeDefaultⓘNotable traits for EscapeDefault
impl Iterator for EscapeDefault type Item = char;[src]
Notable traits for EscapeDefault
impl Iterator for EscapeDefault type Item = char;impl Clone for core::char::EscapeUnicode[src]
pub fn clone(&self) -> EscapeUnicodeⓘNotable traits for EscapeUnicode
impl Iterator for EscapeUnicode type Item = char;[src]
Notable traits for EscapeUnicode
impl Iterator for EscapeUnicode type Item = char;impl Clone for ParseCharError[src]
pub fn clone(&self) -> ParseCharError[src]
impl Clone for ToLowercase[src]
pub fn clone(&self) -> ToLowercaseⓘNotable traits for ToLowercase
impl Iterator for ToLowercase type Item = char;[src]
Notable traits for ToLowercase
impl Iterator for ToLowercase type Item = char;impl Clone for ToUppercase[src]
pub fn clone(&self) -> ToUppercaseⓘNotable traits for ToUppercase
impl Iterator for ToUppercase type Item = char;[src]
Notable traits for ToUppercase
impl Iterator for ToUppercase type Item = char;impl Clone for Error[src]
impl Clone for SipHasher[src]
impl Clone for PhantomPinned[src]
pub fn clone(&self) -> PhantomPinned[src]
impl Clone for NonZeroI8[src]
impl Clone for NonZeroI16[src]
pub fn clone(&self) -> NonZeroI16[src]
impl Clone for NonZeroI32[src]
pub fn clone(&self) -> NonZeroI32[src]
impl Clone for NonZeroI64[src]
pub fn clone(&self) -> NonZeroI64[src]
impl Clone for NonZeroI128[src]
pub fn clone(&self) -> NonZeroI128[src]
impl Clone for NonZeroIsize[src]
pub fn clone(&self) -> NonZeroIsize[src]
impl Clone for NonZeroU8[src]
impl Clone for NonZeroU16[src]
pub fn clone(&self) -> NonZeroU16[src]
impl Clone for NonZeroU32[src]
pub fn clone(&self) -> NonZeroU32[src]
impl Clone for NonZeroU64[src]
pub fn clone(&self) -> NonZeroU64[src]
impl Clone for NonZeroU128[src]
pub fn clone(&self) -> NonZeroU128[src]
impl Clone for NonZeroUsize[src]
pub fn clone(&self) -> NonZeroUsize[src]
impl Clone for ParseFloatError[src]
pub fn clone(&self) -> ParseFloatError[src]
impl Clone for ParseIntError[src]
pub fn clone(&self) -> ParseIntError[src]
impl Clone for TryFromIntError[src]
pub fn clone(&self) -> TryFromIntError[src]
impl Clone for RangeFull[src]
impl Clone for NoneError[src]
impl Clone for TraitObject[src]
pub fn clone(&self) -> TraitObject[src]
impl Clone for ParseBoolError[src]
pub fn clone(&self) -> ParseBoolError[src]
impl Clone for Utf8Error[src]
impl Clone for RawWakerVTable[src]
pub fn clone(&self) -> RawWakerVTable[src]
impl Clone for Waker[src]
impl Clone for Duration[src]
impl Clone for bool[src]
impl Clone for char[src]
impl Clone for f32[src]
impl Clone for f64[src]
impl Clone for i8[src]
impl Clone for i16[src]
impl Clone for i32[src]
impl Clone for i64[src]
impl Clone for i128[src]
impl Clone for isize[src]
impl Clone for u8[src]
impl Clone for u16[src]
impl Clone for u32[src]
impl Clone for u64[src]
impl Clone for u128[src]
impl Clone for usize[src]
impl<'a> Clone for Arguments<'a>[src]
impl<'a> Clone for Location<'a>[src]
impl<'a> Clone for CharSearcher<'a>[src]
pub fn clone(&self) -> CharSearcher<'a>[src]
impl<'a> Clone for Bytes<'a>[src]
impl<'a> Clone for CharIndices<'a>[src]
pub fn clone(&self) -> CharIndices<'a>ⓘNotable traits for CharIndices<'a>
impl<'a> Iterator for CharIndices<'a> type Item = (usize, char);[src]
Notable traits for CharIndices<'a>
impl<'a> Iterator for CharIndices<'a> type Item = (usize, char);impl<'a> Clone for Chars<'a>[src]
impl<'a> Clone for EncodeUtf16<'a>[src]
pub fn clone(&self) -> EncodeUtf16<'a>ⓘNotable traits for EncodeUtf16<'a>
impl<'a> Iterator for EncodeUtf16<'a> type Item = u16;[src]
Notable traits for EncodeUtf16<'a>
impl<'a> Iterator for EncodeUtf16<'a> type Item = u16;impl<'a> Clone for core::str::EscapeDebug<'a>[src]
pub fn clone(&self) -> EscapeDebug<'a>ⓘNotable traits for EscapeDebug<'a>
impl<'a> Iterator for EscapeDebug<'a> type Item = char;[src]
Notable traits for EscapeDebug<'a>
impl<'a> Iterator for EscapeDebug<'a> type Item = char;impl<'a> Clone for core::str::EscapeDefault<'a>[src]
pub fn clone(&self) -> EscapeDefault<'a>ⓘNotable traits for EscapeDefault<'a>
impl<'a> Iterator for EscapeDefault<'a> type Item = char;[src]
Notable traits for EscapeDefault<'a>
impl<'a> Iterator for EscapeDefault<'a> type Item = char;impl<'a> Clone for core::str::EscapeUnicode<'a>[src]
pub fn clone(&self) -> EscapeUnicode<'a>ⓘNotable traits for EscapeUnicode<'a>
impl<'a> Iterator for EscapeUnicode<'a> type Item = char;[src]
Notable traits for EscapeUnicode<'a>
impl<'a> Iterator for EscapeUnicode<'a> type Item = char;impl<'a> Clone for Lines<'a>[src]
impl<'a> Clone for LinesAny<'a>[src]
impl<'a> Clone for SplitAsciiWhitespace<'a>[src]
pub fn clone(&self) -> SplitAsciiWhitespace<'a>ⓘNotable traits for SplitAsciiWhitespace<'a>
impl<'a> Iterator for SplitAsciiWhitespace<'a> type Item = &'a str;[src]
Notable traits for SplitAsciiWhitespace<'a>
impl<'a> Iterator for SplitAsciiWhitespace<'a> type Item = &'a str;impl<'a> Clone for SplitWhitespace<'a>[src]
pub fn clone(&self) -> SplitWhitespace<'a>ⓘNotable traits for SplitWhitespace<'a>
impl<'a> Iterator for SplitWhitespace<'a> type Item = &'a str;[src]
Notable traits for SplitWhitespace<'a>
impl<'a> Iterator for SplitWhitespace<'a> type Item = &'a str;impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>[src]
pub fn clone(&self) -> CharSliceSearcher<'a, 'b>[src]
impl<'a, 'b> Clone for StrSearcher<'a, 'b>[src]
pub fn clone(&self) -> StrSearcher<'a, 'b>[src]
impl<'a, F: Clone> Clone for CharPredicateSearcher<'a, F> where
F: FnMut(char) -> bool, [src]
F: FnMut(char) -> bool,
pub fn clone(&self) -> CharPredicateSearcher<'a, F>[src]
impl<'a, P> Clone for MatchIndices<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for Matches<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for RMatchIndices<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for RMatches<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for core::str::RSplit<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for RSplitN<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for RSplitTerminator<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for core::str::Split<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for SplitN<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, P> Clone for SplitTerminator<'a, P> where
P: Pattern<'a, Searcher: Clone>, [src]
P: Pattern<'a, Searcher: Clone>,
impl<'a, T> Clone for RChunksExact<'a, T>[src]
pub fn clone(&self) -> RChunksExact<'a, T>ⓘNotable traits for RChunksExact<'a, T>
impl<'a, T> Iterator for RChunksExact<'a, T> type Item = &'a [T];[src]
Notable traits for RChunksExact<'a, T>
impl<'a, T> Iterator for RChunksExact<'a, T> type Item = &'a [T];impl<'a, T: Clone + 'a, P: Clone> Clone for core::slice::RSplit<'a, T, P> where
P: FnMut(&T) -> bool, [src]
P: FnMut(&T) -> bool,
impl<'a, T: Clone + 'a, const N: usize> Clone for ArrayWindows<'a, T, N>[src]
pub fn clone(&self) -> ArrayWindows<'a, T, N>ⓘNotable traits for ArrayWindows<'a, T, N>
impl<'a, T, const N: usize> Iterator for ArrayWindows<'a, T, N> type Item = &'a [T; N];[src]
Notable traits for ArrayWindows<'a, T, N>
impl<'a, T, const N: usize> Iterator for ArrayWindows<'a, T, N> type Item = &'a [T; N];impl<'f> Clone for VaListImpl<'f>[src]
impl<A> Clone for core::option::Iter<'_, A>[src]
impl<A: Clone> Clone for Repeat<A>[src]
impl<A: Clone> Clone for core::option::IntoIter<A>[src]
impl<A: Clone, B: Clone> Clone for Chain<A, B>[src]
impl<A: Clone, B: Clone> Clone for Zip<A, B>[src]
impl<B: Clone, C: Clone> Clone for ControlFlow<B, C>[src]
pub fn clone(&self) -> ControlFlow<B, C>[src]
impl<F: Clone> Clone for FromFn<F>[src]
impl<F: Clone> Clone for OnceWith<F>[src]
impl<F: Clone> Clone for RepeatWith<F>[src]
pub fn clone(&self) -> RepeatWith<F>ⓘNotable traits for RepeatWith<F>
impl<A, F: FnMut() -> A> Iterator for RepeatWith<F> type Item = A;[src]
Notable traits for RepeatWith<F>
impl<A, F: FnMut() -> A> Iterator for RepeatWith<F> type Item = A;impl<H> Clone for BuildHasherDefault<H>[src]
pub fn clone(&self) -> BuildHasherDefault<H>[src]
impl<I, U> Clone for Flatten<I> where
I: Clone + Iterator<Item: IntoIterator<IntoIter = U, Item = U::Item>>,
U: Clone + Iterator, [src]
I: Clone + Iterator<Item: IntoIterator<IntoIter = U, Item = U::Item>>,
U: Clone + Iterator,
impl<I: Clone + Iterator> Clone for Intersperse<I> where
I::Item: Clone,
I::Item: Clone, [src]
I::Item: Clone,
I::Item: Clone,
pub fn clone(&self) -> Intersperse<I>ⓘNotable traits for Intersperse<I>
impl<I> Iterator for Intersperse<I> where
I: Iterator,
I::Item: Clone, type Item = I::Item;[src]
Notable traits for Intersperse<I>
impl<I> Iterator for Intersperse<I> where
I: Iterator,
I::Item: Clone, type Item = I::Item;impl<I: Clone + Iterator> Clone for Peekable<I> where
I::Item: Clone, [src]
I::Item: Clone,
impl<I: Clone> Clone for DecodeUtf16<I> where
I: Iterator<Item = u16>, [src]
I: Iterator<Item = u16>,
pub fn clone(&self) -> DecodeUtf16<I>ⓘNotable traits for DecodeUtf16<I>
impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> type Item = Result<char, DecodeUtf16Error>;[src]
Notable traits for DecodeUtf16<I>
impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> type Item = Result<char, DecodeUtf16Error>;impl<I: Clone> Clone for Cloned<I>[src]
impl<I: Clone> Clone for Copied<I>[src]
impl<I: Clone> Clone for Cycle<I>[src]
impl<I: Clone> Clone for Enumerate<I>[src]
impl<I: Clone> Clone for Fuse<I>[src]
impl<I: Clone> Clone for Skip<I>[src]
impl<I: Clone> Clone for StepBy<I>[src]
impl<I: Clone> Clone for Take<I>[src]
impl<I: Clone, F: Clone> Clone for FilterMap<I, F>[src]
impl<I: Clone, F: Clone> Clone for Inspect<I, F>[src]
impl<I: Clone, F: Clone> Clone for Map<I, F>[src]
impl<I: Clone, P: Clone> Clone for Filter<I, P>[src]
impl<I: Clone, P: Clone> Clone for MapWhile<I, P>[src]
impl<I: Clone, P: Clone> Clone for SkipWhile<I, P>[src]
impl<I: Clone, P: Clone> Clone for TakeWhile<I, P>[src]
impl<I: Clone, St: Clone, F: Clone> Clone for Scan<I, St, F>[src]
impl<I: Clone, U, F: Clone> Clone for FlatMap<I, U, F> where
U: Clone + IntoIterator<IntoIter: Clone>, [src]
U: Clone + IntoIterator<IntoIter: Clone>,
impl<Idx: Clone> Clone for Range<Idx>[src]
impl<Idx: Clone> Clone for RangeFrom<Idx>[src]
impl<Idx: Clone> Clone for RangeInclusive<Idx>[src]
pub fn clone(&self) -> RangeInclusive<Idx>ⓘNotable traits for RangeInclusive<A>
impl<A: Step> Iterator for RangeInclusive<A> type Item = A;[src]
Notable traits for RangeInclusive<A>
impl<A: Step> Iterator for RangeInclusive<A> type Item = A;impl<Idx: Clone> Clone for RangeTo<Idx>[src]
impl<Idx: Clone> Clone for RangeToInclusive<Idx>[src]
pub fn clone(&self) -> RangeToInclusive<Idx>[src]
impl<P: Clone> Clone for Pin<P>[src]
impl<T> Clone for Pending<T>[src]
impl<T> Clone for Empty<T>[src]
impl<T> Clone for Discriminant<T>[src]
impl<T> Clone for core::result::Iter<'_, T>[src]
impl<T> Clone for Chunks<'_, T>[src]
impl<T> Clone for ChunksExact<'_, T>[src]
impl<T> Clone for core::slice::Iter<'_, T>[src]
impl<T> Clone for RChunks<'_, T>[src]
impl<T> Clone for Windows<'_, T>[src]
impl<T, P> Clone for core::slice::Split<'_, T, P> where
P: Clone + FnMut(&T) -> bool, [src]
P: Clone + FnMut(&T) -> bool,
impl<T, P> Clone for SplitInclusive<'_, T, P> where
P: Clone + FnMut(&T) -> bool, [src]
P: Clone + FnMut(&T) -> bool,
impl<T, const N: usize> Clone for ArrayChunks<'_, T, N>[src]
impl<T: Clone + ?Sized> Clone for ManuallyDrop<T>[src]
pub fn clone(&self) -> ManuallyDrop<T>[src]
impl<T: Clone> Clone for Bound<T>[src]
impl<T: Clone> Clone for Option<T>[src]
pub fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)[src]
impl<T: Clone> Clone for Poll<T>[src]
impl<T: Clone> Clone for RefCell<T>[src]
impl<T: Clone> Clone for Reverse<T>[src]
impl<T: Clone> Clone for Ready<T>[src]
impl<T: Clone> Clone for Once<T>[src]
impl<T: Clone> Clone for Rev<T>[src]
impl<T: Clone> Clone for OnceCell<T>[src]
impl<T: Clone> Clone for Wrapping<T>[src]
impl<T: Clone> Clone for core::result::IntoIter<T>[src]
impl<T: Clone, E: Clone> Clone for Result<T, E>[src]
pub fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)[src]
impl<T: Clone, F: Clone> Clone for Successors<T, F>[src]
pub fn clone(&self) -> Successors<T, F>ⓘNotable traits for Successors<T, F>
impl<T, F> Iterator for Successors<T, F> where
F: FnMut(&T) -> Option<T>, type Item = T;[src]
Notable traits for Successors<T, F>
impl<T, F> Iterator for Successors<T, F> where
F: FnMut(&T) -> Option<T>, type Item = T;impl<T: Clone, const N: usize> Clone for core::array::IntoIter<T, N>[src]
impl<T: Copy> Clone for Cell<T>[src]
impl<T: Copy> Clone for MaybeUninit<T>[src]
impl<T: ?Sized> !Clone for &mut T[src]
Shared references can be cloned, but mutable references cannot!
impl<T: ?Sized> Clone for &T[src]
Shared references can be cloned, but mutable references cannot!