Trait core::clone::Clone

1.0.0 · source ·
pub trait Clone: Sized {
    // Required method
    fn clone(&self) -> Self;

    // Provided method
    fn clone_from(&mut self, source: &Self) { ... }
}
Expand description

A common trait for the ability to explicitly duplicate an object.

Differs from Copy in that Copy is implicit and an inexpensive bit-wise copy, 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

If we derive:

#[derive(Copy, Clone)]
struct Generate<T>(fn() -> T);
Run

the auto-derived implementations will have unnecessary T: Copy and T: Clone bounds:


// Automatically derived
impl<T: Copy> Copy for Generate<T> { }

// Automatically derived
impl<T: Clone> Clone for Generate<T> {
    fn clone(&self) -> Generate<T> {
        Generate(Clone::clone(&self.0))
    }
}
Run

The bounds are unnecessary because clearly the function itself should be copy- and cloneable even if its return type is not:

#[derive(Copy, Clone)]
struct Generate<T>(fn() -> T);

struct NotCloneable;

fn generate_not_cloneable() -> NotCloneable {
    NotCloneable
}

Generate(generate_not_cloneable).clone(); // error: trait bounds were not satisfied
// Note: With the manual implementations the above line will compile.
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)
  • 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 implement Clone (even if the referent doesn’t), while variables captured by mutable reference never implement Clone.

Required Methods§

1.0.0 · source

fn clone(&self) -> Self

Returns a copy of the value.

§Examples
let hello = "Hello"; // &str implements Clone

assert_eq!("Hello", hello.clone());
Run

Provided Methods§

1.0.0 · source

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.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Clone for AsciiChar

1.0.0 · source§

impl Clone for core::cmp::Ordering

1.34.0 · source§

impl Clone for Infallible

1.28.0 · source§

impl Clone for core::fmt::Alignment

1.7.0 · source§

impl Clone for IpAddr

source§

impl Clone for Ipv6MulticastScope

1.0.0 · source§

impl Clone for SocketAddr

1.0.0 · source§

impl Clone for FpCategory

1.55.0 · source§

impl Clone for IntErrorKind

source§

impl Clone for SearchStep

1.0.0 · source§

impl Clone for core::sync::atomic::Ordering

1.0.0 · source§

impl Clone for bool

1.0.0 · source§

impl Clone for char

1.0.0 · source§

impl Clone for f16

1.0.0 · source§

impl Clone for f32

1.0.0 · source§

impl Clone for f64

1.0.0 · source§

impl Clone for f128

1.0.0 · source§

impl Clone for i8

1.0.0 · source§

impl Clone for i16

1.0.0 · source§

impl Clone for i32

1.0.0 · source§

impl Clone for i64

1.0.0 · source§

impl Clone for i128

1.0.0 · source§

impl Clone for isize

source§

impl Clone for !

1.0.0 · source§

impl Clone for u8

1.0.0 · source§

impl Clone for u16

1.0.0 · source§

impl Clone for u32

1.0.0 · source§

impl Clone for u64

1.0.0 · source§

impl Clone for u128

1.0.0 · source§

impl Clone for usize

source§

impl Clone for AllocError

1.28.0 · source§

impl Clone for Layout

1.50.0 · source§

impl Clone for LayoutError

1.0.0 · source§

impl Clone for TypeId

1.59.0 · source§

impl Clone for float64x1_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x1x2_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x1x3_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x1x4_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x2_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x2x2_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x2x3_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float64x2x4_t

Available on AArch64 or target_arch="arm64ec" only.
1.59.0 · source§

impl Clone for float32x2_t

1.59.0 · source§

impl Clone for float32x2x2_t

1.59.0 · source§

impl Clone for float32x2x3_t

1.59.0 · source§

impl Clone for float32x2x4_t

1.59.0 · source§

impl Clone for float32x4_t

1.59.0 · source§

impl Clone for float32x4x2_t

1.59.0 · source§

impl Clone for float32x4x3_t

1.59.0 · source§

impl Clone for float32x4x4_t

source§

impl Clone for int8x4_t

Available on ARM only.
1.59.0 · source§

impl Clone for int8x8_t

