wasmtime_environ::__core::prelude::rust_2024

Trait Clone

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

    // Provided method
    fn clone_from(&mut self, source: &Self) { ... }
}
๐Ÿ”ฌThis is a nightly-only experimental API. (prelude_2024)
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,
}

ยง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
    }
}

If we derive:

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

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))
    }
}

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.

ยง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());

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.

Dyn Compatibilityยง

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementorsยง

Sourceยง

impl Clone for wasmtime_environ::component::dfg::CoreDef

Sourceยง

impl Clone for Trampoline

Sourceยง

impl Clone for ComponentItem

Sourceยง

impl Clone for wasmtime_environ::component::CoreDef

Sourceยง

impl Clone for wasmtime_environ::component::Export

Sourceยง

impl Clone for FixedEncoding

Sourceยง

impl Clone for FlatType

Sourceยง

impl Clone for InterfaceType

Sourceยง

impl Clone for StringEncoding

Sourceยง

impl Clone for Transcode

Sourceยง

impl Clone for TypeDef

Sourceยง

impl Clone for Collector

Sourceยง

impl Clone for ConstOp

Sourceยง

impl Clone for EngineOrModuleTypeIndex

Sourceยง

impl Clone for EntityIndex

Sourceยง

impl Clone for wasmtime_environ::EntityType

Sourceยง

impl Clone for GcLayout

Sourceยง

impl Clone for IndexType

Sourceยง

impl Clone for MemoryStyle

Sourceยง

impl Clone for wasmtime_environ::RelocationTarget

Sourceยง

impl Clone for SettingKind

Sourceยง

impl Clone for TableInitialValue

Sourceยง

impl Clone for TableSegmentElements

Sourceยง

impl Clone for Trap

Sourceยง

impl Clone for VMGcKind

Sourceยง

impl Clone for WasmCompositeInnerType

Sourceยง

impl Clone for WasmHeapBottomType

Sourceยง

impl Clone for WasmHeapTopType

Sourceยง

impl Clone for WasmHeapType

Sourceยง

impl Clone for WasmStorageType

Sourceยง

impl Clone for WasmValType

Sourceยง

impl Clone for wasmtime_environ::fact::Import

Sourceยง

impl Clone for LibCall

Sourceยง

impl Clone for AsciiChar

1.0.0 ยท Sourceยง

impl Clone for wasmtime_environ::__core::cmp::Ordering

1.34.0 ยท Sourceยง

impl Clone for Infallible

1.28.0 ยท Sourceยง

impl Clone for wasmtime_environ::__core::fmt::Alignment

1.7.0 ยท Sourceยง

impl Clone for IpAddr

Sourceยง

impl Clone for Ipv6MulticastScope

1.0.0 ยท Sourceยง

impl Clone for wasmtime_environ::__core::net::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 wasmtime_environ::__core::sync::atomic::Ordering

Sourceยง

impl Clone for TryReserveErrorKind

1.0.0 ยท Sourceยง

impl Clone for VarError

1.0.0 ยท Sourceยง

impl Clone for std::io::SeekFrom

1.0.0 ยท Sourceยง

impl Clone for std::io::error::ErrorKind

1.0.0 ยท Sourceยง

impl Clone for Shutdown

Sourceยง

impl Clone for BacktraceStyle

1.12.0 ยท Sourceยง

impl Clone for RecvTimeoutError

1.0.0 ยท Sourceยง

impl Clone for TryRecvError

Sourceยง

impl Clone for _Unwind_Action

Sourceยง

impl Clone for _Unwind_Reason_Code

Sourceยง

impl Clone for cpp_demangle::ast::ArrayType

Sourceยง

impl Clone for BaseUnresolvedName

Sourceยง

impl Clone for BuiltinType

Sourceยง

impl Clone for CallOffset

Sourceยง

impl Clone for ClassEnumType

Sourceยง

impl Clone for CtorDtorName

Sourceยง

impl Clone for Decltype

Sourceยง

impl Clone for DestructorName

Sourceยง

impl Clone for cpp_demangle::ast::Encoding

Sourceยง

impl Clone for ExceptionSpec

Sourceยง

impl Clone for ExprPrimary

Sourceยง

impl Clone for cpp_demangle::ast::Expression

Sourceยง

impl Clone for GlobalCtorDtor

Sourceยง

impl Clone for LocalName

Sourceยง

impl Clone for MangledName

Sourceยง

impl Clone for cpp_demangle::ast::Name

Sourceยง

impl Clone for NestedName

Sourceยง

impl Clone for OperatorName

Sourceยง

impl Clone for cpp_demangle::ast::Prefix

Sourceยง

impl Clone for PrefixHandle

Sourceยง

impl Clone for RefQualifier

Sourceยง

impl Clone for SimpleOperatorName

Sourceยง

impl Clone for SpecialName

Sourceยง

impl Clone for StandardBuiltinType

Sourceยง

impl Clone for Substitution

Sourceยง

impl Clone for TemplateArg

Sourceยง

impl Clone for TemplateTemplateParamHandle

Sourceยง

impl Clone for Type

Sourceยง

impl Clone for TypeHandle

Sourceยง

impl Clone for UnqualifiedName

Sourceยง

impl Clone for UnresolvedName

Sourceยง

impl Clone for UnresolvedType

Sourceยง

impl Clone for UnresolvedTypeHandle

Sourceยง

impl Clone for UnscopedName

Sourceยง

impl Clone for UnscopedTemplateNameHandle

Sourceยง

impl Clone for VectorType

Sourceยง

impl Clone for WellKnownComponent

Sourceยง

impl Clone for DemangleNodeType

Sourceยง

impl Clone for cpp_demangle::error::Error

Sourceยง

impl Clone for embedded_io::ErrorKind

Sourceยง

impl Clone for embedded_io::SeekFrom

Sourceยง

impl Clone for DwarfFileType

Sourceยง

impl Clone for Format

Sourceยง

impl Clone for gimli::common::SectionId

Sourceยง

impl Clone for gimli::common::Vendor

Sourceยง

impl Clone for RunTimeEndian

Sourceยง

impl Clone for AbbreviationsCacheStrategy

Sourceยง

impl Clone for Pointer

Sourceยง

impl Clone for gimli::read::Error

Sourceยง

impl Clone for IndexSectionId

Sourceยง

impl Clone for ColumnType

Sourceยง

impl Clone for Value

Sourceยง

impl Clone for ValueType

Sourceยง

impl Clone for gimli::write::cfi::CallFrameInstruction

Sourceยง

impl Clone for ConvertError

Sourceยง

impl Clone for Address

Sourceยง

impl Clone for gimli::write::Error

Sourceยง

impl Clone for Reference

Sourceยง

impl Clone for LineString

Sourceยง

impl Clone for gimli::write::loc::Location

Sourceยง

impl Clone for gimli::write::range::Range

Sourceยง

impl Clone for gimli::write::relocate::RelocationTarget

Sourceยง

impl Clone for gimli::write::unit::AttributeValue

Sourceยง

impl Clone for hashbrown::TryReserveError

Sourceยง

impl Clone for Level

Sourceยง

impl Clone for LevelFilter

Sourceยง

impl Clone for Prefilter

Sourceยง

impl Clone for AddressSize

Sourceยง

impl Clone for object::common::Architecture

Sourceยง

impl Clone for object::common::BinaryFormat

Sourceยง

impl Clone for ComdatKind

Sourceยง

impl Clone for FileFlags

Sourceยง

impl Clone for RelocationEncoding

Sourceยง

impl Clone for RelocationFlags

Sourceยง

impl Clone for RelocationKind

Sourceยง

impl Clone for SectionFlags

Sourceยง

impl Clone for SectionKind

Sourceยง

impl Clone for object::common::SegmentFlags

Sourceยง

impl Clone for SubArchitecture

Sourceยง

impl Clone for SymbolKind

Sourceยง

impl Clone for SymbolScope

Sourceยง

impl Clone for object::endian::Endianness

Sourceยง

impl Clone for CompressionFormat

Sourceยง

impl Clone for FileKind

Sourceยง

impl Clone for ObjectKind

Sourceยง

impl Clone for object::read::RelocationTarget

Sourceยง

impl Clone for object::read::SymbolSection

Sourceยง

impl Clone for Mangling

Sourceยง

impl Clone for StandardSection

Sourceยง

impl Clone for StandardSegment

Sourceยง

impl Clone for object::write::SymbolSection

Sourceยง

impl Clone for postcard::error::Error

Sourceยง

impl Clone for Op

Sourceยง

impl Clone for CDataModel

Sourceยง

impl Clone for Size

Sourceยง

impl Clone for ParseError

Sourceยง

impl Clone for Aarch64Architecture

Sourceยง

impl Clone for target_lexicon::targets::Architecture

Sourceยง

impl Clone for ArmArchitecture

Sourceยง

impl Clone for target_lexicon::targets::BinaryFormat

Sourceยง

impl Clone for CustomVendor

Sourceยง

impl Clone for Environment

