pub trait Clone {
fn clone(&self) -> Self;
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 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,
}
RunHow 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
}
}
RunAdditional 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
) - 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
Provided methods
fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
.
a.clone_from(&b)
is equivalent to a = b.clone()
in functionality,
but can be overridden to reuse the resources of a
to avoid unnecessary
allocations.
Implementations on Foreign Types
1.59.0 · sourceimpl Clone for poly64x1x2_t
impl Clone for poly64x1x2_t
pub fn clone(&self) -> poly64x1x2_t
1.59.0 · sourceimpl Clone for int32x4x4_t
impl Clone for int32x4x4_t
pub fn clone(&self) -> int32x4x4_t
1.59.0 · sourceimpl Clone for int64x1x4_t
impl Clone for int64x1x4_t
pub fn clone(&self) -> int64x1x4_t
1.59.0 · sourceimpl Clone for int64x2x4_t
impl Clone for int64x2x4_t
pub fn clone(&self) -> int64x2x4_t
1.59.0 · sourceimpl Clone for int16x4x3_t
impl Clone for int16x4x3_t
pub fn clone(&self) -> int16x4x3_t
1.59.0 · sourceimpl Clone for uint16x8_t
impl Clone for uint16x8_t
pub fn clone(&self) -> uint16x8_t
1.59.0 · sourceimpl Clone for poly8x16x4_t
impl Clone for poly8x16x4_t
pub fn clone(&self) -> poly8x16x4_t
1.59.0 · sourceimpl Clone for float64x2x3_t
impl Clone for float64x2x3_t
pub fn clone(&self) -> float64x2x3_t
1.59.0 · sourceimpl Clone for float64x2x4_t
impl Clone for float64x2x4_t
pub fn clone(&self) -> float64x2x4_t
1.59.0 · sourceimpl Clone for uint8x16x3_t
impl Clone for uint8x16x3_t
pub fn clone(&self) -> uint8x16x3_t
1.59.0 · sourceimpl Clone for float32x4x2_t
impl Clone for float32x4x2_t
pub fn clone(&self) -> float32x4x2_t
1.59.0 · sourceimpl Clone for uint64x1x3_t
impl Clone for uint64x1x3_t
pub fn clone(&self) -> uint64x1x3_t
1.59.0 · sourceimpl Clone for int8x16x4_t
impl Clone for int8x16x4_t
pub fn clone(&self) -> int8x16x4_t
1.59.0 · sourceimpl Clone for int8x8x3_t
impl Clone for int8x8x3_t
pub fn clone(&self) -> int8x8x3_t
1.59.0 · sourceimpl Clone for int16x8x4_t
impl Clone for int16x8x4_t
pub fn clone(&self) -> int16x8x4_t
1.59.0 · sourceimpl Clone for uint32x2x4_t
impl Clone for uint32x2x4_t
pub fn clone(&self) -> uint32x2x4_t
1.59.0 · sourceimpl Clone for poly64x1_t
impl Clone for poly64x1_t
pub fn clone(&self) -> poly64x1_t
1.59.0 · sourceimpl Clone for poly16x4x4_t
impl Clone for poly16x4x4_t
pub fn clone(&self) -> poly16x4x4_t
1.59.0 · sourceimpl Clone for poly64x2_t
impl Clone for poly64x2_t
pub fn clone(&self) -> poly64x2_t
1.59.0 · sourceimpl Clone for uint16x8x3_t
impl Clone for uint16x8x3_t
pub fn clone(&self) -> uint16x8x3_t
1.59.0 · sourceimpl Clone for uint16x4x3_t
impl Clone for uint16x4x3_t
pub fn clone(&self) -> uint16x4x3_t
1.59.0 · sourceimpl Clone for poly16x8x2_t
impl Clone for poly16x8x2_t
pub fn clone(&self) -> poly16x8x2_t
1.59.0 · sourceimpl Clone for poly16x8x4_t
impl Clone for poly16x8x4_t
pub fn clone(&self) -> poly16x8x4_t
1.59.0 · sourceimpl Clone for uint32x2x2_t
impl Clone for uint32x2x2_t
pub fn clone(&self) -> uint32x2x2_t
1.59.0 · sourceimpl Clone for poly8x16_t
impl Clone for poly8x16_t
pub fn clone(&self) -> poly8x16_t
1.59.0 · sourceimpl Clone for int16x8x3_t
impl Clone for int16x8x3_t
pub fn clone(&self) -> int16x8x3_t
1.59.0 · sourceimpl Clone for int32x2x3_t
impl Clone for int32x2x3_t
pub fn clone(&self) -> int32x2x3_t
1.59.0 · sourceimpl Clone for int16x8x2_t
impl Clone for int16x8x2_t
pub fn clone(&self) -> int16x8x2_t
1.59.0 · sourceimpl Clone for uint32x4x2_t
impl Clone for uint32x4x2_t
pub fn clone(&self) -> uint32x4x2_t
1.59.0 · sourceimpl Clone for float32x4_t
impl Clone for float32x4_t
pub fn clone(&self) -> float32x4_t
1.59.0 · sourceimpl Clone for poly64x1x4_t
impl Clone for poly64x1x4_t
pub fn clone(&self) -> poly64x1x4_t
1.59.0 · sourceimpl Clone for int32x4x2_t
impl Clone for int32x4x2_t
pub fn clone(&self) -> int32x4x2_t
1.59.0 · sourceimpl Clone for uint32x4x3_t
impl Clone for uint32x4x3_t
pub fn clone(&self) -> uint32x4x3_t
1.59.0 · sourceimpl Clone for poly16x8x3_t
impl Clone for poly16x8x3_t
pub fn clone(&self) -> poly16x8x3_t
1.59.0 · sourceimpl Clone for uint8x16x4_t
impl Clone for uint8x16x4_t
pub fn clone(&self) -> uint8x16x4_t
1.59.0 · sourceimpl Clone for int8x8x2_t
impl Clone for int8x8x2_t
pub fn clone(&self) -> int8x8x2_t
1.59.0 · sourceimpl Clone for uint16x8x4_t
impl Clone for uint16x8x4_t
pub fn clone(&self) -> uint16x8x4_t
1.59.0 · sourceimpl Clone for int8x16x3_t
impl Clone for int8x16x3_t
pub fn clone(&self) -> int8x16x3_t
1.59.0 · sourceimpl Clone for float64x2x2_t
impl Clone for float64x2x2_t
pub fn clone(&self) -> float64x2x2_t
1.59.0 · sourceimpl Clone for uint64x2_t
impl Clone for uint64x2_t
pub fn clone(&self) -> uint64x2_t
1.59.0 · sourceimpl Clone for float32x2_t
impl Clone for float32x2_t
pub fn clone(&self) -> float32x2_t
1.59.0 · sourceimpl Clone for uint16x4x4_t
impl Clone for uint16x4x4_t
pub fn clone(&self) -> uint16x4x4_t
1.59.0 · sourceimpl Clone for int16x4x2_t
impl Clone for int16x4x2_t
pub fn clone(&self) -> int16x4x2_t
1.59.0 · sourceimpl Clone for float64x1x3_t
impl Clone for float64x1x3_t
pub fn clone(&self) -> float64x1x3_t
1.59.0 · sourceimpl Clone for int32x4x3_t
impl Clone for int32x4x3_t
pub fn clone(&self) -> int32x4x3_t
1.59.0 · sourceimpl Clone for float64x1_t
impl Clone for float64x1_t
pub fn clone(&self) -> float64x1_t
1.59.0 · sourceimpl Clone for uint64x2x2_t
impl Clone for uint64x2x2_t
pub fn clone(&self) -> uint64x2x2_t
1.59.0 · sourceimpl Clone for int64x1x3_t
impl Clone for int64x1x3_t
pub fn clone(&self) -> int64x1x3_t
1.59.0 · sourceimpl Clone for uint32x4_t
impl Clone for uint32x4_t
pub fn clone(&self) -> uint32x4_t
1.59.0 · sourceimpl Clone for poly16x4x2_t
impl Clone for poly16x4x2_t
pub fn clone(&self) -> poly16x4x2_t
1.59.0 · sourceimpl Clone for poly8x8x2_t
impl Clone for poly8x8x2_t
pub fn clone(&self) -> poly8x8x2_t
1.59.0 · sourceimpl Clone for uint32x4x4_t
impl Clone for uint32x4x4_t
pub fn clone(&self) -> uint32x4x4_t
1.59.0 · sourceimpl Clone for poly8x16x3_t
impl Clone for poly8x16x3_t
pub fn clone(&self) -> poly8x16x3_t
1.59.0 · sourceimpl Clone for int64x1x2_t
impl Clone for int64x1x2_t
pub fn clone(&self) -> int64x1x2_t
1.59.0 · sourceimpl Clone for int32x2x4_t
impl Clone for int32x2x4_t
pub fn clone(&self) -> int32x2x4_t
1.59.0 · sourceimpl Clone for uint8x8x3_t
impl Clone for uint8x8x3_t
pub fn clone(&self) -> uint8x8x3_t
1.59.0 · sourceimpl Clone for poly64x2x3_t
impl Clone for poly64x2x3_t
pub fn clone(&self) -> poly64x2x3_t
1.59.0 · sourceimpl Clone for uint64x1x4_t
impl Clone for uint64x1x4_t
pub fn clone(&self) -> uint64x1x4_t
1.59.0 · sourceimpl Clone for uint8x16x2_t
impl Clone for uint8x16x2_t
pub fn clone(&self) -> uint8x16x2_t
1.59.0 · sourceimpl Clone for uint16x4x2_t
impl Clone for uint16x4x2_t
pub fn clone(&self) -> uint16x4x2_t
1.59.0 · sourceimpl Clone for poly8x16x2_t
impl Clone for poly8x16x2_t
pub fn clone(&self) -> poly8x16x2_t
1.59.0 · sourceimpl Clone for int64x2x2_t
impl Clone for int64x2x2_t
pub fn clone(&self) -> int64x2x2_t
1.59.0 · sourceimpl Clone for float32x4x3_t
impl Clone for float32x4x3_t
pub fn clone(&self) -> float32x4x3_t
1.59.0 · sourceimpl Clone for float32x2x3_t
impl Clone for float32x2x3_t
pub fn clone(&self) -> float32x2x3_t
1.59.0 · sourceimpl Clone for poly8x8x4_t
impl Clone for poly8x8x4_t
pub fn clone(&self) -> poly8x8x4_t
1.59.0 · sourceimpl Clone for uint8x16_t
impl Clone for uint8x16_t
pub fn clone(&self) -> uint8x16_t
1.59.0 · sourceimpl Clone for uint32x2_t
impl Clone for uint32x2_t
pub fn clone(&self) -> uint32x2_t
1.59.0 · sourceimpl Clone for uint8x8x4_t
impl Clone for uint8x8x4_t
pub fn clone(&self) -> uint8x8x4_t
1.59.0 · sourceimpl Clone for uint64x1_t
impl Clone for uint64x1_t
pub fn clone(&self) -> uint64x1_t
1.59.0 · sourceimpl Clone for float32x2x2_t
impl Clone for float32x2x2_t
pub fn clone(&self) -> float32x2x2_t
1.59.0 · sourceimpl Clone for int64x2x3_t
impl Clone for int64x2x3_t
pub fn clone(&self) -> int64x2x3_t
1.59.0 · sourceimpl Clone for poly64x2x2_t
impl Clone for poly64x2x2_t
pub fn clone(&self) -> poly64x2x2_t
1.59.0 · sourceimpl Clone for uint16x8x2_t
impl Clone for uint16x8x2_t
pub fn clone(&self) -> uint16x8x2_t
1.59.0 · sourceimpl Clone for uint32x2x3_t
impl Clone for uint32x2x3_t
pub fn clone(&self) -> uint32x2x3_t
1.59.0 · sourceimpl Clone for poly16x4_t
impl Clone for poly16x4_t
pub fn clone(&self) -> poly16x4_t
1.59.0 · sourceimpl Clone for poly16x8_t
impl Clone for poly16x8_t
pub fn clone(&self) -> poly16x8_t
1.59.0 · sourceimpl Clone for uint64x1x2_t
impl Clone for uint64x1x2_t
pub fn clone(&self) -> uint64x1x2_t
1.59.0 · sourceimpl Clone for uint8x8x2_t
impl Clone for uint8x8x2_t
pub fn clone(&self) -> uint8x8x2_t
1.59.0 · sourceimpl Clone for uint64x2x3_t
impl Clone for uint64x2x3_t
pub fn clone(&self) -> uint64x2x3_t
1.59.0 · sourceimpl Clone for int8x16x2_t
impl Clone for int8x16x2_t
pub fn clone(&self) -> int8x16x2_t
1.59.0 · sourceimpl Clone for poly64x2x4_t
impl Clone for poly64x2x4_t
pub fn clone(&self) -> poly64x2x4_t
1.59.0 · sourceimpl Clone for uint16x4_t
impl Clone for uint16x4_t
pub fn clone(&self) -> uint16x4_t
1.59.0 · sourceimpl Clone for float64x1x4_t
impl Clone for float64x1x4_t
pub fn clone(&self) -> float64x1x4_t
1.59.0 · sourceimpl Clone for float32x4x4_t
impl Clone for float32x4x4_t
pub fn clone(&self) -> float32x4x4_t
1.59.0 · sourceimpl Clone for poly64x1x3_t
impl Clone for poly64x1x3_t
pub fn clone(&self) -> poly64x1x3_t
1.59.0 · sourceimpl Clone for float32x2x4_t
impl Clone for float32x2x4_t
pub fn clone(&self) -> float32x2x4_t
1.59.0 · sourceimpl Clone for poly16x4x3_t
impl Clone for poly16x4x3_t
pub fn clone(&self) -> poly16x4x3_t
1.59.0 · sourceimpl Clone for uint64x2x4_t
impl Clone for uint64x2x4_t
pub fn clone(&self) -> uint64x2x4_t
1.59.0 · sourceimpl Clone for int8x8x4_t
impl Clone for int8x8x4_t
pub fn clone(&self) -> int8x8x4_t
1.59.0 · sourceimpl Clone for float64x1x2_t
impl Clone for float64x1x2_t
pub fn clone(&self) -> float64x1x2_t
1.59.0 · sourceimpl Clone for int32x2x2_t
impl Clone for int32x2x2_t
pub fn clone(&self) -> int32x2x2_t
1.59.0 · sourceimpl Clone for float64x2_t
impl Clone for float64x2_t
pub fn clone(&self) -> float64x2_t
1.59.0 · sourceimpl Clone for int16x4x4_t
impl Clone for int16x4x4_t
pub fn clone(&self) -> int16x4x4_t
1.59.0 · sourceimpl Clone for poly8x8x3_t
impl Clone for poly8x8x3_t
pub fn clone(&self) -> poly8x8x3_t
Implementors
impl Clone for std::cmp::Ordering
impl Clone for TryReserveErrorKind
impl Clone for Infallible
impl Clone for VarError
impl Clone for ErrorKind
impl Clone for SeekFrom
impl Clone for IpAddr
impl Clone for Ipv6MulticastScope
impl Clone for Shutdown
impl Clone for std::net::SocketAddr
impl Clone for FpCategory
impl Clone for IntErrorKind
impl Clone for BacktraceStyle
impl Clone for Which
impl Clone for SearchStep
impl Clone for std::sync::atomic::Ordering
impl Clone for RecvTimeoutError
impl Clone for TryRecvError
impl Clone for bool
impl Clone for char
impl Clone for f32
impl Clone for f64
impl Clone for i8
impl Clone for i16
impl Clone for i32
impl Clone for i64
impl Clone for i128
impl Clone for isize
impl Clone for !
impl Clone for u8
impl Clone for u16
impl Clone for u32
impl Clone for u64
impl Clone for u128
impl Clone for usize
impl Clone for AllocError
impl Clone for Global
impl Clone for Layout
impl Clone for LayoutError
impl Clone for System
impl Clone for TypeId
impl Clone for TryFromSliceError
impl Clone for std::ascii::EscapeDefault
impl Clone for Box<str, Global>
impl Clone for Box<CStr>
impl Clone for Box<OsStr>
impl Clone for Box<Path>
impl Clone for CharTryFromError
impl Clone for DecodeUtf16Error
impl Clone for std::char::EscapeDebug
impl Clone for std::char::EscapeDefault
impl Clone for std::char::EscapeUnicode
impl Clone for ParseCharError
impl Clone for ToLowercase
impl Clone for ToUppercase
impl Clone for TryFromCharError
impl Clone for DefaultHasher
impl Clone for RandomState
impl Clone for TryReserveError
impl Clone for CString
impl Clone for FromBytesWithNulError
impl Clone for FromVecWithNulError
impl Clone for IntoStringError
impl Clone for NulError
impl Clone for OsString
impl Clone for Error
impl Clone for FileType
impl Clone for Metadata
impl Clone for OpenOptions
impl Clone for Permissions
impl Clone for SipHasher
impl Clone for std::io::Empty
impl Clone for Sink
impl Clone for PhantomPinned
impl Clone for AddrParseError
impl Clone for Ipv4Addr
impl Clone for Ipv6Addr
impl Clone for SocketAddrV4
impl Clone for SocketAddrV6
impl Clone for NonZeroI8
impl Clone for NonZeroI16
impl Clone for NonZeroI32
impl Clone for NonZeroI64
impl Clone for NonZeroI128
impl Clone for NonZeroIsize
impl Clone for NonZeroU8
impl Clone for NonZeroU16
impl Clone for NonZeroU32
impl Clone for NonZeroU64
impl Clone for NonZeroU128
impl Clone for NonZeroUsize
impl Clone for ParseFloatError
impl Clone for ParseIntError
impl Clone for TryFromIntError
impl Clone for RangeFull
impl Clone for stat
impl Clone for std::os::unix::net::SocketAddr
impl Clone for SocketCred
impl Clone for UCred
impl Clone for PathBuf
impl Clone for StripPrefixError
impl Clone for ExitCode
impl Clone for ExitStatus
impl Clone for ExitStatusError
impl Clone for Output
impl Clone for ParseBoolError
impl Clone for Utf8Error
impl Clone for FromUtf8Error
impl Clone for String
impl Clone for RecvError
impl Clone for WaitTimeoutResult
impl Clone for RawWakerVTable
impl Clone for Waker
impl Clone for AccessError
impl Clone for Thread
impl Clone for ThreadId
impl Clone for Duration
impl Clone for FromFloatSecsError
impl Clone for Instant
impl Clone for SystemTime
impl Clone for SystemTimeError
impl<'_, A> Clone for std::option::Iter<'_, A>
impl<'_, B> Clone for Cow<'_, B> where
B: ToOwned + ?Sized,
impl<'_, K, V> Clone for std::collections::btree_map::Iter<'_, K, V>
impl<'_, K, V> Clone for std::collections::btree_map::Keys<'_, K, V>
impl<'_, K, V> Clone for std::collections::btree_map::Range<'_, K, V>
impl<'_, K, V> Clone for std::collections::btree_map::Values<'_, K, V>
impl<'_, T> !Clone for &'_ mut T where
T: ?Sized,
Shared references can be cloned, but mutable references cannot!
impl<'_, T> Clone for &'_ T where
T: ?Sized,
Shared references can be cloned, but mutable references cannot!