1.59.0 · source§

impl Clone for int8x8x2_t

1.59.0 · source§

impl Clone for int8x8x3_t

1.59.0 · source§

impl Clone for int8x8x4_t

1.59.0 · source§

impl Clone for int8x16_t

1.59.0 · source§

impl Clone for int8x16x2_t

1.59.0 · source§

impl Clone for int8x16x3_t

1.59.0 · source§

impl Clone for int8x16x4_t

source§

impl Clone for int16x2_t

Available on ARM only.
1.59.0 · source§

impl Clone for int16x4_t

1.59.0 · source§

impl Clone for int16x4x2_t

1.59.0 · source§

impl Clone for int16x4x3_t

1.59.0 · source§

impl Clone for int16x4x4_t

1.59.0 · source§

impl Clone for int16x8_t

1.59.0 · source§

impl Clone for int16x8x2_t

1.59.0 · source§

impl Clone for int16x8x3_t

1.59.0 · source§

impl Clone for int16x8x4_t

1.59.0 · source§

impl Clone for int32x2_t

1.59.0 · source§

impl Clone for int32x2x2_t

1.59.0 · source§

impl Clone for int32x2x3_t

1.59.0 · source§

impl Clone for int32x2x4_t

1.59.0 · source§

impl Clone for int32x4_t

1.59.0 · source§

impl Clone for int32x4x2_t

1.59.0 · source§

impl Clone for int32x4x3_t

1.59.0 · source§

impl Clone for int32x4x4_t

1.59.0 · source§

impl Clone for int64x1_t

1.59.0 · source§

impl Clone for int64x1x2_t

1.59.0 · source§

impl Clone for int64x1x3_t

1.59.0 · source§

impl Clone for int64x1x4_t

1.59.0 · source§

impl Clone for int64x2_t

1.59.0 · source§

impl Clone for int64x2x2_t

1.59.0 · source§

impl Clone for int64x2x3_t

1.59.0 · source§

impl Clone for int64x2x4_t

1.59.0 · source§

impl Clone for poly8x8_t

1.59.0 · source§

impl Clone for poly8x8x2_t

1.59.0 · source§

impl Clone for poly8x8x3_t

1.59.0 · source§

impl Clone for poly8x8x4_t

1.59.0 · source§

impl Clone for poly8x16_t

1.59.0 · source§

impl Clone for poly8x16x2_t

1.59.0 · source§

impl Clone for poly8x16x3_t

1.59.0 · source§

impl Clone for poly8x16x4_t

1.59.0 · source§

impl Clone for poly16x4_t

1.59.0 · source§

impl Clone for poly16x4x2_t

1.59.0 · source§

impl Clone for poly16x4x3_t

1.59.0 · source§

impl Clone for poly16x4x4_t

1.59.0 · source§

impl Clone for poly16x8_t

1.59.0 · source§

impl Clone for poly16x8x2_t

1.59.0 · source§

impl Clone for poly16x8x3_t

1.59.0 · source§

impl Clone for poly16x8x4_t

1.59.0 · source§

impl Clone for poly64x1_t

1.59.0 · source§

impl Clone for poly64x1x2_t

1.59.0 · source§

impl Clone for poly64x1x3_t

1.59.0 · source§

impl Clone for poly64x1x4_t

1.59.0 · source§

impl Clone for poly64x2_t

1.59.0 · source§

impl Clone for poly64x2x2_t

1.59.0 · source§

impl Clone for poly64x2x3_t

1.59.0 · source§

impl Clone for poly64x2x4_t

source§

impl Clone for uint8x4_t

Available on ARM only.
1.59.0 · source§

impl Clone for uint8x8_t

1.59.0 · source§

impl Clone for uint8x8x2_t

1.59.0 · source§

impl Clone for uint8x8x3_t

1.59.0 · source§

impl Clone for uint8x8x4_t

1.59.0 · source§

impl Clone for uint8x16_t

1.59.0 · source§

impl Clone for uint8x16x2_t

1.59.0 · source§

impl Clone for uint8x16x3_t

1.59.0 · source§

impl Clone for uint8x16x4_t

source§

impl Clone for uint16x2_t