Sourceยง

impl Clone for Mips32Architecture

Sourceยง

impl Clone for Mips64Architecture

Sourceยง

impl Clone for OperatingSystem

Sourceยง

impl Clone for Riscv32Architecture

Sourceยง

impl Clone for Riscv64Architecture

Sourceยง

impl Clone for target_lexicon::targets::Vendor

Sourceยง

impl Clone for X86_32Architecture

Sourceยง

impl Clone for CallingConvention

Sourceยง

impl Clone for target_lexicon::triple::Endianness

Sourceยง

impl Clone for PointerWidth

Sourceยง

impl Clone for Color

Sourceยง

impl Clone for ColorChoice

Sourceยง

impl Clone for wasm_encoder::component::aliases::ComponentOuterAliasKind

Sourceยง

impl Clone for wasm_encoder::component::canonicals::CanonicalOption

Sourceยง

impl Clone for ComponentSectionId

Sourceยง

impl Clone for ComponentExportKind

Sourceยง

impl Clone for wasm_encoder::component::imports::ComponentTypeRef

Sourceยง

impl Clone for wasm_encoder::component::imports::TypeBounds

Sourceยง

impl Clone for ModuleArg

Sourceยง

impl Clone for wasm_encoder::component::types::ComponentValType

Sourceยง

impl Clone for wasm_encoder::component::types::PrimitiveValType

Sourceยง

impl Clone for wasm_encoder::core::code::BlockType

Sourceยง

impl Clone for wasm_encoder::core::code::Catch

Sourceยง

impl Clone for wasm_encoder::core::code::Handle

Sourceยง

impl Clone for wasm_encoder::core::code::Ordering

Sourceยง

impl Clone for wasm_encoder::core::dump::CoreDumpValue

Sourceยง

impl Clone for wasm_encoder::core::SectionId

Sourceยง

impl Clone for ExportKind

Sourceยง

impl Clone for wasm_encoder::core::imports::EntityType

Sourceยง

impl Clone for wasm_encoder::core::tags::TagKind

Sourceยง

impl Clone for wasm_encoder::core::types::AbstractHeapType

Sourceยง

impl Clone for wasm_encoder::core::types::CompositeInnerType

Sourceยง

impl Clone for wasm_encoder::core::types::HeapType

Sourceยง

impl Clone for wasm_encoder::core::types::StorageType

Sourceยง

impl Clone for wasm_encoder::core::types::ValType

Sourceยง

impl Clone for wasmparser::parser::Encoding

Sourceยง

impl Clone for wasmparser::readers::component::aliases::ComponentOuterAliasKind

Sourceยง

impl Clone for CanonicalFunction

Sourceยง

impl Clone for wasmparser::readers::component::canonicals::CanonicalOption

Sourceยง

impl Clone for ComponentExternalKind

Sourceยง

impl Clone for wasmparser::readers::component::imports::ComponentTypeRef

Sourceยง

impl Clone for wasmparser::readers::component::imports::TypeBounds

Sourceยง

impl Clone for InstantiationArgKind

Sourceยง

impl Clone for wasmparser::readers::component::types::ComponentValType

Sourceยง

impl Clone for OuterAliasKind

Sourceยง

impl Clone for wasmparser::readers::component::types::PrimitiveValType

Sourceยง

impl Clone for wasmparser::readers::core::coredumps::CoreDumpValue

Sourceยง

impl Clone for ExternalKind

Sourceยง

impl Clone for TypeRef

Sourceยง

impl Clone for ComdatSymbolKind

Sourceยง

impl Clone for wasmparser::readers::core::operators::BlockType

Sourceยง

impl Clone for wasmparser::readers::core::operators::Catch

Sourceยง

impl Clone for FrameKind

Sourceยง

impl Clone for wasmparser::readers::core::operators::Handle

Sourceยง

impl Clone for wasmparser::readers::core::operators::Ordering

Sourceยง

impl Clone for RelocAddendKind

Sourceยง

impl Clone for RelocationType

Sourceยง

impl Clone for wasmparser::readers::core::types::AbstractHeapType

Sourceยง

impl Clone for wasmparser::readers::core::types::CompositeInnerType

Sourceยง

impl Clone for wasmparser::readers::core::types::HeapType

Sourceยง

impl Clone for wasmparser::readers::core::types::StorageType

Sourceยง

impl Clone for wasmparser::readers::core::types::TagKind

Sourceยง

impl Clone for UnpackedIndex

Sourceยง

impl Clone for wasmparser::readers::core::types::ValType

Sourceยง

impl Clone for AnyTypeId

Sourceยง

impl Clone for ComponentAnyTypeId

Sourceยง

impl Clone for ComponentCoreTypeId

Sourceยง

impl Clone for wasmparser::validator::component_types::ComponentDefinedType

Sourceยง

impl Clone for ComponentEntityType

Sourceยง

impl Clone for wasmparser::validator::component_types::ComponentValType

Sourceยง

impl Clone for CoreInstanceTypeKind

Sourceยง

impl Clone for wasmparser::validator::types::EntityType

Sourceยง

impl Clone for DiscriminantSize

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 AdapterId

Sourceยง

impl Clone for AdapterModuleId

Sourceยง

impl Clone for wasmtime_environ::component::dfg::CanonicalOptions

Sourceยง

impl Clone for InstanceId

Sourceยง

impl Clone for MemoryId

Sourceยง

impl Clone for PostReturnId

Sourceยง

impl Clone for ReallocId

Sourceยง

impl Clone for Adapter

Sourceยง

impl Clone for AdapterOptions

Sourceยง

impl Clone for CanonicalAbiInfo

Sourceยง

impl Clone for wasmtime_environ::component::CanonicalOptions

Sourceยง

impl Clone for ComponentFuncIndex

Sourceยง

impl Clone for ComponentIndex

Sourceยง

impl Clone for ComponentInstanceIndex

Sourceยง

impl Clone for ComponentTypeIndex

Sourceยง

impl Clone for ComponentUpvarIndex

Sourceยง

impl Clone for DefinedResourceIndex

Sourceยง

impl Clone for ExportIndex

Sourceยง

impl Clone for ImportIndex

Sourceยง

impl Clone for LoweredIndex

Sourceยง

impl Clone for ModuleIndex

Sourceยง

impl Clone for ModuleInstanceIndex

Sourceยง

impl Clone for ModuleUpvarIndex

Sourceยง

impl Clone for RecordField

Sourceยง

impl Clone for ResourceIndex

Sourceยง

impl Clone for ResourcesBuilder

Sourceยง

impl Clone for RuntimeComponentInstanceIndex

Sourceยง

impl Clone for RuntimeImportIndex

Sourceยง

impl Clone for RuntimeInstanceIndex

Sourceยง

impl Clone for RuntimeMemoryIndex

Sourceยง

impl Clone for RuntimePostReturnIndex

Sourceยง

impl Clone for RuntimeReallocIndex

Sourceยง

impl Clone for StaticComponentIndex

Sourceยง

impl Clone for TrampolineIndex

Sourceยง

impl Clone for TypeComponentIndex

Sourceยง

impl Clone for TypeComponentInstanceIndex

Sourceยง

impl Clone for TypeEnum

Sourceยง

impl Clone for TypeEnumIndex

Sourceยง

impl Clone for TypeFlags

Sourceยง

impl Clone for TypeFlagsIndex

Sourceยง

impl Clone for TypeFunc

Sourceยง

impl Clone for TypeFuncIndex

Sourceยง

impl Clone for TypeList

Sourceยง

impl Clone for TypeListIndex

Sourceยง

impl Clone for TypeModuleIndex

Sourceยง

impl Clone for TypeOption

Sourceยง

impl Clone for TypeOptionIndex

Sourceยง

impl Clone for TypeRecord

Sourceยง

impl Clone for TypeRecordIndex

Sourceยง

impl Clone for TypeResourceTable

Sourceยง

impl Clone for TypeResourceTableIndex

Sourceยง

impl Clone for TypeResult

Sourceยง

impl Clone for TypeResultIndex

Sourceยง

impl Clone for TypeTuple

Sourceยง

impl Clone for TypeTupleIndex

Sourceยง

impl Clone for TypeVariant

Sourceยง

impl Clone for TypeVariantIndex

Sourceยง

impl Clone for VariantInfo

1.3.0 ยท Sourceยง

impl Clone for Box<str>

1.29.0 ยท Sourceยง

impl Clone for Box<CStr>

1.29.0 ยท Sourceยง

impl Clone for Box<OsStr>

1.29.0 ยท Sourceยง

impl Clone for Box<Path>

1.0.0 ยท Sourceยง

impl Clone for String

Sourceยง

impl Clone for BuiltinFunctionIndex

Sourceยง

impl Clone for ConfigTunables

Sourceยง

impl Clone for wasmtime_environ::ConstExpr

Sourceยง

impl Clone for DataIndex

Sourceยง

impl Clone for DefinedFuncIndex

Sourceยง

impl Clone for DefinedGlobalIndex

Sourceยง

