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 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.
Implementors
impl Clone for !
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for core::cmp::Ordering
[src]
fn clone(&self) -> Ordering
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for Infallible
[src]
fn clone(&self) -> Infallible
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for FpCategory
[src]
fn clone(&self) -> FpCategory
[src]
fn clone_from(&mut self, source: &Self)
[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 SearchStep
[src]
fn clone(&self) -> SearchStep
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for core::sync::atomic::Ordering
[src]
fn clone(&self) -> Ordering
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for AllocErr
[src]
fn clone(&self) -> AllocErr
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for CannotReallocInPlace
[src]
fn clone(&self) -> CannotReallocInPlace
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for Layout
[src]
fn clone(&self) -> Layout
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for LayoutErr
[src]
fn clone(&self) -> LayoutErr
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for TypeId
[src]
fn clone(&self) -> TypeId
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for float64x1_t
[src]
fn clone(&self) -> float64x1_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for float64x2_t
[src]
fn clone(&self) -> float64x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x16x2_t
[src]
fn clone(&self) -> int8x16x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x16x3_t
[src]
fn clone(&self) -> int8x16x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x16x4_t
[src]
fn clone(&self) -> int8x16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly64x1_t
[src]
fn clone(&self) -> poly64x1_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly64x2_t
[src]
fn clone(&self) -> poly64x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x16x2_t
[src]
fn clone(&self) -> poly8x16x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x16x3_t
[src]
fn clone(&self) -> poly8x16x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x16x4_t
[src]
fn clone(&self) -> poly8x16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x16x2_t
[src]
fn clone(&self) -> uint8x16x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x16x3_t
[src]
fn clone(&self) -> uint8x16x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x16x4_t
[src]
fn clone(&self) -> uint8x16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for float32x2_t
[src]
fn clone(&self) -> float32x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for float32x4_t
[src]
fn clone(&self) -> float32x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int16x4_t
[src]
fn clone(&self) -> int16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int16x8_t
[src]
fn clone(&self) -> int16x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int32x2_t
[src]
fn clone(&self) -> int32x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int32x4_t
[src]
fn clone(&self) -> int32x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int64x1_t
[src]
fn clone(&self) -> int64x1_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int64x2_t
[src]
fn clone(&self) -> int64x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x16_t
[src]
fn clone(&self) -> int8x16_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x8_t
[src]
fn clone(&self) -> int8x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x8x2_t
[src]
fn clone(&self) -> int8x8x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x8x3_t
[src]
fn clone(&self) -> int8x8x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for int8x8x4_t
[src]
fn clone(&self) -> int8x8x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly16x4_t
[src]
fn clone(&self) -> poly16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly16x8_t
[src]
fn clone(&self) -> poly16x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x16_t
[src]
fn clone(&self) -> poly8x16_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x8_t
[src]
fn clone(&self) -> poly8x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x8x2_t
[src]
fn clone(&self) -> poly8x8x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x8x3_t
[src]
fn clone(&self) -> poly8x8x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for poly8x8x4_t
[src]
fn clone(&self) -> poly8x8x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint16x4_t
[src]
fn clone(&self) -> uint16x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint16x8_t
[src]
fn clone(&self) -> uint16x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint32x2_t
[src]
fn clone(&self) -> uint32x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint32x4_t
[src]
fn clone(&self) -> uint32x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint64x1_t
[src]
fn clone(&self) -> uint64x1_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint64x2_t
[src]
fn clone(&self) -> uint64x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x16_t
[src]
fn clone(&self) -> uint8x16_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x8_t
[src]
fn clone(&self) -> uint8x8_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x8x2_t
[src]
fn clone(&self) -> uint8x8x2_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x8x3_t
[src]
fn clone(&self) -> uint8x8x3_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for uint8x8x4_t
[src]
fn clone(&self) -> uint8x8x4_t
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v16i8
[src]
fn clone(&self) -> v16i8
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v16u8
[src]
fn clone(&self) -> v16u8
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v2f64
[src]
fn clone(&self) -> v2f64
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v2i64
[src]
fn clone(&self) -> v2i64
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v2u64
[src]
fn clone(&self) -> v2u64
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v4f32
[src]
fn clone(&self) -> v4f32
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v4i32
[src]
fn clone(&self) -> v4i32
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v4u32
[src]
fn clone(&self) -> v4u32
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v8i16
[src]
fn clone(&self) -> v8i16
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v8u16
[src]
fn clone(&self) -> v8u16
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for vector_bool_long
[src]
fn clone(&self) -> vector_bool_long
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for vector_double
[src]
fn clone(&self) -> vector_double
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for vector_signed_long
[src]
fn clone(&self) -> vector_signed_long
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for vector_unsigned_long
[src]
fn clone(&self) -> vector_unsigned_long
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for v128
[src]
fn clone(&self) -> v128
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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 __m128
[src]
fn clone(&self) -> __m128
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m128d
[src]
fn clone(&self) -> __m128d
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m128i
[src]
fn clone(&self) -> __m128i
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m256
[src]
fn clone(&self) -> __m256
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m256d
[src]
fn clone(&self) -> __m256d
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m256i
[src]
fn clone(&self) -> __m256i
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m512
[src]
fn clone(&self) -> __m512
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m512d
[src]
fn clone(&self) -> __m512d
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m512i
[src]
fn clone(&self) -> __m512i
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for __m64
[src]
fn clone(&self) -> __m64
[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 Clone for CharTryFromError
[src]
fn clone(&self) -> CharTryFromError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for DecodeUtf16Error
[src]
fn clone(&self) -> DecodeUtf16Error
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for core::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 core::char::EscapeDefault
[src]
ⓘImportant traits for EscapeDefaultfn clone(&self) -> EscapeDefault
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for core::char::EscapeUnicode
[src]
ⓘImportant traits for EscapeUnicodefn clone(&self) -> EscapeUnicode
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for ParseCharError
[src]
fn clone(&self) -> ParseCharError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn clone(&self) -> UnicodeVersion
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for Error
[src]
fn clone(&self) -> Error
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for SipHasher
[src]
fn clone(&self) -> SipHasher
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for PhantomPinned
[src]
fn clone(&self) -> PhantomPinned
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroI128
[src]
fn clone(&self) -> NonZeroI128
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroI16
[src]
fn clone(&self) -> NonZeroI16
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroI32
[src]
fn clone(&self) -> NonZeroI32
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroI64
[src]
fn clone(&self) -> NonZeroI64
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroI8
[src]
fn clone(&self) -> NonZeroI8
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroIsize
[src]
fn clone(&self) -> NonZeroIsize
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroU128
[src]
fn clone(&self) -> NonZeroU128
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroU16
[src]
fn clone(&self) -> NonZeroU16
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroU32
[src]
fn clone(&self) -> NonZeroU32
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroU64
[src]
fn clone(&self) -> NonZeroU64
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroU8
[src]
fn clone(&self) -> NonZeroU8
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for NonZeroUsize
[src]
fn clone(&self) -> NonZeroUsize
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for ParseFloatError
[src]
fn clone(&self) -> ParseFloatError
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for ParseIntError
[src]
fn clone(&self) -> ParseIntError
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for TryFromIntError
[src]
fn clone(&self) -> TryFromIntError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for RangeFull
[src]
fn clone(&self) -> RangeFull
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for NoneError
[src]
fn clone(&self) -> NoneError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for TraitObject
[src]
fn clone(&self) -> TraitObject
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for ParseBoolError
[src]
fn clone(&self) -> ParseBoolError
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for Utf8Error
[src]
fn clone(&self) -> Utf8Error
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for RawWakerVTable
[src]
fn clone(&self) -> RawWakerVTable
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for Waker
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for Duration
[src]
fn clone(&self) -> Duration
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Clone for bool
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for char
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for f32
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for f64
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for i8
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for i16
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for i32
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for i64
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for i128
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for isize
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for u8
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for u16
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for u32
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for u64
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for u128
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl Clone for usize
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for Arguments<'a>
[src]
fn clone(&self) -> Arguments<'a>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a> Clone for CharSearcher<'a>
[src]
fn clone(&self) -> CharSearcher<'a>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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 core::str::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<'a> Clone for core::str::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<'a> Clone for core::str::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<'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]
fn clone(&self) -> CharSliceSearcher<'a, 'b>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, 'b> Clone for StrSearcher<'a, 'b>
[src]
fn clone(&self) -> StrSearcher<'a, 'b>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, F: Clone> Clone for CharPredicateSearcher<'a, F> where
F: FnMut(char) -> bool,
[src]
F: FnMut(char) -> bool,
fn clone(&self) -> CharPredicateSearcher<'a, F>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P: Pattern<'a>> Clone for MatchIndices<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P: Pattern<'a>> Clone for Matches<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P: Pattern<'a>> Clone for RMatchIndices<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P: Pattern<'a>> Clone for RMatches<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, P: Pattern<'a>> Clone for core::str::RSplit<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P: Pattern<'a>> Clone for RSplitN<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P: Pattern<'a>> Clone for RSplitTerminator<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P: Pattern<'a>> Clone for core::str::Split<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P: Pattern<'a>> Clone for SplitN<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<'a, P: Pattern<'a>> Clone for SplitTerminator<'a, P> where
P::Searcher: Clone,
[src]
P::Searcher: Clone,
fn clone(&self) -> Self
[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: Clone + 'a, P: Clone> Clone for core::slice::RSplit<'a, T, P> where
P: FnMut(&T) -> bool,
[src]
P: FnMut(&T) -> bool,
ⓘ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 core::option::Iter<'_, A>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A: Clone> Clone for Repeat<A>
[src]
ⓘImportant traits for Repeat<A>fn clone(&self) -> Repeat<A>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A: Clone> Clone for core::option::IntoIter<A>
[src]
ⓘImportant traits for IntoIter<A>fn clone(&self) -> IntoIter<A>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A: Clone, B: Clone> Clone for Chain<A, B>
[src]
ⓘImportant traits for Chain<A, B>fn clone(&self) -> Chain<A, B>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<A: Clone, B: Clone> Clone for Zip<A, B>
[src]
ⓘImportant traits for Zip<A, B>fn clone(&self) -> Zip<A, B>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<F: Clone> Clone for FromFn<F>
[src]
ⓘ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> Clone for OnceWith<F>
[src]
ⓘ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> Clone for RepeatWith<F>
[src]
ⓘ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]
fn clone(&self) -> BuildHasherDefault<H>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I, U> Clone for Flatten<I> where
I: Iterator + Clone,
U: Iterator + Clone,
I::Item: IntoIterator<IntoIter = U, Item = U::Item>,
[src]
I: Iterator + Clone,
U: Iterator + Clone,
I::Item: IntoIterator<IntoIter = U, Item = U::Item>,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<I: Clone + Iterator> Clone for Peekable<I> where
I::Item: Clone,
[src]
I::Item: Clone,
ⓘImportant traits for Peekable<I>fn clone(&self) -> Peekable<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone> Clone for DecodeUtf16<I> where
I: Iterator<Item = u16>,
[src]
I: 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> Clone for Cloned<I>
[src]
ⓘ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> Clone for Copied<I>
[src]
ⓘ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> Clone for Cycle<I>
[src]
ⓘImportant traits for Cycle<I>fn clone(&self) -> Cycle<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone> Clone for Enumerate<I>
[src]
ⓘImportant traits for Enumerate<I>fn clone(&self) -> Enumerate<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone> Clone for Fuse<I>
[src]
ⓘImportant traits for Fuse<I>fn clone(&self) -> Fuse<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone> Clone for Skip<I>
[src]
ⓘImportant traits for Skip<I>fn clone(&self) -> Skip<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone> Clone for StepBy<I>
[src]
ⓘ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> Clone for Take<I>
[src]
ⓘImportant traits for Take<I>fn clone(&self) -> Take<I>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, F: Clone> Clone for FilterMap<I, F>
[src]
ⓘImportant traits for FilterMap<I, F>fn clone(&self) -> FilterMap<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, F: Clone> Clone for Inspect<I, F>
[src]
ⓘImportant traits for Inspect<I, F>fn clone(&self) -> Inspect<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, F: Clone> Clone for Map<I, F>
[src]
ⓘImportant traits for Map<I, F>fn clone(&self) -> Map<I, F>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, P: Clone> Clone for Filter<I, P>
[src]
ⓘImportant traits for Filter<I, P>fn clone(&self) -> Filter<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, P: Clone> Clone for SkipWhile<I, P>
[src]
ⓘImportant traits for SkipWhile<I, P>fn clone(&self) -> SkipWhile<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, P: Clone> Clone for TakeWhile<I, P>
[src]
ⓘImportant traits for TakeWhile<I, P>fn clone(&self) -> TakeWhile<I, P>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<I: Clone, St: Clone, F: Clone> Clone for Scan<I, St, F>
[src]
ⓘ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: Clone, U: Clone + IntoIterator, F: Clone> Clone for FlatMap<I, U, F> where
<U as IntoIterator>::IntoIter: Clone,
[src]
<U as IntoIterator>::IntoIter: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx: Clone> Clone for Range<Idx>
[src]
ⓘImportant traits for Range<A>fn clone(&self) -> Range<Idx>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx: Clone> Clone for RangeFrom<Idx>
[src]
ⓘImportant traits for RangeFrom<A>fn clone(&self) -> RangeFrom<Idx>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx: Clone> Clone for RangeInclusive<Idx>
[src]
ⓘ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> Clone for RangeTo<Idx>
[src]
fn clone(&self) -> RangeTo<Idx>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<Idx: Clone> Clone for RangeToInclusive<Idx>
[src]
fn clone(&self) -> RangeToInclusive<Idx>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<P: Clone> Clone for Pin<P>
[src]
ⓘ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 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 Discriminant<T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T, '_> Clone for core::result::Iter<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T, '_> Clone for Chunks<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T, '_> Clone for ChunksExact<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T, '_> Clone for core::slice::Iter<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T, '_> Clone for RChunks<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T, '_> Clone for Windows<'_, T>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T, P, '_> Clone for core::slice::Split<'_, T, P> where
P: Clone + FnMut(&T) -> bool,
[src]
P: Clone + FnMut(&T) -> bool,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T: Clone + ?Sized> Clone for ManuallyDrop<T>
[src]
fn clone(&self) -> ManuallyDrop<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Clone> Clone for Bound<T>
[src]
fn clone(&self) -> Bound<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Clone> Clone for Option<T>
[src]
fn clone(&self) -> Option<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
impl<T: Clone> Clone for Poll<T>
[src]
fn clone(&self) -> Poll<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Clone> Clone for RefCell<T>
[src]
fn clone(&self) -> RefCell<T>
[src]
Panics
Panics if the value is currently mutably borrowed.