Available on ARM only.
1.59.0 · source§

impl Clone for uint16x4_t

1.59.0 · source§

impl Clone for uint16x4x2_t

1.59.0 · source§

impl Clone for uint16x4x3_t

1.59.0 · source§

impl Clone for uint16x4x4_t

1.59.0 · source§

impl Clone for uint16x8_t

1.59.0 · source§

impl Clone for uint16x8x2_t

1.59.0 · source§

impl Clone for uint16x8x3_t

1.59.0 · source§

impl Clone for uint16x8x4_t

1.59.0 · source§

impl Clone for uint32x2_t

1.59.0 · source§

impl Clone for uint32x2x2_t

1.59.0 · source§

impl Clone for uint32x2x3_t

1.59.0 · source§

impl Clone for uint32x2x4_t

1.59.0 · source§

impl Clone for uint32x4_t

1.59.0 · source§

impl Clone for uint32x4x2_t

1.59.0 · source§

impl Clone for uint32x4x3_t

1.59.0 · source§

impl Clone for uint32x4x4_t

1.59.0 · source§

impl Clone for uint64x1_t

1.59.0 · source§

impl Clone for uint64x1x2_t

1.59.0 · source§

impl Clone for uint64x1x3_t

1.59.0 · source§

impl Clone for uint64x1x4_t

1.59.0 · source§

impl Clone for uint64x2_t

1.59.0 · source§

impl Clone for uint64x2x2_t

1.59.0 · source§

impl Clone for uint64x2x3_t

1.59.0 · source§

impl Clone for uint64x2x4_t

source§

impl Clone for v2f64

Available on LoongArch LA64 only.
source§

impl Clone for v2i64

Available on LoongArch LA64 only.
source§

impl Clone for v2u64

Available on LoongArch LA64 only.
source§

impl Clone for v4f32

Available on LoongArch LA64 only.
source§

impl Clone for v4f64

Available on LoongArch LA64 only.
source§

impl Clone for v4i32

Available on LoongArch LA64 only.
source§

impl Clone for v4i64

Available on LoongArch LA64 only.
source§

impl Clone for v4u32

Available on LoongArch LA64 only.
source§

impl Clone for v4u64

Available on LoongArch LA64 only.
source§

impl Clone for v8f32

Available on LoongArch LA64 only.
source§

impl Clone for v8i16

Available on LoongArch LA64 only.
source§

impl Clone for v8i32

Available on LoongArch LA64 only.
source§

impl Clone for v8u16

Available on LoongArch LA64 only.
source§

impl Clone for v8u32

Available on LoongArch LA64 only.
source§

impl Clone for v16i8

Available on LoongArch LA64 only.
source§

impl Clone for v16i16

Available on LoongArch LA64 only.
source§

impl Clone for v16u8

Available on LoongArch LA64 only.
source§

impl Clone for v16u16

Available on LoongArch LA64 only.
source§

impl Clone for v32i8

Available on LoongArch LA64 only.
source§

impl Clone for v32u8

Available on LoongArch LA64 only.
source§

impl Clone for vector_bool_char

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_bool_int

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_bool_long

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_bool_short

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_double

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_float

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_signed_char

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_signed_int

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_signed_long

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_signed_short

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_unsigned_char

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_unsigned_int

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_unsigned_long

Available on PowerPC or PowerPC-64 only.
source§

impl Clone for vector_unsigned_short

Available on PowerPC or PowerPC-64 only.
1.54.0 · source§

impl Clone for v128

Available on target_family="wasm" only.
1.27.0 · source§

impl Clone for CpuidResult

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m128

Available on x86 or x86-64 only.
source§

impl Clone for __m128bh

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m128d

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m128i

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m256

Available on x86 or x86-64 only.
source§

impl Clone for __m256bh

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m256d

Available on x86 or x86-64 only.
1.27.0 · source§

impl Clone for __m256i

Available on x86 or x86-64 only.
1.72.0 · source§

impl Clone for __m512

Available on x86 or x86-64 only.
source§

impl Clone for __m512bh

Available on x86 or x86-64 only.
1.72.0 · source§

impl Clone for __m512d