impl Clone for DefinedMemoryIndex

Sourceยง

impl Clone for DefinedTableIndex

Sourceยง

impl Clone for ElemIndex

Sourceยง

impl Clone for EngineInternedRecGroupIndex

Sourceยง

impl Clone for FilePos

Sourceยง

impl Clone for FuncIndex

Sourceยง

impl Clone for FuncRefIndex

Sourceยง

impl Clone for FunctionLoc

Sourceยง

impl Clone for GcArrayLayout

Sourceยง

impl Clone for GcStructLayout

Sourceยง

impl Clone for wasmtime_environ::Global

Sourceยง

impl Clone for GlobalIndex

Sourceยง

impl Clone for HostPtr

Sourceยง

impl Clone for InstructionAddressMap

Sourceยง

impl Clone for Limits

Sourceยง

impl Clone for Memory

Sourceยง

impl Clone for MemoryIndex

Sourceยง

impl Clone for MemoryInitializer

Sourceยง

impl Clone for ModuleInternedRecGroupIndex

Sourceยง

impl Clone for ModuleInternedTypeIndex

Sourceยง

impl Clone for OwnedMemoryIndex

Sourceยง

impl Clone for RecGroupRelativeTypeIndex

Sourceยง

impl Clone for Setting

Sourceยง

impl Clone for SizeOverflow

Sourceยง

impl Clone for StaticMemoryInitializer

Sourceยง

impl Clone for StaticModuleIndex

Sourceยง

impl Clone for wasmtime_environ::Table

Sourceยง

impl Clone for TableIndex

Sourceยง

impl Clone for TableSegment

Sourceยง

impl Clone for Tag

Sourceยง

impl Clone for TagIndex

Sourceยง

impl Clone for TrapInformation

Sourceยง

impl Clone for Tunables

Sourceยง

impl Clone for TypeIndex

Sourceยง

impl Clone for VMSharedTypeIndex

Sourceยง

impl Clone for WasmArrayType

Sourceยง

impl Clone for WasmCompositeType

Sourceยง

impl Clone for WasmFieldType

Sourceยง

impl Clone for WasmFuncType

Sourceยง

impl Clone for WasmRecGroup

Sourceยง

impl Clone for WasmRefType

Sourceยง

impl Clone for WasmStructType

Sourceยง

impl Clone for WasmSubType

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.27.0 ยท Sourceยง

impl Clone for CpuidResult

1.27.0 ยท Sourceยง

impl Clone for __m128

Sourceยง

impl Clone for __m128bh

1.27.0 ยท Sourceยง

impl Clone for __m128d

Sourceยง

impl Clone for __m128h

1.27.0 ยท Sourceยง

impl Clone for __m128i

1.27.0 ยท Sourceยง

impl Clone for __m256

Sourceยง

impl Clone for __m256bh

1.27.0 ยท Sourceยง

impl Clone for __m256d

Sourceยง

impl Clone for __m256h

1.27.0 ยท Sourceยง

impl Clone for __m256i

1.72.0 ยท Sourceยง

impl Clone for __m512

Sourceยง

impl Clone for __m512bh

1.72.0 ยท Sourceยง

impl Clone for __m512d

Sourceยง

impl Clone for __m512h

1.72.0 ยท Sourceยง

impl Clone for __m512i

Sourceยง

impl Clone for bf16

1.34.0 ยท Sourceยง

impl Clone for TryFromSliceError

1.0.0 ยท Sourceยง

impl Clone for wasmtime_environ::__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 wasmtime_environ::__core::char::EscapeDebug

1.0.0 ยท Sourceยง

impl Clone for wasmtime_environ::__core::char::EscapeDefault

1.0.0 ยท Sourceยง

impl Clone for wasmtime_environ::__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 wasmtime_environ::__core::fmt::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

Sourceยง

impl Clone for wasmtime_environ::__core::ptr::Alignment

1.0.0 ยท Sourceยง

impl Clone for RangeFull

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 Clone for alloc::alloc::Global

Sourceยง

impl Clone for UnorderedKeyError

1.57.0 ยท Sourceยง

impl Clone for alloc::collections::TryReserveError

1.64.0 ยท Sourceยง

impl Clone for CString

1.64.0 ยท Sourceยง

impl Clone for FromVecWithNulError

1.64.0 ยท Sourceยง

impl Clone for IntoStringError

1.64.0 ยท Sourceยง

impl Clone for NulError

1.0.0 ยท Sourceยง

impl Clone for FromUtf8Error

1.28.0 ยท Sourceยง

impl Clone for System

1.0.0 ยท Sourceยง

impl Clone for OsString

1.75.0 ยท Sourceยง

impl Clone for FileTimes

1.1.0 ยท Sourceยง

impl Clone for FileType

1.0.0 ยท Sourceยง

impl Clone for std::fs::Metadata

1.0.0 ยท Sourceยง

impl Clone for OpenOptions

1.0.0 ยท Sourceยง

impl Clone for Permissions

1.7.0 ยท Sourceยง

impl Clone for DefaultHasher

1.7.0 ยท Sourceยง

impl Clone for std::hash::random::RandomState

1.0.0 ยท Sourceยง

impl Clone for std::io::util::Empty

1.0.0 ยท Sourceยง

impl Clone for Sink

1.1.0 ยท Sourceยง

impl Clone for stat

1.10.0 ยท Sourceยง

impl Clone for std::os::unix::net::addr::SocketAddr

Sourceยง

impl Clone for SocketCred

Sourceยง

impl Clone for UCred

1.0.0 ยท Sourceยง

impl Clone for PathBuf

1.7.0 ยท Sourceยง

impl Clone for StripPrefixError

1.61.0 ยท Sourceยง

impl Clone for ExitCode

1.0.0 ยท Sourceยง

impl Clone for ExitStatus

Sourceยง

impl Clone for ExitStatusError

1.0.0 ยท Sourceยง

impl Clone for Output

Sourceยง

impl Clone for DefaultRandomSource

1.5.0 ยท Sourceยง

impl Clone for WaitTimeoutResult

1.0.0 ยท Sourceยง

impl Clone for RecvError

1.26.0 ยท Sourceยง

impl Clone for AccessError

1.0.0 ยท Sourceยง

impl Clone for Thread

1.19.0 ยท Sourceยง

impl Clone for ThreadId

1.8.0 ยท Sourceยง

impl Clone for Instant

1.8.0 ยท Sourceยง

impl Clone for SystemTime

1.8.0 ยท Sourceยง

impl Clone for SystemTimeError

Sourceยง

impl Clone for AHasher

Sourceยง

impl Clone for ahash::random_state::RandomState

Sourceยง

impl Clone for EncoderState

Sourceยง

impl Clone for BareFunctionType

Sourceยง

impl Clone for CloneSuffix

Sourceยง

impl Clone for CloneTypeIdentifier

Sourceยง

impl Clone for ClosureTypeName

Sourceยง

impl Clone for CvQualifiers

Sourceยง

impl Clone for DataMemberPrefix

Sourceยง

impl Clone for Discriminator

Sourceยง

impl Clone for FunctionParam

Sourceยง

impl Clone for FunctionType

Sourceยง

impl Clone for Identifier

Sourceยง

impl Clone for Initializer

Sourceยง

impl Clone for LambdaSig

Sourceยง

impl Clone for MemberName

Sourceยง

impl Clone for NonSubstitution

Sourceยง

impl Clone for NvOffset

Sourceยง

impl Clone for ParseContext

Sourceยง

impl Clone for PointerToMemberType

Sourceยง

impl Clone for QualifiedBuiltin

Sourceยง

impl Clone for ResourceName

Sourceยง

impl Clone for SeqId

Sourceยง

impl Clone for SimpleId

Sourceยง

impl Clone for SourceName

Sourceยง

impl Clone for SubobjectExpr

Sourceยง

impl Clone for TaggedName

Sourceยง

impl Clone for TemplateArgs

Sourceยง

impl Clone for TemplateParam

Sourceยง

impl Clone for TemplateTemplateParam

Sourceยง

impl Clone for UnnamedTypeName

Sourceยง

impl Clone for UnresolvedQualifierLevel

Sourceยง

impl Clone for UnscopedTemplateName

Sourceยง

impl Clone for VOffset

Sourceยง

impl Clone for DemangleOptions

Sourceยง

impl Clone for ParseOptions

Sourceยง

impl Clone for CompoundBitSet

Sourceยง

impl Clone for AArch64

Sourceยง

impl Clone for Arm

Sourceยง

impl Clone for LoongArch

Sourceยง

impl Clone for MIPS

Sourceยง

impl Clone for PowerPc64

Sourceยง

impl Clone for RiscV

Sourceยง

impl Clone for X86

Sourceยง

impl Clone for X86_64

Sourceยง

impl Clone for DebugTypeSignature

Sourceยง

impl Clone for DwoId

Sourceยง

impl Clone for gimli::common::Encoding

Sourceยง

impl Clone for LineEncoding

Sourceยง

impl Clone for Register

Sourceยง

impl Clone for DwAccess

Sourceยง

impl Clone for DwAddr

Sourceยง

impl Clone for DwAt

Sourceยง

impl Clone for DwAte

Sourceยง

impl Clone for DwCc

Sourceยง

impl Clone for DwCfa

Sourceยง

impl Clone for DwChildren

Sourceยง

impl Clone for DwDefaulted

Sourceยง

impl Clone for DwDs

Sourceยง

impl Clone for DwDsc

Sourceยง

impl Clone for DwEhPe

Sourceยง

impl Clone for DwEnd

Sourceยง

impl Clone for DwForm

Sourceยง

impl Clone for DwId

Sourceยง

impl Clone for DwIdx

Sourceยง

impl Clone for DwInl

Sourceยง

impl Clone for DwLang

Sourceยง

impl Clone for DwLle

Sourceยง

impl Clone for DwLnct

Sourceยง

impl Clone for DwLne

Sourceยง

impl Clone for DwLns

Sourceยง

impl Clone for DwMacro

Sourceยง

impl Clone for DwOp

Sourceยง

impl Clone for DwOrd

Sourceยง

impl Clone for DwRle

Sourceยง

impl Clone for DwSect

Sourceยง

impl Clone for DwSectV2

Sourceยง

impl Clone for DwTag

Sourceยง

impl Clone for DwUt

Sourceยง

impl Clone for DwVirtuality

Sourceยง

impl Clone for DwVis

Sourceยง

impl Clone for gimli::endianity::BigEndian

Sourceยง

impl Clone for gimli::endianity::LittleEndian

Sourceยง

impl Clone for Abbreviation

Sourceยง

impl Clone for Abbreviations

Sourceยง

impl Clone for AttributeSpecification

Sourceยง

impl Clone for ArangeEntry

Sourceยง

impl Clone for Augmentation

Sourceยง

impl Clone for BaseAddresses

Sourceยง

impl Clone for SectionBaseAddresses

Sourceยง

impl Clone for UnitIndexSection

Sourceยง

impl Clone for FileEntryFormat

Sourceยง

impl Clone for gimli::read::line::LineRow

Sourceยง

impl Clone for ReaderOffsetId

Sourceยง

impl Clone for gimli::read::rnglists::Range

Sourceยง

impl Clone for StoreOnHeap

Sourceยง

impl Clone for CieId

Sourceยง

impl Clone for gimli::write::cfi::CommonInformationEntry

Sourceยง

impl Clone for gimli::write::cfi::FrameDescriptionEntry

Sourceยง

impl Clone for FileId

Sourceยง

impl Clone for DirectoryId

Sourceยง

impl Clone for FileInfo

Sourceยง

impl Clone for LineProgram

Sourceยง

impl Clone for gimli::write::line::LineRow

Sourceยง

impl Clone for LocationList

Sourceยง

impl Clone for LocationListId

Sourceยง

impl Clone for gimli::write::op::Expression

Sourceยง

impl Clone for RangeList

Sourceยง

impl Clone for RangeListId

Sourceยง

impl Clone for Relocation

Sourceยง

impl Clone for LineStringId

Sourceยง

impl Clone for gimli::write::str::StringId

Sourceยง

impl Clone for gimli::write::unit::Attribute

Sourceยง

impl Clone for UnitEntryId

Sourceยง

impl Clone for UnitId

Sourceยง

impl Clone for InitialLengthOffset

Sourceยง

impl Clone for indexmap::TryReserveError

Sourceยง

impl Clone for FinderBuilder

Sourceยง

impl Clone for Ident

Sourceยง

impl Clone for object::endian::BigEndian

Sourceยง

impl Clone for object::endian::LittleEndian

Sourceยง

impl Clone for VersionIndex

Sourceยง

impl Clone for CompressedFileRange

Sourceยง

impl Clone for object::read::Error

Sourceยง

impl Clone for object::read::SectionIndex

Sourceยง

impl Clone for object::read::SymbolIndex

Sourceยง

impl Clone for Class

Sourceยง

impl Clone for FileHeader

Sourceยง

impl Clone for ProgramHeader

Sourceยง

impl Clone for Rel

Sourceยง

impl Clone for SectionHeader

Sourceยง

impl Clone for object::write::elf::writer::SectionIndex

Sourceยง

impl Clone for Sym

Sourceยง

impl Clone for object::write::elf::writer::SymbolIndex

Sourceยง

impl Clone for object::write::elf::writer::Verdef

Sourceยง

impl Clone for object::write::elf::writer::Vernaux

Sourceยง

impl Clone for object::write::elf::writer::Verneed

Sourceยง

impl Clone for object::write::string::StringId

Sourceยง

impl Clone for ComdatId

Sourceยง

impl Clone for object::write::Error

Sourceยง

impl Clone for object::write::SectionId

Sourceยง

impl Clone for SymbolId

Sourceยง

impl Clone for TryDemangleError

Sourceยง

impl Clone for BuildMetadata

Sourceยง

impl Clone for Comparator

Sourceยง

impl Clone for Prerelease

Sourceยง

impl Clone for semver::Version

Sourceยง

impl Clone for VersionReq

Sourceยง

impl Clone for IgnoredAny

Sourceยง

impl Clone for serde::de::value::Error

Sourceยง

impl Clone for DefaultToHost

Sourceยง

impl Clone for DefaultToUnknown

Sourceยง

impl Clone for Triple

Sourceยง

impl Clone for Buffer

Sourceยง

impl Clone for ColorChoiceParseError

Sourceยง

impl Clone for ColorSpec

Sourceยง

impl Clone for ParseColorError

Sourceยง

impl Clone for ComponentAliasSection

Sourceยง

impl Clone for CanonicalFunctionSection

Sourceยง

impl Clone for ComponentExportSection

Sourceยง

impl Clone for ComponentImportSection

Sourceยง

impl Clone for ComponentInstanceSection

Sourceยง

impl Clone for InstanceSection

Sourceยง

impl Clone for ComponentNameSection

Sourceยง

impl Clone for wasm_encoder::component::Component

Sourceยง

impl Clone for wasm_encoder::component::types::ComponentType

Sourceยง

impl Clone for ComponentTypeSection

Sourceยง

impl Clone for CoreTypeSection

Sourceยง

impl Clone for wasm_encoder::component::types::InstanceType

Sourceยง

impl Clone for wasm_encoder::component::types::ModuleType

Sourceยง

impl Clone for wasm_encoder::core::branch_hints::BranchHint

Sourceยง

impl Clone for CodeSection

Sourceยง

impl Clone for wasm_encoder::core::code::ConstExpr

Sourceยง

impl Clone for Function

Sourceยง

impl Clone for wasm_encoder::core::code::MemArg

Sourceยง

impl Clone for DataCountSection

Sourceยง

impl Clone for DataSection

Sourceยง

impl Clone for CoreDumpSection

Sourceยง

impl Clone for CoreDumpStackSection

Sourceยง

impl Clone for ElementSection

Sourceยง

impl Clone for ExportSection

Sourceยง

impl Clone for FunctionSection

Sourceยง

impl Clone for GlobalSection

Sourceยง

impl Clone for wasm_encoder::core::globals::GlobalType

Sourceยง

impl Clone for ImportSection

Sourceยง

impl Clone for DataSymbolDefinition

Sourceยง

impl Clone for LinkingSection

Sourceยง

impl Clone for wasm_encoder::core::linking::SymbolTable

Sourceยง

impl Clone for MemorySection

Sourceยง

impl Clone for wasm_encoder::core::memories::MemoryType

Sourceยง

impl Clone for IndirectNameMap

Sourceยง

impl Clone for wasm_encoder::core::names::NameMap

Sourceยง

impl Clone for NameSection

Sourceยง

impl Clone for wasm_encoder::core::producers::ProducersField

Sourceยง

impl Clone for ProducersSection

Sourceยง

impl Clone for StartSection

Sourceยง

impl Clone for Module

Sourceยง

impl Clone for TableSection

Sourceยง

impl Clone for wasm_encoder::core::tables::TableType

Sourceยง

impl Clone for TagSection

Sourceยง

impl Clone for wasm_encoder::core::tags::TagType

Sourceยง

impl Clone for wasm_encoder::core::types::ArrayType

Sourceยง

impl Clone for wasm_encoder::core::types::CompositeType

Sourceยง

impl Clone for wasm_encoder::core::types::ContType

Sourceยง

impl Clone for wasm_encoder::core::types::FieldType

Sourceยง

impl Clone for wasm_encoder::core::types::FuncType

Sourceยง

impl Clone for wasm_encoder::core::types::RefType

Sourceยง

impl Clone for wasm_encoder::core::types::StructType

Sourceยง

impl Clone for wasm_encoder::core::types::SubType

Sourceยง

impl Clone for TypeSection

Sourceยง

impl Clone for BinaryReaderError

Sourceยง

impl Clone for wasmparser::collections::hash::RandomState

Sourceยง

impl Clone for WasmFeatures

Sourceยง