Available on x86 or x86-64 only.
1.72.0 · source§

impl Clone for __m512i

Available on x86 or x86-64 only.
1.34.0 · source§

impl Clone for TryFromSliceError

1.0.0 · source§

impl Clone for core::ascii::EscapeDefault

1.34.0 · source§

impl Clone for CharTryFromError

1.9.0 · source§

impl Clone for DecodeUtf16Error

1.20.0 · source§

impl Clone for core::char::EscapeDebug

1.0.0 · source§

impl Clone for core::char::EscapeDefault

1.0.0 · source§

impl Clone for core::char::EscapeUnicode

1.20.0 · source§

impl Clone for ParseCharError

1.0.0 · source§

impl Clone for ToLowercase

1.0.0 · source§

impl Clone for ToUppercase

1.59.0 · source§

impl Clone for TryFromCharError

1.69.0 · source§

impl Clone for FromBytesUntilNulError

1.64.0 · source§

impl Clone for FromBytesWithNulError

1.0.0 · source§

impl Clone for Error

1.0.0 · source§

impl Clone for SipHasher

1.33.0 · source§

impl Clone for PhantomPinned

source§

impl Clone for Assume

1.0.0 · source§

impl Clone for AddrParseError

1.0.0 · source§

impl Clone for Ipv4Addr

1.0.0 · source§

impl Clone for Ipv6Addr

1.0.0 · source§

impl Clone for SocketAddrV4

1.0.0 · source§

impl Clone for SocketAddrV6

1.0.0 · source§

impl Clone for ParseFloatError

1.0.0 · source§

impl Clone for ParseIntError

1.34.0 · source§

impl Clone for TryFromIntError

1.0.0 · source§

impl Clone for RangeFull

source§

impl Clone for core::ptr::Alignment

source§

impl Clone for TimSortRun

1.0.0 · source§

impl Clone for ParseBoolError

1.0.0 · source§

impl Clone for Utf8Error

source§

impl Clone for LocalWaker

1.36.0 · source§

impl Clone for RawWakerVTable

1.36.0 · source§

impl Clone for Waker

1.3.0 · source§

impl Clone for Duration

1.66.0 · source§

impl Clone for TryFromFloatSecsError

source§

impl<'a> Clone for Source<'a>

source§

impl<'a> Clone for core::ffi::c_str::Bytes<'a>

1.0.0 · source§

impl<'a> Clone for Arguments<'a>

1.10.0 · source§

impl<'a> Clone for Location<'a>

1.60.0 · source§

impl<'a> Clone for EscapeAscii<'a>

source§

impl<'a> Clone for CharSearcher<'a>

1.0.0 · source§

impl<'a> Clone for core::str::Bytes<'a>

1.0.0 · source§

impl<'a> Clone for CharIndices<'a>

1.0.0 · source§

impl<'a> Clone for Chars<'a>

1.8.0 · source§

impl<'a> Clone for EncodeUtf16<'a>

1.34.0 · source§

impl<'a> Clone for core::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Clone for core::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Clone for core::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Clone for Lines<'a>

1.0.0 · source§

impl<'a> Clone for LinesAny<'a>

1.34.0 · source§

impl<'a> Clone for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Clone for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Clone for Utf8Chunk<'a>

1.79.0 · source§

impl<'a> Clone for Utf8Chunks<'a>

source§

impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Clone for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Clone for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, F> Clone for CharPredicateSearcher<'a, F>
where F: FnMut(char) -> bool + Clone,

1.5.0 · source§

impl<'a, P> Clone for MatchIndices<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.2.0 · source§

impl<'a, P> Clone for Matches<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.5.0 · source§

impl<'a, P> Clone for RMatchIndices<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.2.0 · source§

impl<'a, P> Clone for RMatches<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for core::str::RSplit<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for RSplitN<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for RSplitTerminator<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for core::str::Split<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for SplitN<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.0.0 · source§

impl<'a, P> Clone for SplitTerminator<'a, P>
where P: Pattern<'a, Searcher: Clone>,

1.51.0 · source§

impl<'a, P: Pattern<'a, Searcher: Clone>> Clone for core::str::SplitInclusive<'a, P>