impl Clone for Parser

Sourceยง

impl Clone for ComponentStartFunction

Sourceยง

impl Clone for wasmparser::readers::core::branch_hinting::BranchHint

Sourceยง

impl Clone for MemInfo

Sourceยง

impl Clone for ComdatSymbol

Sourceยง

impl Clone for DefinedDataSymbol

Sourceยง

impl Clone for InitFunc

Sourceยง

impl Clone for wasmparser::readers::core::linking::SegmentFlags

Sourceยง

impl Clone for wasmparser::readers::core::linking::SymbolFlags

Sourceยง

impl Clone for Ieee32

Sourceยง

impl Clone for Ieee64

Sourceยง

impl Clone for wasmparser::readers::core::operators::MemArg

Sourceยง

impl Clone for ResumeTable

Sourceยง

impl Clone for TryTable

Sourceยง

impl Clone for V128

Sourceยง

impl Clone for RelocationEntry

Sourceยง

impl Clone for wasmparser::readers::core::types::ArrayType

Sourceยง

impl Clone for wasmparser::readers::core::types::CompositeType

Sourceยง

impl Clone for wasmparser::readers::core::types::ContType

Sourceยง

impl Clone for wasmparser::readers::core::types::FieldType

Sourceยง

impl Clone for wasmparser::readers::core::types::FuncType

Sourceยง

impl Clone for wasmparser::readers::core::types::GlobalType

Sourceยง

impl Clone for wasmparser::readers::core::types::MemoryType

Sourceยง

impl Clone for PackedIndex

Sourceยง

impl Clone for RecGroup

Sourceยง

impl Clone for wasmparser::readers::core::types::RefType

Sourceยง

impl Clone for wasmparser::readers::core::types::StructType

Sourceยง

impl Clone for wasmparser::readers::core::types::SubType

Sourceยง

impl Clone for wasmparser::readers::core::types::TableType

Sourceยง

impl Clone for wasmparser::readers::core::types::TagType

Sourceยง

impl Clone for AliasableResourceId

Sourceยง

impl Clone for ComponentCoreInstanceTypeId

Sourceยง

impl Clone for ComponentCoreModuleTypeId

Sourceยง

impl Clone for ComponentDefinedTypeId

Sourceยง

impl Clone for wasmparser::validator::component_types::ComponentFuncType

Sourceยง

impl Clone for ComponentFuncTypeId

Sourceยง

impl Clone for ComponentInstanceType

Sourceยง

impl Clone for ComponentInstanceTypeId

Sourceยง

impl Clone for wasmparser::validator::component_types::ComponentType

Sourceยง

impl Clone for ComponentTypeId

Sourceยง

impl Clone for ComponentValueTypeId

Sourceยง

impl Clone for wasmparser::validator::component_types::InstanceType

Sourceยง

impl Clone for wasmparser::validator::component_types::ModuleType

Sourceยง

impl Clone for RecordType

Sourceยง

impl Clone for ResourceId

Sourceยง

impl Clone for TupleType

Sourceยง

impl Clone for wasmparser::validator::component_types::VariantCase

Sourceยง

impl Clone for VariantType

Sourceยง

impl Clone for wasmparser::validator::names::ComponentName

Sourceยง

impl Clone for KebabString

Sourceยง

impl Clone for Frame

Sourceยง

impl Clone for ValidatorId

Sourceยง

impl Clone for CoreTypeId

Sourceยง

impl Clone for RecGroupId

Sourceยง

impl<'a> Clone for Utf8Pattern<'a>

1.0.0 ยท Sourceยง

impl<'a> Clone for std::path::Component<'a>

1.0.0 ยท Sourceยง

impl<'a> Clone for std::path::Prefix<'a>

Sourceยง

impl<'a> Clone for Unexpected<'a>

Sourceยง

impl<'a> Clone for Alias<'a>

Sourceยง

impl<'a> Clone for Instruction<'a>

Sourceยง

impl<'a> Clone for DataSegmentMode<'a>

Sourceยง

impl<'a> Clone for ElementMode<'a>

Sourceยง

impl<'a> Clone for Elements<'a>

Sourceยง

impl<'a> Clone for ComponentAlias<'a>

Sourceยง

impl<'a> Clone for ComponentInstance<'a>

Sourceยง

impl<'a> Clone for Instance<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::component::names::ComponentName<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::component::types::ComponentDefinedType<'a>

Sourceยง

impl<'a> Clone for ComponentFuncResult<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::component::types::ComponentType<'a>

Sourceยง

impl<'a> Clone for ComponentTypeDeclaration<'a>

Sourceยง

impl<'a> Clone for CoreType<'a>

Sourceยง

impl<'a> Clone for InstanceTypeDeclaration<'a>

Sourceยง

impl<'a> Clone for ModuleTypeDeclaration<'a>

Sourceยง

impl<'a> Clone for DataKind<'a>

Sourceยง

impl<'a> Clone for ElementItems<'a>

Sourceยง

impl<'a> Clone for ElementKind<'a>

Sourceยง

impl<'a> Clone for Linking<'a>

Sourceยง

impl<'a> Clone for SymbolInfo<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::names::Name<'a>

Sourceยง

impl<'a> Clone for Operator<'a>

Sourceยง

impl<'a> Clone for TableInit<'a>

Sourceยง

impl<'a> Clone for ComponentNameKind<'a>

Sourceยง

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

Sourceยง

impl<'a> Clone for wasmtime_environ::__core::ffi::c_str::Bytes<'a>

1.0.0 ยท Sourceยง

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

1.10.0 ยท Sourceยง

impl<'a> Clone for wasmtime_environ::__core::panic::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 wasmtime_environ::__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 wasmtime_environ::__core::str::EscapeDebug<'a>

1.34.0 ยท Sourceยง

impl<'a> Clone for wasmtime_environ::__core::str::EscapeDefault<'a>

1.34.0 ยท Sourceยง

impl<'a> Clone for wasmtime_environ::__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>

1.36.0 ยท Sourceยง

impl<'a> Clone for IoSlice<'a>

1.28.0 ยท Sourceยง

impl<'a> Clone for Ancestors<'a>

1.0.0 ยท Sourceยง

impl<'a> Clone for Components<'a>

1.0.0 ยท Sourceยง

impl<'a> Clone for std::path::Iter<'a>

1.0.0 ยท Sourceยง

impl<'a> Clone for PrefixComponent<'a>

Sourceยง

impl<'a> Clone for anyhow::Chain<'a>

Sourceยง

impl<'a> Clone for log::Metadata<'a>

Sourceยง

impl<'a> Clone for Record<'a>

Sourceยง

impl<'a> Clone for HyperlinkSpec<'a>

Sourceยง

impl<'a> Clone for NestedComponentSection<'a>

Sourceยง

impl<'a> Clone for ModuleSection<'a>

Sourceยง

impl<'a> Clone for CustomSection<'a>

Sourceยง

impl<'a> Clone for RawCustomSection<'a>

Sourceยง

impl<'a> Clone for ElementSegment<'a>

Sourceยง

impl<'a> Clone for RawSection<'a>

Sourceยง

impl<'a> Clone for BinaryReader<'a>

Sourceยง

impl<'a> Clone for ComponentExport<'a>

Sourceยง

impl<'a> Clone for ComponentExportName<'a>

Sourceยง

impl<'a> Clone for ComponentImport<'a>

Sourceยง

impl<'a> Clone for ComponentImportName<'a>

Sourceยง

impl<'a> Clone for ComponentInstantiationArg<'a>

Sourceยง

impl<'a> Clone for InstantiationArg<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::component::types::ComponentFuncType<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::component::types::VariantCase<'a>

Sourceยง

impl<'a> Clone for BranchHintFunction<'a>

Sourceยง

impl<'a> Clone for FunctionBody<'a>

Sourceยง

impl<'a> Clone for CustomSectionReader<'a>

Sourceยง

impl<'a> Clone for Data<'a>

Sourceยง

impl<'a> Clone for Element<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::exports::Export<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::globals::Global<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::imports::Import<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::init::ConstExpr<'a>

Sourceยง

impl<'a> Clone for Comdat<'a>

Sourceยง

impl<'a> Clone for LinkingSectionReader<'a>

Sourceยง

impl<'a> Clone for Segment<'a>

Sourceยง

impl<'a> Clone for IndirectNaming<'a>

Sourceยง

impl<'a> Clone for Naming<'a>

Sourceยง

impl<'a> Clone for BrTable<'a>

Sourceยง

impl<'a> Clone for OperatorsReader<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::producers::ProducersField<'a>

Sourceยง

impl<'a> Clone for ProducersFieldValue<'a>

Sourceยง

impl<'a> Clone for RelocSectionReader<'a>

Sourceยง

impl<'a> Clone for wasmparser::readers::core::tables::Table<'a>

Sourceยง

impl<'a> Clone for DependencyName<'a>

Sourceยง

impl<'a> Clone for HashName<'a>

Sourceยง

impl<'a> Clone for InterfaceName<'a>

Sourceยง

impl<'a> Clone for ResourceFunc<'a>

Sourceยง

impl<'a> Clone for UrlName<'a>

Sourceยง

impl<'a> Clone for TypesRef<'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, D> Clone for DataSegment<'a, D>
where D: Clone,

Sourceยง

impl<'a, E> Clone for BytesDeserializer<'a, E>

Sourceยง

impl<'a, E> Clone for CowStrDeserializer<'a, E>

Sourceยง

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

Sourceยง

impl<'a, K> Clone for alloc::collections::btree::set::Cursor<'a, K>
where K: Clone + 'a,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::index_map::Iter<'a, K, V>
where K: Clone, V: Clone,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::index_map::Keys<'a, K, V>
where K: Clone, V: Clone,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::index_map::Values<'a, K, V>
where K: Clone, V: Clone,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::map::Iter<'a, K, V>
where K: Clone, V: Clone,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::map::Keys<'a, K, V>
where K: Clone, V: Clone,

Sourceยง

impl<'a, K, V> Clone for wasmparser::collections::map::Values<'a, K, V>
where K: Clone, V: Clone,

1.5.0 ยท Sourceยง

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

1.2.0 ยท Sourceยง

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

1.5.0 ยท Sourceยง

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

1.2.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<'a, P> Clone for wasmtime_environ::__core::str::RSplit<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Clone,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<'a, P> Clone for wasmtime_environ::__core::str::Split<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Clone,

1.51.0 ยท Sourceยง

impl<'a, P> Clone for wasmtime_environ::__core::str::SplitInclusive<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Clone,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

impl<'a, R> Clone for CallFrameInstructionIter<'a, R>
where R: Clone + Reader,

Sourceยง

impl<'a, R> Clone for EhHdrTable<'a, R>
where R: Clone + Reader,

Sourceยง

impl<'a, R> Clone for UnitRef<'a, R>
where R: Reader,

Sourceยง

impl<'a, R> Clone for ReadCacheRange<'a, R>
where R: ReadCacheOps,

1.31.0 ยท Sourceยง

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

Sourceยง

impl<'a, T> Clone for wasmparser::collections::index_set::Iter<'a, T>
where T: Clone,

Sourceยง

impl<'a, T> Clone for wasmparser::collections::set::Iter<'a, T>
where T: Clone,

Sourceยง

impl<'a, T> Clone for Ptr<'a, T>
where T: ?Sized,

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'abbrev, 'entry, 'unit, R> Clone for AttrsIter<'abbrev, 'entry, 'unit, R>
where R: Clone + Reader,

Sourceยง

impl<'abbrev, 'unit, R> Clone for EntriesCursor<'abbrev, 'unit, R>
where R: Clone + Reader,

Sourceยง

impl<'abbrev, 'unit, R> Clone for EntriesRaw<'abbrev, 'unit, R>
where R: Clone + Reader,

Sourceยง

impl<'abbrev, 'unit, R> Clone for EntriesTree<'abbrev, 'unit, R>
where R: Clone + Reader,

Sourceยง

impl<'abbrev, 'unit, R, Offset> Clone for DebuggingInformationEntry<'abbrev, 'unit, R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<'bases, Section, R> Clone for CieOrFde<'bases, Section, R>
where Section: Clone + UnwindSection<R>, R: Clone + Reader,

Sourceยง

impl<'bases, Section, R> Clone for CfiEntriesIter<'bases, Section, R>
where Section: Clone + UnwindSection<R>, R: Clone + Reader,

Sourceยง

impl<'bases, Section, R> Clone for PartialFrameDescriptionEntry<'bases, Section, R>
where Section: Clone + UnwindSection<R>, R: Clone + Reader, <R as Reader>::Offset: Clone, <Section as UnwindSection<R>>::Offset: Clone,

Sourceยง

impl<'data> Clone for AttributeIndexIterator<'data>

Sourceยง

impl<'data> Clone for AttributeReader<'data>

Sourceยง

impl<'data> Clone for AttributesSubsubsection<'data>

Sourceยง

impl<'data> Clone for object::read::elf::version::Version<'data>

Sourceยง

impl<'data> Clone for CodeView<'data>

Sourceยง

impl<'data> Clone for CompressedData<'data>

Sourceยง

impl<'data> Clone for object::read::Export<'data>

Sourceยง

impl<'data> Clone for object::read::Import<'data>

Sourceยง

impl<'data> Clone for ObjectMap<'data>

Sourceยง

impl<'data> Clone for ObjectMapEntry<'data>

Sourceยง

impl<'data> Clone for ObjectMapFile<'data>

Sourceยง

impl<'data> Clone for SymbolMapName<'data>

Sourceยง

impl<'data> Clone for object::read::util::Bytes<'data>

Sourceยง

impl<'data, 'file, Elf, R> Clone for ElfSymbol<'data, 'file, Elf, R>
where Elf: Clone + FileHeader, R: Clone + ReadRef<'data>, <Elf as FileHeader>::Endian: Clone, <Elf as FileHeader>::Sym: Clone,

Sourceยง

impl<'data, 'file, Elf, R> Clone for ElfSymbolTable<'data, 'file, Elf, R>
where Elf: Clone + FileHeader, R: Clone + ReadRef<'data>, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for AttributesSection<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for AttributesSubsection<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for AttributesSubsectionIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for AttributesSubsubsectionIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for VerdauxIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for VerdefIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for VernauxIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for VerneedIterator<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf> Clone for VersionTable<'data, Elf>
where Elf: Clone + FileHeader, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, Elf, R> Clone for SectionTable<'data, Elf, R>
where Elf: Clone + FileHeader, R: Clone + ReadRef<'data>, <Elf as FileHeader>::SectionHeader: Clone,

Sourceยง

impl<'data, Elf, R> Clone for object::read::elf::symbol::SymbolTable<'data, Elf, R>
where Elf: Clone + FileHeader, R: Clone + ReadRef<'data>, <Elf as FileHeader>::Sym: Clone, <Elf as FileHeader>::Endian: Clone,

Sourceยง

impl<'data, R> Clone for StringTable<'data, R>
where R: Clone + ReadRef<'data>,

Sourceยง

impl<'de, E> Clone for BorrowedBytesDeserializer<'de, E>

Sourceยง

impl<'de, E> Clone for BorrowedStrDeserializer<'de, E>

Sourceยง

impl<'de, E> Clone for StrDeserializer<'de, E>

Sourceยง

impl<'de, I, E> Clone for MapDeserializer<'de, I, E>
where I: Iterator + Clone, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::Second: Clone,

Sourceยง

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

1.63.0 ยท Sourceยง

impl<'fd> Clone for BorrowedFd<'fd>

Sourceยง

impl<'index, R> Clone for UnitIndexSectionIterator<'index, R>
where R: Clone + Reader,

Sourceยง

impl<'input, Endian> Clone for EndianSlice<'input, Endian>
where Endian: Clone + Endianity,

Sourceยง

impl<'iter, T> Clone for RegisterRuleIter<'iter, T>
where T: Clone + ReaderOffset,

Sourceยง

impl<'n> Clone for Finder<'n>

Sourceยง

impl<'n> Clone for FinderRev<'n>

Sourceยง

impl<'prev, 'subs> Clone for ArgScopeStack<'prev, 'subs>
where 'subs: 'prev,

1.0.0 ยท Sourceยง

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

1.82.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<A> Clone for wasmtime_environ::__core::option::IntoIter<A>
where A: Clone,

1.0.0 ยท Sourceยง

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

Sourceยง

impl<A> Clone for IterRange<A>
where A: Clone,

Sourceยง

impl<A> Clone for IterRangeFrom<A>
where A: Clone,

Sourceยง

impl<A> Clone for IterRangeInclusive<A>
where A: Clone,

Sourceยง

impl<A> Clone for EnumAccessDeserializer<A>
where A: Clone,

Sourceยง

impl<A> Clone for MapAccessDeserializer<A>
where A: Clone,

Sourceยง

impl<A> Clone for SeqAccessDeserializer<A>
where A: Clone,

Sourceยง

impl<A> Clone for smallvec::IntoIter<A>
where A: Array + Clone, <A as Array>::Item: Clone,

Sourceยง

impl<A> Clone for SmallVec<A>
where A: Array, <A as Array>::Item: Clone,

Sourceยง

impl<A> Clone for ComponentStartSection<A>
where A: Clone,

1.0.0 ยท Sourceยง

impl<A, B> Clone for wasmtime_environ::__core::iter::Chain<A, B>
where A: Clone, B: Clone,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<B> Clone for Cow<'_, B>
where B: ToOwned + ?Sized,

1.55.0 ยท Sourceยง

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

Sourceยง

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

Sourceยง

impl<E> Clone for ReadExactError<E>
where E: Clone,

Sourceยง

impl<E> Clone for WriteFmtError<E>
where E: Clone,

Sourceยง