1.31.0 · source§

impl<'a, T> Clone for RChunksExact<'a, T>

source§

impl<'a, T: Clone + 'a, const N: usize> Clone for ArrayWindows<'a, T, N>

source§

impl<'a, const N: usize> Clone for CharArraySearcher<'a, N>

source§

impl<'f> Clone for VaListImpl<'f>

1.0.0 · source§

impl<A> Clone for core::option::Iter<'_, A>

1.0.0 · source§

impl<A: Clone> Clone for Repeat<A>

source§

impl<A: Clone> Clone for RepeatN<A>

1.0.0 · source§

impl<A: Clone> Clone for core::option::IntoIter<A>

1.0.0 · source§

impl<A: Clone, B: Clone> Clone for Chain<A, B>

1.0.0 · source§

impl<A: Clone, B: Clone> Clone for Zip<A, B>

1.55.0 · source§

impl<B: Clone, C: Clone> Clone for ControlFlow<B, C>

source§

impl<Dyn: ?Sized> Clone for DynMetadata<Dyn>

1.34.0 · source§

impl<F: Clone> Clone for FromFn<F>

1.43.0 · source§

impl<F: Clone> Clone for OnceWith<F>

1.28.0 · source§

impl<F: Clone> Clone for RepeatWith<F>

1.7.0 · source§

impl<H> Clone for BuildHasherDefault<H>

1.9.0 · source§

impl<I> Clone for DecodeUtf16<I>
where I: Iterator<Item = u16> + Clone,

source§

impl<I, F, const N: usize> Clone for MapWindows<I, F, N>
where I: Iterator + Clone, F: Clone, I::Item: Clone,

source§

impl<I, G> Clone for IntersperseWith<I, G>
where I: Iterator + Clone, I::Item: Clone, G: Clone,

1.29.0 · source§

impl<I, U> Clone for Flatten<I>
where I: Clone + Iterator<Item: IntoIterator<IntoIter = U, Item = U::Item>>, U: Clone + Iterator,

source§

impl<I: Clone + Iterator> Clone for Intersperse<I>
where I::Item: Clone + Clone,

1.0.0 · source§

impl<I: Clone + Iterator> Clone for Peekable<I>
where I::Item: Clone,

source§

impl<I: Clone + Iterator, const N: usize> Clone for core::iter::ArrayChunks<I, N>
where I::Item: Clone,

source§

impl<I: Clone> Clone for FromIter<I>

1.1.0 · source§

impl<I: Clone> Clone for Cloned<I>

1.36.0 · source§

impl<I: Clone> Clone for Copied<I>

1.0.0 · source§

impl<I: Clone> Clone for Cycle<I>

1.0.0 · source§

impl<I: Clone> Clone for Enumerate<I>

1.0.0 · source§

impl<I: Clone> Clone for Fuse<I>

1.0.0 · source§

impl<I: Clone> Clone for Skip<I>

1.28.0 · source§

impl<I: Clone> Clone for StepBy<I>

1.0.0 · source§

impl<I: Clone> Clone for Take<I>

1.0.0 · source§

impl<I: Clone, F: Clone> Clone for FilterMap<I, F>

1.0.0 · source§

impl<I: Clone, F: Clone> Clone for Inspect<I, F>

1.0.0 · source§

impl<I: Clone, F: Clone> Clone for Map<I, F>

1.0.0 · source§

impl<I: Clone, P: Clone> Clone for Filter<I, P>

1.57.0 · source§

impl<I: Clone, P: Clone> Clone for MapWhile<I, P>

1.0.0 · source§

impl<I: Clone, P: Clone> Clone for SkipWhile<I, P>

1.0.0 · source§

impl<I: Clone, P: Clone> Clone for TakeWhile<I, P>

1.0.0 · source§

impl<I: Clone, St: Clone, F: Clone> Clone for Scan<I, St, F>

1.0.0 · source§

impl<I: Clone, U, F: Clone> Clone for FlatMap<I, U, F>
where U: Clone + IntoIterator<IntoIter: Clone>,

1.0.0 · source§

impl<Idx: Clone> Clone for Range<Idx>

1.0.0 · source§