impl<E> Clone for CompressionHeader32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for CompressionHeader64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Dyn32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Dyn64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for FileHeader32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for FileHeader64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for GnuHashHeader<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for HashHeader<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for NoteHeader32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for NoteHeader64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for ProgramHeader32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for ProgramHeader64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Rel32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Rel64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Rela32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Rela64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for SectionHeader32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for SectionHeader64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Sym32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Sym64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Syminfo32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Syminfo64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Verdaux<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for object::elf::Verdef<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for object::elf::Vernaux<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for object::elf::Verneed<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for Versym<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I16<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U16<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U32<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U64<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I16Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I32Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for I64Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U16Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U32Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for U64Bytes<E>
where E: Clone + Endian,

Sourceยง

impl<E> Clone for BoolDeserializer<E>

Sourceยง

impl<E> Clone for CharDeserializer<E>

Sourceยง

impl<E> Clone for F32Deserializer<E>

Sourceยง

impl<E> Clone for F64Deserializer<E>

Sourceยง

impl<E> Clone for I8Deserializer<E>

Sourceยง

impl<E> Clone for I16Deserializer<E>

Sourceยง

impl<E> Clone for I32Deserializer<E>

Sourceยง

impl<E> Clone for I64Deserializer<E>

Sourceยง

impl<E> Clone for I128Deserializer<E>

Sourceยง

impl<E> Clone for IsizeDeserializer<E>

Sourceยง

impl<E> Clone for StringDeserializer<E>

Sourceยง

impl<E> Clone for U8Deserializer<E>

Sourceยง

impl<E> Clone for U16Deserializer<E>

Sourceยง

impl<E> Clone for U32Deserializer<E>

Sourceยง

impl<E> Clone for U64Deserializer<E>

Sourceยง

impl<E> Clone for U128Deserializer<E>

Sourceยง

impl<E> Clone for UnitDeserializer<E>

Sourceยง

impl<E> Clone for UsizeDeserializer<E>

Sourceยง

impl<Endian> Clone for EndianVec<Endian>
where Endian: Clone + Endianity,

1.34.0 ยท Sourceยง

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

1.43.0 ยท Sourceยง

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

1.28.0 ยท Sourceยง

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

1.7.0 ยท Sourceยง

impl<H> Clone for BuildHasherDefault<H>

Sourceยง

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

1.9.0 ยท Sourceยง

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

1.1.0 ยท Sourceยง

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

1.36.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.28.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

impl<I, E> Clone for SeqDeserializer<I, E>
where I: Clone, E: Clone,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<I, F> Clone for wasmtime_environ::__core::iter::Map<I, F>
where I: Clone, F: Clone,

Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

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

1.57.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.29.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::legacy::Range<Idx>
where Idx: Clone,

1.0.0 ยท Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::legacy::RangeFrom<Idx>
where Idx: Clone,

1.26.0 ยท Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::legacy::RangeInclusive<Idx>
where Idx: Clone,

Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::Range<Idx>
where Idx: Clone,

Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::RangeFrom<Idx>
where Idx: Clone,

Sourceยง

impl<Idx> Clone for wasmtime_environ::__core::range::RangeInclusive<Idx>
where Idx: Clone,

1.0.0 ยท Sourceยง

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

1.26.0 ยท Sourceยง

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

Sourceยง

impl<K> Clone for EntitySet<K>
where K: Clone + EntityRef,

1.0.0 ยท Sourceยง

impl<K> Clone for std::collections::hash::set::Iter<'_, K>

Sourceยง

impl<K> Clone for hashbrown::set::Iter<'_, K>

Sourceยง

impl<K, V> Clone for Box<Slice<K, V>>
where K: Clone, V: Clone,

Sourceยง

impl<K, V> Clone for wasmtime_environ::prelude::IndexMap<K, V>
where K: Clone, V: Clone,

Sourceยง

impl<K, V> Clone for BoxedSlice<K, V>
where K: Clone + EntityRef, V: Clone,

Sourceยง

impl<K, V> Clone for PrimaryMap<K, V>
where K: Clone + EntityRef, V: Clone,

Sourceยง

impl<K, V> Clone for SecondaryMap<K, V>
where K: Clone + EntityRef, V: Clone,

Sourceยง

impl<K, V> Clone for alloc::collections::btree::map::Cursor<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for alloc::collections::btree::map::Iter<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for alloc::collections::btree::map::Keys<'_, K, V>

1.17.0 ยท Sourceยง

impl<K, V> Clone for alloc::collections::btree::map::Range<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for alloc::collections::btree::map::Values<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for std::collections::hash::map::Iter<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for std::collections::hash::map::Keys<'_, K, V>

1.0.0 ยท Sourceยง

impl<K, V> Clone for std::collections::hash::map::Values<'_, K, V>

Sourceยง

impl<K, V> Clone for hashbrown::map::Iter<'_, K, V>

Sourceยง

impl<K, V> Clone for hashbrown::map::Keys<'_, K, V>

Sourceยง

impl<K, V> Clone for hashbrown::map::Values<'_, K, V>

Sourceยง

impl<K, V> Clone for indexmap::map::iter::Iter<'_, K, V>

Sourceยง

impl<K, V> Clone for indexmap::map::iter::Keys<'_, K, V>

Sourceยง

impl<K, V> Clone for indexmap::map::iter::Values<'_, K, V>

Sourceยง

impl<K, V> Clone for wasmparser::collections::map::Map<K, V>
where K: Clone, V: Clone,

1.0.0 ยท Sourceยง

impl<K, V, A> Clone for BTreeMap<K, V, A>
where K: Clone, V: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<K, V, S> Clone for std::collections::hash::map::HashMap<K, V, S>
where K: Clone, V: Clone, S: Clone,

Sourceยง

impl<K, V, S> Clone for indexmap::map::IndexMap<K, V, S>
where K: Clone, V: Clone, S: Clone,

Sourceยง

impl<K, V, S, A> Clone for hashbrown::map::HashMap<K, V, S, A>
where K: Clone, V: Clone, S: Clone, A: Allocator + Clone,

Sourceยง

impl<K: Clone + Clone + Hash + Eq + Ord, V: Clone> Clone for wasmtime_environ::component::NameMap<K, V>

Sourceยง

impl<Offset> Clone for UnitType<Offset>
where Offset: Clone + ReaderOffset,

Sourceยง

impl<P: Clone> Clone for VMComponentOffsets<P>

Sourceยง

impl<P: Clone> Clone for VMOffsets<P>

Sourceยง

impl<P: Clone> Clone for VMOffsetsFields<P>

1.33.0 ยท Sourceยง

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

Sourceยง

impl<R> Clone for RawLocListEntry<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R> Clone for DebugAbbrev<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugAddr<R>
where R: Clone,

Sourceยง

impl<R> Clone for ArangeEntryIter<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for ArangeHeaderIter<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R> Clone for DebugAranges<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugFrame<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for EhFrame<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for EhFrameHdr<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for ParsedEhFrameHdr<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugCuIndex<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugTuIndex<R>
where R: Clone,

Sourceยง

impl<R> Clone for UnitIndex<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugLine<R>
where R: Clone,

Sourceยง

impl<R> Clone for LineInstructions<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for LineSequence<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugLoc<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugLocLists<R>
where R: Clone,

Sourceยง

impl<R> Clone for LocationListEntry<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for LocationLists<R>
where R: Clone,

Sourceยง

impl<R> Clone for gimli::read::op::Expression<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for OperationIter<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugPubNames<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for PubNamesEntry<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R> Clone for PubNamesEntryIter<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugPubTypes<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for PubTypesEntry<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R> Clone for PubTypesEntryIter<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugRanges<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugRngLists<R>
where R: Clone,

Sourceยง

impl<R> Clone for RangeLists<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugLineStr<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugStr<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugStrOffsets<R>
where R: Clone,

Sourceยง

impl<R> Clone for gimli::read::unit::Attribute<R>
where R: Clone + Reader,

Sourceยง

impl<R> Clone for DebugInfo<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugInfoUnitHeadersIter<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R> Clone for DebugTypes<R>
where R: Clone,

Sourceยง

impl<R> Clone for DebugTypesUnitHeadersIter<R>
where R: Clone + Reader, <R as Reader>::Offset: Clone,

Sourceยง

impl<R, Offset> Clone for LineInstruction<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for gimli::read::op::Location<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for Operation<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for gimli::read::unit::AttributeValue<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for ArangeHeader<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for gimli::read::cfi::CommonInformationEntry<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for gimli::read::cfi::FrameDescriptionEntry<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for CompleteLineProgram<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for FileEntry<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for IncompleteLineProgram<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for LineProgramHeader<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for Piece<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Offset> Clone for UnitHeader<R, Offset>
where R: Clone + Reader<Offset = Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, Program, Offset> Clone for LineRows<R, Program, Offset>
where R: Clone + Reader<Offset = Offset>, Program: Clone + LineProgram<R, Offset>, Offset: Clone + ReaderOffset,

Sourceยง

impl<R, T> Clone for RelocateReader<R, T>
where R: Clone + Reader<Offset = usize>, T: Clone + Relocate<<R as Reader>::Offset>,