impl<Idx: Clone> Clone for RangeFrom<Idx>

1.26.0 · source§

impl<Idx: Clone> Clone for RangeInclusive<Idx>

1.0.0 · source§

impl<Idx: Clone> Clone for RangeTo<Idx>

1.26.0 · source§

impl<Idx: Clone> Clone for RangeToInclusive<Idx>

1.33.0 · source§

impl<Ptr: Clone> Clone for Pin<Ptr>

1.0.0 · source§

impl<T> Clone for Option<T>
where T: Clone,

1.48.0 · source§

impl<T> Clone for Pending<T>

1.2.0 · source§

impl<T> Clone for Empty<T>

1.21.0 · source§

impl<T> Clone for Discriminant<T>

1.28.0 · source§

impl<T> Clone for NonZero<T>

1.0.0 · source§

impl<T> Clone for core::result::Iter<'_, T>

1.0.0 · source§

impl<T> Clone for Chunks<'_, T>

1.31.0 · source§

impl<T> Clone for ChunksExact<'_, T>

1.0.0 · source§

impl<T> Clone for core::slice::Iter<'_, T>

1.31.0 · source§

impl<T> Clone for RChunks<'_, T>

1.0.0 · source§

impl<T> Clone for Windows<'_, T>

1.0.0 · source§

impl<T, E> Clone for Result<T, E>
where T: Clone, E: Clone,

1.27.0 · source§

impl<T, P> Clone for core::slice::RSplit<'_, T, P>
where P: Clone + FnMut(&T) -> bool,

1.0.0 · source§

impl<T, P> Clone for core::slice::Split<'_, T, P>
where P: Clone + FnMut(&T) -> bool,

1.51.0 · source§

impl<T, P> Clone for core::slice::SplitInclusive<'_, T, P>
where P: Clone + FnMut(&T) -> bool,

source§

impl<T, const N: usize> Clone for Mask<T, N>

source§

impl<T, const N: usize> Clone for Simd<T, N>

source§

impl<T, const N: usize> Clone for core::slice::ArrayChunks<'_, T, N>

1.0.0 · source§

impl<T: Copy> Clone for Cell<T>

1.36.0 · source§

impl<T: Copy> Clone for MaybeUninit<T>

1.20.0 · source§

impl<T: Clone + ?Sized> Clone for ManuallyDrop<T>

1.17.0 · source§

impl<T: Clone> Clone for Bound<T>

1.36.0 · source§

impl<T: Clone> Clone for Poll<T>

1.70.0 · source§

impl<T: Clone> Clone for OnceCell<T>

1.0.0 · source§

impl<T: Clone> Clone for RefCell<T>

1.19.0 · source§

impl<T: Clone> Clone for Reverse<T>

1.48.0 · source§

impl<T: Clone> Clone for Ready<T>

1.2.0 · source§

impl<T: Clone> Clone for Once<T>

1.0.0 · source§

impl<T: Clone> Clone for Rev<T>

1.74.0 · source§

impl<T: Clone> Clone for Saturating<T>

1.0.0 · source§

impl<T: Clone> Clone for Wrapping<T>

1.0.0 · source§

impl<T: Clone> Clone for core::result::IntoIter<T>

1.34.0 · source§

impl<T: Clone, F: Clone> Clone for Successors<T, F>

1.58.0 · source§

impl<T: Clone, const N: usize> Clone for [T; N]

1.40.0 · source§

impl<T: Clone, const N: usize> Clone for core::array::IntoIter<T, N>

1.0.0 · source§

impl<T: ?Sized> !Clone for &mut T

Shared references can be cloned, but mutable references cannot!

1.0.0 · source§

impl<T: ?Sized> Clone for *const T

1.0.0 · source§

impl<T: ?Sized> Clone for *mut T

1.0.0 · source§

impl<T: ?Sized> Clone for &T

Shared references can be cloned, but mutable references cannot!

1.0.0 · source§

impl<T: ?Sized> Clone for PhantomData<T>

1.25.0 · source§

impl<T: ?Sized> Clone for NonNull<T>

source§

impl<Y: Clone, R: Clone> Clone for CoroutineState<Y, R>