Sourceยง

impl<Section, Symbol> Clone for object::common::SymbolFlags<Section, Symbol>
where Section: Clone, Symbol: Clone,

1.0.0 ยท Sourceยง

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

Shared references can be cloned, but mutable references cannot!

1.0.0 ยท Sourceยง

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

1.17.0 ยท Sourceยง

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

1.36.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Clone for gimli::read::cfi::CallFrameInstruction<T>
where T: Clone + ReaderOffset,

Sourceยง

impl<T> Clone for CfaRule<T>
where T: Clone + ReaderOffset,

Sourceยง

impl<T> Clone for RegisterRule<T>
where T: Clone + ReaderOffset,

Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<T> Clone for &T
where T: ?Sized,

Shared references can be cloned, but mutable references cannot!

Sourceยง

impl<T> Clone for PackedOption<T>
where T: Clone + ReservedValue,

Sourceยง

impl<T> Clone for Box<Slice<T>>
where T: Clone,

Sourceยง

impl<T> Clone for wasmtime_environ::prelude::IndexSet<T>
where T: Clone,

Sourceยง

impl<T> Clone for EntityList<T>

Sourceยง

impl<T> Clone for ListPool<T>

1.0.0 ยท Sourceยง

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

1.70.0 ยท Sourceยง

impl<T> Clone for wasmtime_environ::__core::cell::OnceCell<T>
where T: Clone,

1.0.0 ยท Sourceยง

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

1.19.0 ยท Sourceยง

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

1.48.0 ยท Sourceยง

impl<T> Clone for Pending<T>

1.48.0 ยท Sourceยง

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

1.2.0 ยท Sourceยง

impl<T> Clone for wasmtime_environ::__core::iter::Empty<T>

1.2.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.21.0 ยท Sourceยง

impl<T> Clone for Discriminant<T>

1.20.0 ยท Sourceยง

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

1.28.0 ยท Sourceยง

impl<T> Clone for NonZero<T>

1.74.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.25.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<T> Clone for wasmtime_environ::__core::result::IntoIter<T>
where T: Clone,

1.0.0 ยท Sourceยง

impl<T> Clone for wasmtime_environ::__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 wasmtime_environ::__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> Clone for alloc::collections::binary_heap::Iter<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for alloc::collections::btree::set::Iter<'_, T>

1.17.0 ยท Sourceยง

impl<T> Clone for alloc::collections::btree::set::Range<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for alloc::collections::btree::set::SymmetricDifference<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for alloc::collections::btree::set::Union<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for alloc::collections::linked_list::Iter<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for alloc::collections::vec_deque::iter::Iter<'_, T>

1.0.0 ยท Sourceยง

impl<T> Clone for std::io::cursor::Cursor<T>
where T: Clone,

Sourceยง

impl<T> Clone for Receiver<T>

Sourceยง

impl<T> Clone for std::sync::mpmc::Sender<T>

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<T> Clone for std::sync::mpsc::Sender<T>

1.0.0 ยท Sourceยง

impl<T> Clone for SyncSender<T>

1.70.0 ยท Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Clone for UnwindExpression<T>
where T: Clone + ReaderOffset,

Sourceยง

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

Sourceยง

impl<T> Clone for Bucket<T>

Sourceยง

impl<T> Clone for RawIter<T>

Sourceยง

impl<T> Clone for indexmap::set::iter::Iter<'_, T>

Sourceยง

impl<T> Clone for SymbolMap<T>
where T: Clone + SymbolMapEntry,

Sourceยง

impl<T> Clone for once_cell::unsync::OnceCell<T>
where T: Clone,

Sourceยง

impl<T> Clone for wasmparser::collections::set::Difference<'_, T>

Sourceยง

impl<T> Clone for wasmparser::collections::set::Intersection<'_, T>

Sourceยง

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

Sourceยง

impl<T> Clone for wasmparser::collections::set::SymmetricDifference<'_, T>

Sourceยง

impl<T> Clone for wasmparser::collections::set::Union<'_, T>

Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Clone for Unalign<T>
where T: Copy,

1.36.0 ยท Sourceยง

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

1.3.0 ยท Sourceยง

impl<T, A> Clone for Box<[T], A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for Box<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for Vec<T, A>
where T: Clone, A: Allocator + Clone,

1.8.0 ยท Sourceยง

impl<T, A> Clone for wasmtime_environ::prelude::vec::IntoIter<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for BinaryHeap<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for alloc::collections::binary_heap::IntoIter<T, A>
where T: Clone, A: Clone + Allocator,

Sourceยง

impl<T, A> Clone for IntoIterSorted<T, A>
where T: Clone, A: Clone + Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Clone for BTreeSet<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for alloc::collections::btree::set::Difference<'_, T, A>
where A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for alloc::collections::btree::set::Intersection<'_, T, A>
where A: Allocator + Clone,

Sourceยง

impl<T, A> Clone for alloc::collections::linked_list::Cursor<'_, T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Clone for alloc::collections::linked_list::IntoIter<T, A>
where T: Clone, A: Clone + Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Clone for LinkedList<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for alloc::collections::vec_deque::into_iter::IntoIter<T, A>
where T: Clone, A: Clone + Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Clone for VecDeque<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Clone for Rc<T, A>
where A: Allocator + Clone, T: ?Sized,

1.4.0 ยท Sourceยง

impl<T, A> Clone for alloc::rc::Weak<T, A>
where A: Allocator + Clone, T: ?Sized,

1.0.0 ยท Sourceยง

impl<T, A> Clone for Arc<T, A>
where A: Allocator + Clone, T: ?Sized,

1.4.0 ยท Sourceยง

impl<T, A> Clone for alloc::sync::Weak<T, A>
where A: Allocator + Clone, T: ?Sized,

Sourceยง

impl<T, A> Clone for RawTable<T, A>
where T: Clone, A: Allocator + Clone,

Sourceยง

impl<T, A> Clone for HashTable<T, A>
where T: Clone, A: Allocator + Clone,

1.0.0 ยท Sourceยง

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

1.34.0 ยท Sourceยง

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

1.27.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.51.0 ยท Sourceยง

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

Sourceยง

impl<T, S1, S2> Clone for indexmap::set::iter::SymmetricDifference<'_, T, S1, S2>

1.0.0 ยท Sourceยง

impl<T, S> Clone for std::collections::hash::set::Difference<'_, T, S>

1.0.0 ยท Sourceยง

impl<T, S> Clone for std::collections::hash::set::HashSet<T, S>
where T: Clone, S: Clone,

1.0.0 ยท Sourceยง

impl<T, S> Clone for std::collections::hash::set::Intersection<'_, T, S>

1.0.0 ยท Sourceยง

impl<T, S> Clone for std::collections::hash::set::SymmetricDifference<'_, T, S>

1.0.0 ยท Sourceยง

impl<T, S> Clone for std::collections::hash::set::Union<'_, T, S>

Sourceยง

impl<T, S> Clone for UnwindContext<T, S>

Sourceยง

impl<T, S> Clone for UnwindTableRow<T, S>

Sourceยง

impl<T, S> Clone for indexmap::set::iter::Difference<'_, T, S>

Sourceยง

impl<T, S> Clone for indexmap::set::iter::Intersection<'_, T, S>

Sourceยง

impl<T, S> Clone for indexmap::set::iter::Union<'_, T, S>

Sourceยง

impl<T, S> Clone for indexmap::set::IndexSet<T, S>
where T: Clone, S: Clone,

Sourceยง

impl<T, S, A> Clone for hashbrown::set::Difference<'_, T, S, A>
where A: Allocator,

Sourceยง

impl<T, S, A> Clone for hashbrown::set::HashSet<T, S, A>
where T: Clone, S: Clone, A: Allocator + Clone,

Sourceยง

impl<T, S, A> Clone for hashbrown::set::Intersection<'_, T, S, A>
where A: Allocator,

Sourceยง

impl<T, S, A> Clone for hashbrown::set::SymmetricDifference<'_, T, S, A>
where A: Allocator,

Sourceยง

impl<T, S, A> Clone for hashbrown::set::Union<'_, T, S, A>
where A: Allocator,

1.58.0 ยท Sourceยง

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

1.40.0 ยท Sourceยง

impl<T, const N: usize> Clone for wasmtime_environ::__core::array::IntoIter<T, N>
where T: Clone,

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 wasmtime_environ::__core::slice::ArrayChunks<'_, T, N>

Sourceยง

impl<T: Clone> Clone for ExportItem<T>

Sourceยง

impl<T: Clone> Clone for wasmtime_environ::component::dfg::CoreExport<T>

Sourceยง

impl<T: Clone> Clone for AllCallFunc<T>

Sourceยง

impl<T: Clone> Clone for wasmtime_environ::component::CoreExport<T>

Sourceยง

impl<W> Clone for Ansi<W>
where W: Clone,

Sourceยง

impl<W> Clone for NoColor<W>
where W: Clone,

Sourceยง

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