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 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 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 cpp_demangle::ast::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 termcolor::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

Sourceยง

impl Clone for winapi_util::console::Color

Sourceยง

impl Clone for Intense

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

impl Clone for InvalidHandleError

1.63.0 ยท Sourceยง

impl Clone for NullHandleError

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 Clone for ScreenBufferInfo

Sourceยง

impl Clone for Information

Sourceยง

impl Clone for winapi_util::file::Type

Sourceยง

impl Clone for HandleRef

Sourceยง

impl Clone for DEVPROPCOMPKEY

Sourceยง

impl Clone for DEVPROPERTY

Sourceยง

impl Clone for DEVPROPKEY

Sourceยง

impl Clone for GUID

Sourceยง

impl Clone for KCRM_MARSHAL_HEADER

Sourceยง

impl Clone for KCRM_PROTOCOL_BLOB

Sourceยง

impl Clone for KCRM_TRANSACTION_BLOB

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT

Sourceยง

impl Clone for TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT

Sourceยง

impl Clone for FILETIME

Sourceยง

impl Clone for CSTRING

Sourceยง

impl Clone for winapi::shared::ntdef::FLOAT128

Sourceยง

impl Clone for winapi::shared::ntdef::GROUP_AFFINITY

Sourceยง

impl Clone for LARGE_INTEGER

Sourceยง

impl Clone for LARGE_INTEGER_s

Sourceยง

impl Clone for LARGE_INTEGER_u

Sourceยง

impl Clone for winapi::shared::ntdef::LIST_ENTRY32

Sourceยง

impl Clone for winapi::shared::ntdef::LIST_ENTRY64

Sourceยง

impl Clone for winapi::shared::ntdef::LIST_ENTRY

Sourceยง

impl Clone for LUID

Sourceยง

impl Clone for winapi::shared::ntdef::OBJECTID

Sourceยง

impl Clone for OBJECT_ATTRIBUTES32

Sourceยง

impl Clone for OBJECT_ATTRIBUTES64

Sourceยง

impl Clone for OBJECT_ATTRIBUTES

Sourceยง

impl Clone for winapi::shared::ntdef::PROCESSOR_NUMBER

Sourceยง

impl Clone for QUAD

Sourceยง

impl Clone for RTL_BALANCED_NODE

Sourceยง

impl Clone for RTL_BALANCED_NODE_s

Sourceยง

impl Clone for RTL_BALANCED_NODE_u

Sourceยง

impl Clone for SINGLE_LIST_ENTRY32

Sourceยง

impl Clone for winapi::shared::ntdef::SINGLE_LIST_ENTRY

Sourceยง

impl Clone for STRING32

Sourceยง

impl Clone for STRING64

Sourceยง

impl Clone for STRING

Sourceยง

impl Clone for ULARGE_INTEGER

Sourceยง

impl Clone for ULARGE_INTEGER_s

Sourceยง

impl Clone for ULARGE_INTEGER_u

Sourceยง

impl Clone for UNICODE_STRING

Sourceยง

impl Clone for WNF_STATE_NAME

Sourceยง

impl Clone for POINT

Sourceยง

impl Clone for POINTL

Sourceยง

impl Clone for POINTS

Sourceยง

impl Clone for RECT

Sourceยง

impl Clone for RECTL

Sourceยง

impl Clone for SIZE

Sourceยง

impl Clone for BLOB

Sourceยง

impl Clone for BYTE_BLOB

Sourceยง

impl Clone for BYTE_SIZEDARR

Sourceยง

impl Clone for COAUTHIDENTITY

Sourceยง

impl Clone for COAUTHINFO

Sourceยง

impl Clone for DWORD_BLOB

Sourceยง

impl Clone for DWORD_SIZEDARR

Sourceยง

impl Clone for FLAGGED_BYTE_BLOB

Sourceยง

impl Clone for FLAGGED_WORD_BLOB

Sourceยง

impl Clone for HYPER_SIZEDARR

Sourceยง

impl Clone for WORD_BLOB

Sourceยง

impl Clone for WORD_SIZEDARR

Sourceยง

impl Clone for BUSNUMBER_DES

Sourceยง

impl Clone for BUSNUMBER_RANGE

Sourceยง

impl Clone for BUSNUMBER_RESOURCE

Sourceยง

impl Clone for CM_NOTIFY_EVENT_DATA

Sourceยง

impl Clone for CM_NOTIFY_EVENT_DATA_DeviceHandle

Sourceยง

impl Clone for CM_NOTIFY_EVENT_DATA_DeviceInstance

Sourceยง

impl Clone for CM_NOTIFY_EVENT_DATA_DeviceInterface

Sourceยง

impl Clone for CM_NOTIFY_EVENT_DATA_u

Sourceยง

impl Clone for CM_NOTIFY_FILTER

Sourceยง

impl Clone for CM_NOTIFY_FILTER_DeviceHandle

Sourceยง

impl Clone for CM_NOTIFY_FILTER_DeviceInstance

Sourceยง

impl Clone for CM_NOTIFY_FILTER_DeviceInterface

Sourceยง

impl Clone for CM_NOTIFY_FILTER_u

Sourceยง

impl Clone for CONFLICT_DETAILS_A

Sourceยง

impl Clone for CONFLICT_DETAILS_W

Sourceยง

impl Clone for CONNECTION_DES

Sourceยง

impl Clone for CONNECTION_RESOURCE

Sourceยง

impl Clone for CS_DES

Sourceยง

impl Clone for CS_RESOURCE

Sourceยง

impl Clone for DEVPRIVATE_DES

Sourceยง

impl Clone for DEVPRIVATE_RANGE

Sourceยง

impl Clone for DEVPRIVATE_RESOURCE

Sourceยง

impl Clone for DMA_DES

Sourceยง

impl Clone for DMA_RANGE

Sourceยง

impl Clone for DMA_RESOURCE

Sourceยง

impl Clone for HWPROFILEINFO_A

Sourceยง

impl Clone for HWPROFILEINFO_W

Sourceยง

impl Clone for IO_DES

Sourceยง

impl Clone for IO_RANGE

Sourceยง

impl Clone for IO_RESOURCE

Sourceยง

impl Clone for IRQ_DES_32

Sourceยง

impl Clone for IRQ_DES_64

Sourceยง

impl Clone for IRQ_RANGE

Sourceยง

impl Clone for IRQ_RESOURCE_32

Sourceยง

impl Clone for IRQ_RESOURCE_64

Sourceยง

impl Clone for MEM_DES

Sourceยง

impl Clone for MEM_LARGE_DES

Sourceยง

impl Clone for MEM_LARGE_RANGE

Sourceยง

impl Clone for MEM_LARGE_RESOURCE

Sourceยง

impl Clone for MEM_RANGE

Sourceยง

impl Clone for MEM_RESOURCE

Sourceยง

impl Clone for MFCARD_DES

Sourceยง

impl Clone for MFCARD_RESOURCE

Sourceยง

impl Clone for PCCARD_DES

Sourceยง

impl Clone for PCCARD_RESOURCE

Sourceยง

impl Clone for BY_HANDLE_FILE_INFORMATION

Sourceยง

impl Clone for CREATEFILE2_EXTENDED_PARAMETERS

Sourceยง

impl Clone for FILE_ALIGNMENT_INFO

Sourceยง

impl Clone for FILE_ALLOCATION_INFO

Sourceยง

impl Clone for FILE_ATTRIBUTE_TAG_INFO

Sourceยง

impl Clone for FILE_BASIC_INFO

Sourceยง

impl Clone for FILE_COMPRESSION_INFO

Sourceยง

impl Clone for FILE_DISPOSITION_INFO

Sourceยง

impl Clone for FILE_END_OF_FILE_INFO

Sourceยง

impl Clone for FILE_FULL_DIR_INFO

Sourceยง

impl Clone for FILE_ID_BOTH_DIR_INFO

Sourceยง

impl Clone for FILE_ID_INFO

Sourceยง

impl Clone for FILE_IO_PRIORITY_HINT_INFO

Sourceยง

impl Clone for FILE_NAME_INFO

Sourceยง

impl Clone for FILE_RENAME_INFO

Sourceยง

impl Clone for FILE_STANDARD_INFO

Sourceยง

impl Clone for FILE_STORAGE_INFO

Sourceยง

impl Clone for FILE_STREAM_INFO

Sourceยง

impl Clone for WIN32_FILE_ATTRIBUTE_DATA

Sourceยง

impl Clone for CREATE_PROCESS_DEBUG_INFO

Sourceยง

impl Clone for CREATE_THREAD_DEBUG_INFO

Sourceยง

impl Clone for DEBUG_EVENT

Sourceยง

impl Clone for DEBUG_EVENT_u

Sourceยง

impl Clone for EXCEPTION_DEBUG_INFO

Sourceยง

impl Clone for EXIT_PROCESS_DEBUG_INFO

Sourceยง

impl Clone for EXIT_THREAD_DEBUG_INFO

Sourceยง

impl Clone for LOAD_DLL_DEBUG_INFO

Sourceยง

impl Clone for OUTPUT_DEBUG_STRING_INFO

Sourceยง

impl Clone for OVERLAPPED

Sourceยง

impl Clone for OVERLAPPED_ENTRY

Sourceยง

impl Clone for OVERLAPPED_u

Sourceยง

impl Clone for OVERLAPPED_u_s

Sourceยง

impl Clone for PROCESS_HEAP_ENTRY

Sourceยง

impl Clone for PROCESS_HEAP_ENTRY_Block

Sourceยง

impl Clone for PROCESS_HEAP_ENTRY_Region

Sourceยง

impl Clone for PROCESS_HEAP_ENTRY_u

Sourceยง

impl Clone for REASON_CONTEXT

Sourceยง

impl Clone for REASON_CONTEXT_Detailed

Sourceยง

impl Clone for REASON_CONTEXT_Reason

Sourceยง

impl Clone for RIP_INFO

Sourceยง

impl Clone for SECURITY_ATTRIBUTES

Sourceยง

impl Clone for SYSTEMTIME

Sourceยง

impl Clone for UNLOAD_DLL_DEBUG_INFO

Sourceยง

impl Clone for WIN32_FIND_DATAA

Sourceยง

impl Clone for WIN32_FIND_DATAW

Sourceยง

impl Clone for PROCESS_INFORMATION

Sourceยง

impl Clone for PROC_THREAD_ATTRIBUTE_LIST

Sourceยง

impl Clone for STARTUPINFOA

Sourceยง

impl Clone for STARTUPINFOW

Sourceยง

impl Clone for ACTCTXA

Sourceยง

impl Clone for ACTCTXW

Sourceยง

impl Clone for ACTCTX_SECTION_KEYED_DATA

Sourceยง

impl Clone for ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA

Sourceยง

impl Clone for COMMCONFIG

Sourceยง

impl Clone for COMMPROP

Sourceยง

impl Clone for COMMTIMEOUTS

Sourceยง

impl Clone for COMSTAT

Sourceยง

impl Clone for COPYFILE2_EXTENDED_PARAMETERS

Sourceยง

impl Clone for COPYFILE2_MESSAGE

Sourceยง

impl Clone for COPYFILE2_MESSAGE_ChunkFinished

Sourceยง

impl Clone for COPYFILE2_MESSAGE_ChunkStarted

Sourceยง

impl Clone for COPYFILE2_MESSAGE_Error

Sourceยง

impl Clone for COPYFILE2_MESSAGE_Info

Sourceยง

impl Clone for COPYFILE2_MESSAGE_PollContinue

Sourceยง

impl Clone for COPYFILE2_MESSAGE_StreamFinished

Sourceยง

impl Clone for COPYFILE2_MESSAGE_StreamStarted

Sourceยง

impl Clone for DCB

Sourceยง

impl Clone for FILE_ID_DESCRIPTOR

Sourceยง

impl Clone for FILE_ID_DESCRIPTOR_u

Sourceยง

impl Clone for HW_PROFILE_INFOA

Sourceยง

impl Clone for HW_PROFILE_INFOW

Sourceยง

impl Clone for MEMORYSTATUS

Sourceยง

impl Clone for OFSTRUCT

Sourceยง

impl Clone for STARTUPINFOEXA

Sourceยง

impl Clone for STARTUPINFOEXW

Sourceยง

impl Clone for SYSTEM_POWER_STATUS

Sourceยง

impl Clone for UMS_SCHEDULER_STARTUP_INFO

Sourceยง

impl Clone for UMS_SYSTEM_THREAD_INFORMATION

Sourceยง

impl Clone for CONSOLE_CURSOR_INFO

Sourceยง

impl Clone for CONSOLE_FONT_INFOEX

Sourceยง

impl Clone for CONSOLE_HISTORY_INFO

Sourceยง

impl Clone for CONSOLE_READCONSOLE_CONTROL

Sourceยง

impl Clone for CONSOLE_SCREEN_BUFFER_INFO

Sourceยง

impl Clone for CONSOLE_SCREEN_BUFFER_INFOEX

Sourceยง

impl Clone for CONSOLE_SELECTION_INFO

Sourceยง

impl Clone for CHAR_INFO

Sourceยง

impl Clone for CHAR_INFO_Char

Sourceยง

impl Clone for CONSOLE_FONT_INFO

Sourceยง

impl Clone for COORD

Sourceยง

impl Clone for FOCUS_EVENT_RECORD

Sourceยง

impl Clone for INPUT_RECORD

Sourceยง

impl Clone for INPUT_RECORD_Event

Sourceยง

impl Clone for KEY_EVENT_RECORD

Sourceยง

impl Clone for KEY_EVENT_RECORD_uChar

Sourceยง

impl Clone for MENU_EVENT_RECORD

Sourceยง

impl Clone for MOUSE_EVENT_RECORD

Sourceยง

impl Clone for SMALL_RECT

Sourceยง

impl Clone for WINDOW_BUFFER_SIZE_RECORD

Sourceยง

impl Clone for ABC

Sourceยง

impl Clone for ABCFLOAT

Sourceยง

impl Clone for AXESLISTA

Sourceยง

impl Clone for AXESLISTW

Sourceยง

impl Clone for AXISINFOA

Sourceยง

impl Clone for AXISINFOW

Sourceยง

impl Clone for BITMAP

Sourceยง

impl Clone for BITMAPCOREHEADER

Sourceยง

impl Clone for BITMAPCOREINFO

Sourceยง

impl Clone for BITMAPFILEHEADER

Sourceยง

impl Clone for BITMAPINFO

Sourceยง

impl Clone for BITMAPINFOHEADER

Sourceยง

impl Clone for BITMAPV4HEADER

Sourceยง

impl Clone for BITMAPV5HEADER

Sourceยง

impl Clone for BLENDFUNCTION

Sourceยง

impl Clone for CHARSETINFO

Sourceยง

impl Clone for CIEXYZ

Sourceยง

impl Clone for CIEXYZTRIPLE

Sourceยง

impl Clone for COLORADJUSTMENT

Sourceยง

impl Clone for DESIGNVECTOR

Sourceยง

impl Clone for DEVMODEA

Sourceยง

impl Clone for DEVMODEW

Sourceยง

impl Clone for DEVMODE_u1

Sourceยง

impl Clone for DEVMODE_u1_s1

Sourceยง

impl Clone for DEVMODE_u1_s2

Sourceยง

impl Clone for DEVMODE_u2

Sourceยง

impl Clone for DIBSECTION

Sourceยง

impl Clone for DISPLAYCONFIG_2DREGION

Sourceยง

impl Clone for DISPLAYCONFIG_ADAPTER_NAME

Sourceยง

impl Clone for DISPLAYCONFIG_DESKTOP_IMAGE_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_DEVICE_INFO_HEADER

Sourceยง

impl Clone for DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_MODE_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_MODE_INFO_u

Sourceยง

impl Clone for DISPLAYCONFIG_PATH_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_PATH_SOURCE_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_PATH_TARGET_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_RATIONAL

Sourceยง

impl Clone for DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE

Sourceยง

impl Clone for DISPLAYCONFIG_SET_TARGET_PERSISTENCE

Sourceยง

impl Clone for DISPLAYCONFIG_SOURCE_DEVICE_NAME

Sourceยง

impl Clone for DISPLAYCONFIG_SOURCE_MODE

Sourceยง

impl Clone for DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION

Sourceยง

impl Clone for DISPLAYCONFIG_TARGET_BASE_TYPE

Sourceยง

impl Clone for DISPLAYCONFIG_TARGET_DEVICE_NAME

Sourceยง

impl Clone for DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS

Sourceยง

impl Clone for DISPLAYCONFIG_TARGET_MODE

Sourceยง

impl Clone for DISPLAYCONFIG_TARGET_PREFERRED_MODE

Sourceยง

impl Clone for DISPLAYCONFIG_VIDEO_SIGNAL_INFO

Sourceยง

impl Clone for DISPLAYCONFIG_VIDEO_SIGNAL_INFO_AdditionalSignalInfo

Sourceยง

impl Clone for DISPLAYCONFIG_VIDEO_SIGNAL_INFO_u

Sourceยง

impl Clone for DISPLAY_DEVICEA

Sourceยง

impl Clone for DISPLAY_DEVICEW

Sourceยง

impl Clone for DOCINFOA

Sourceยง

impl Clone for DOCINFOW

Sourceยง

impl Clone for DRAWPATRECT

Sourceยง

impl Clone for EMR

Sourceยง

impl Clone for EMRABORTPATH

Sourceยง

impl Clone for EMRALPHABLEND

Sourceยง

impl Clone for EMRANGLEARC

Sourceยง

impl Clone for EMRARC

Sourceยง

impl Clone for EMRBITBLT

Sourceยง

impl Clone for EMRCOLORCORRECTPALETTE

Sourceยง

impl Clone for EMRCOLORMATCHTOTARGET

Sourceยง

impl Clone for EMRCREATEBRUSHINDIRECT

Sourceยง

impl Clone for EMRCREATECOLORSPACE

Sourceยง

impl Clone for EMRCREATECOLORSPACEW

Sourceยง

impl Clone for EMRCREATEDIBPATTERNBRUSHPT

Sourceยง

impl Clone for EMRCREATEMONOBRUSH

Sourceยง

impl Clone for EMRCREATEPALETTE

Sourceยง

impl Clone for EMRCREATEPEN

Sourceยง

impl Clone for EMRELLIPSE

Sourceยง

impl Clone for EMREOF

Sourceยง

impl Clone for EMREXCLUDECLIPRECT

Sourceยง

impl Clone for EMREXTCREATEFONTINDIRECTW

Sourceยง

impl Clone for EMREXTCREATEPEN

Sourceยง

impl Clone for EMREXTESCAPE

Sourceยง

impl Clone for EMREXTFLOODFILL

Sourceยง

impl Clone for EMREXTSELECTCLIPRGN

Sourceยง

impl Clone for EMREXTTEXTOUTA

Sourceยง

impl Clone for EMRFILLPATH

Sourceยง

impl Clone for EMRFILLRGN

Sourceยง

impl Clone for EMRFORMAT

Sourceยง

impl Clone for EMRFRAMERGN

Sourceยง

impl Clone for EMRGDICOMMENT

Sourceยง

impl Clone for EMRGLSBOUNDEDRECORD

Sourceยง

impl Clone for EMRGLSRECORD

Sourceยง

impl Clone for EMRGRADIENTFILL

Sourceยง

impl Clone for EMRINVERTRGN

Sourceยง

impl Clone for EMRLINETO

Sourceยง

impl Clone for EMRMASKBLT

Sourceยง

impl Clone for EMRMODIFYWORLDTRANSFORM

Sourceยง

impl Clone for EMRNAMEDESCAPE

Sourceยง

impl Clone for EMROFFSETCLIPRGN

Sourceยง

impl Clone for EMRPIXELFORMAT

Sourceยง

impl Clone for EMRPLGBLT

Sourceยง

impl Clone for EMRPOLYDRAW16

Sourceยง

impl Clone for EMRPOLYDRAW

Sourceยง

impl Clone for EMRPOLYLINE16

Sourceยง

impl Clone for EMRPOLYLINE

Sourceยง

impl Clone for EMRPOLYPOLYLINE16

Sourceยง

impl Clone for EMRPOLYPOLYLINE

Sourceยง

impl Clone for EMRPOLYTEXTOUTA

Sourceยง

impl Clone for EMRRESIZEPALETTE

Sourceยง

impl Clone for EMRRESTOREDC

Sourceยง

impl Clone for EMRROUNDRECT

Sourceยง

impl Clone for EMRSCALEVIEWPORTEXTEX

Sourceยง

impl Clone for EMRSELECTCLIPPATH

Sourceยง

impl Clone for EMRSELECTOBJECT

Sourceยง

impl Clone for EMRSELECTPALETTE

Sourceยง

impl Clone for EMRSETARCDIRECTION

Sourceยง

impl Clone for EMRSETBKCOLOR

Sourceยง

impl Clone for EMRSETCOLORADJUSTMENT

Sourceยง

impl Clone for EMRSETCOLORSPACE

Sourceยง

impl Clone for EMRSETDIBITSTODEVICE

Sourceยง

impl Clone for EMRSETICMPROFILE

Sourceยง

impl Clone for EMRSETMAPPERFLAGS

Sourceยง

impl Clone for EMRSETMITERLIMIT

Sourceยง

impl Clone for EMRSETPALETTEENTRIES

Sourceยง

impl Clone for EMRSETPIXELV

Sourceยง

impl Clone for EMRSETVIEWPORTEXTEX

Sourceยง

impl Clone for EMRSETVIEWPORTORGEX

Sourceยง

impl Clone for EMRSETWORLDTRANSFORM

Sourceยง

impl Clone for EMRSTRETCHBLT

Sourceยง

impl Clone for EMRSTRETCHDIBITS

Sourceยง

impl Clone for EMRTEXT

Sourceยง

impl Clone for EMRTRANSPARENTBLT

Sourceยง

impl Clone for ENHMETAHEADER

Sourceยง

impl Clone for ENHMETARECORD

Sourceยง

impl Clone for ENUMLOGFONTA

Sourceยง

impl Clone for ENUMLOGFONTEXA

Sourceยง

impl Clone for ENUMLOGFONTEXDVA

Sourceยง

impl Clone for ENUMLOGFONTEXDVW

Sourceยง

impl Clone for ENUMLOGFONTEXW

Sourceยง

impl Clone for ENUMLOGFONTW

Sourceยง

impl Clone for ENUMTEXTMETRICA

Sourceยง

impl Clone for ENUMTEXTMETRICW

Sourceยง

impl Clone for EXTLOGFONTA

Sourceยง

impl Clone for EXTLOGFONTW

Sourceยง

impl Clone for EXTLOGPEN32

Sourceยง

impl Clone for EXTLOGPEN

Sourceยง

impl Clone for FIXED

Sourceยง

impl Clone for FONTSIGNATURE

Sourceยง

impl Clone for GCP_RESULTSA

Sourceยง

impl Clone for GCP_RESULTSW

Sourceยง

impl Clone for GLYPHMETRICS

Sourceยง

impl Clone for GLYPHMETRICSFLOAT

Sourceยง

impl Clone for GLYPHSET

Sourceยง

impl Clone for GRADIENT_RECT

Sourceยง

impl Clone for HANDLETABLE

Sourceยง

impl Clone for KERNINGPAIR

Sourceยง

impl Clone for LAYERPLANEDESCRIPTOR

Sourceยง

impl Clone for LOCALESIGNATURE

Sourceยง

impl Clone for LOGBRUSH32

Sourceยง

impl Clone for LOGBRUSH

Sourceยง

impl Clone for LOGCOLORSPACEA

Sourceยง

impl Clone for LOGCOLORSPACEW

Sourceยง

impl Clone for LOGFONTA

Sourceยง

impl Clone for LOGFONTW

Sourceยง

impl Clone for LOGPALETTE

Sourceยง

impl Clone for LOGPEN

Sourceยง

impl Clone for MAT2

Sourceยง

impl Clone for METAFILEPICT

Sourceยง

impl Clone for METAHEADER

Sourceยง

impl Clone for METARECORD

Sourceยง

impl Clone for NEWTEXTMETRICA

Sourceยง

impl Clone for NEWTEXTMETRICEXA

Sourceยง

impl Clone for NEWTEXTMETRICEXW

Sourceยง

impl Clone for NEWTEXTMETRICW

Sourceยง

impl Clone for OUTLINETEXTMETRICA

Sourceยง

impl Clone for OUTLINETEXTMETRICW

Sourceยง

impl Clone for PALETTEENTRY

Sourceยง

impl Clone for PANOSE

Sourceยง

impl Clone for PELARRAY

Sourceยง

impl Clone for PIXELFORMATDESCRIPTOR

Sourceยง

impl Clone for POINTFLOAT

Sourceยง

impl Clone for POINTFX

Sourceยง

impl Clone for POLYTEXTA

Sourceยง

impl Clone for POLYTEXTW

Sourceยง

impl Clone for PSFEATURE_CUSTPAPER

Sourceยง

impl Clone for PSFEATURE_OUTPUT

Sourceยง

impl Clone for PSINJECTDATA

Sourceยง

impl Clone for RASTERIZER_STATUS

Sourceยง

impl Clone for RGBQUAD

Sourceยง

impl Clone for RGBTRIPLE

Sourceยง

impl Clone for RGNDATA

Sourceยง

impl Clone for RGNDATAHEADER

Sourceยง

impl Clone for TEXTMETRICA

Sourceยง

impl Clone for TEXTMETRICW

Sourceยง

impl Clone for TRIVERTEX

Sourceยง

impl Clone for TTPOLYCURVE

Sourceยง

impl Clone for TTPOLYGONHEADER

Sourceยง

impl Clone for WCRANGE

Sourceยง

impl Clone for WGLSWAP

Sourceยง

impl Clone for XFORM

Sourceยง

impl Clone for ACCESS_ALLOWED_ACE

Sourceยง

impl Clone for ACCESS_ALLOWED_CALLBACK_ACE

Sourceยง

impl Clone for ACCESS_ALLOWED_CALLBACK_OBJECT_ACE

Sourceยง

impl Clone for ACCESS_ALLOWED_OBJECT_ACE

Sourceยง

impl Clone for ACCESS_DENIED_ACE

Sourceยง

impl Clone for ACCESS_DENIED_CALLBACK_ACE

Sourceยง

impl Clone for ACCESS_DENIED_CALLBACK_OBJECT_ACE

Sourceยง

impl Clone for ACCESS_DENIED_OBJECT_ACE

Sourceยง

impl Clone for ACCESS_REASONS

Sourceยง

impl Clone for ACE_HEADER

Sourceยง

impl Clone for ACL

Sourceยง

impl Clone for ACL_REVISION_INFORMATION

Sourceยง

impl Clone for ACL_SIZE_INFORMATION

Sourceยง

impl Clone for ACTIVATION_CONTEXT

Sourceยง

impl Clone for ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION

Sourceยง

impl Clone for ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION

Sourceยง

impl Clone for ACTIVATION_CONTEXT_DETAILED_INFORMATION

Sourceยง

impl Clone for ACTIVATION_CONTEXT_QUERY_INDEX

Sourceยง

impl Clone for ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION

Sourceยง

impl Clone for ADMINISTRATOR_POWER_POLICY

Sourceยง

impl Clone for ANON_OBJECT_HEADER

Sourceยง

impl Clone for ANON_OBJECT_HEADER_BIGOBJ

Sourceยง

impl Clone for ANON_OBJECT_HEADER_V2

Sourceยง

impl Clone for APPLICATIONLAUNCH_SETTING_VALUE

Sourceยง

impl Clone for ASSEMBLY_FILE_DETAILED_INFORMATION

Sourceยง

impl Clone for BATTERY_REPORTING_SCALE

Sourceยง

impl Clone for CACHE_DESCRIPTOR

Sourceยง

impl Clone for CACHE_RELATIONSHIP

Sourceยง

impl Clone for CFG_CALL_TARGET_INFO

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTES_INFORMATION

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTES_INFORMATION_Attribute

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1_Values

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_V1

Sourceยง

impl Clone for CLAIM_SECURITY_ATTRIBUTE_V1_Values

Sourceยง

impl Clone for CM_POWER_DATA

Sourceยง

impl Clone for COMPATIBILITY_CONTEXT_ELEMENT

Sourceยง

impl Clone for CONTEXT

Sourceยง

impl Clone for ENCLAVE_CREATE_INFO_SGX

Sourceยง

impl Clone for ENCLAVE_INIT_INFO_SGX

Sourceยง

impl Clone for ENLISTMENT_BASIC_INFORMATION

Sourceยง

impl Clone for ENLISTMENT_CRM_INFORMATION

Sourceยง

impl Clone for EVENTLOGRECORD

Sourceยง

impl Clone for EVENTSFORLOGFILE

Sourceยง

impl Clone for EXCEPTION_POINTERS

Sourceยง

impl Clone for EXCEPTION_RECORD32

Sourceยง

impl Clone for EXCEPTION_RECORD64

Sourceยง

impl Clone for EXCEPTION_RECORD

Sourceยง

impl Clone for EXCEPTION_REGISTRATION_RECORD

Sourceยง

impl Clone for FILE_ID_128

Sourceยง

impl Clone for FILE_NOTIFY_INFORMATION

Sourceยง

impl Clone for FILE_SEGMENT_ELEMENT

Sourceยง

impl Clone for winapi::um::winnt::FLOAT128

Sourceยง

impl Clone for FLOATING_SAVE_AREA

Sourceยง

impl Clone for FPO_DATA

Sourceยง

impl Clone for GENERIC_MAPPING

Sourceยง

impl Clone for winapi::um::winnt::GROUP_AFFINITY

Sourceยง

impl Clone for GROUP_RELATIONSHIP

Sourceยง

impl Clone for HARDWARE_COUNTER_DATA

Sourceยง

impl Clone for HEAP_OPTIMIZE_RESOURCES_INFORMATION

Sourceยง

impl Clone for HIBERFILE_BUCKET

Sourceยง

impl Clone for IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_ARCHITECTURE_ENTRY

Sourceยง

impl Clone for IMAGE_ARCHITECTURE_HEADER

Sourceยง

impl Clone for IMAGE_ARCHIVE_MEMBER_HEADER

Sourceยง

impl Clone for IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_ARM_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_CRC

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX_CRC

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX_File

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX_Section

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX_Sym

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_EX_s

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_File

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Section

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym_FcnAry

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym_FcnAry_Array

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym_FcnAry_Function

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym_Misc

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_Sym_Misc_LnSz

Sourceยง

impl Clone for IMAGE_AUX_SYMBOL_TOKEN_DEF

Sourceยง

impl Clone for IMAGE_BASE_RELOCATION

Sourceยง

impl Clone for IMAGE_BOUND_FORWARDER_REF

Sourceยง

impl Clone for IMAGE_BOUND_IMPORT_DESCRIPTOR

Sourceยง

impl Clone for IMAGE_CE_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_COFF_SYMBOLS_HEADER

Sourceยง

impl Clone for IMAGE_COR20_HEADER

Sourceยง

impl Clone for IMAGE_COR20_HEADER_u

Sourceยง

impl Clone for IMAGE_DATA_DIRECTORY

Sourceยง

impl Clone for IMAGE_DEBUG_DIRECTORY

Sourceยง

impl Clone for IMAGE_DEBUG_MISC

Sourceยง

impl Clone for IMAGE_DELAYLOAD_DESCRIPTOR

Sourceยง

impl Clone for IMAGE_DELAYLOAD_DESCRIPTOR_Attributes

Sourceยง

impl Clone for IMAGE_DOS_HEADER

Sourceยง

impl Clone for IMAGE_DYNAMIC_RELOCATION32

Sourceยง

impl Clone for IMAGE_DYNAMIC_RELOCATION32_V2

Sourceยง

impl Clone for IMAGE_DYNAMIC_RELOCATION64

Sourceยง

impl Clone for IMAGE_DYNAMIC_RELOCATION64_V2

Sourceยง

impl Clone for IMAGE_DYNAMIC_RELOCATION_TABLE

Sourceยง

impl Clone for IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER

Sourceยง

impl Clone for IMAGE_EXPORT_DIRECTORY

Sourceยง

impl Clone for IMAGE_FILE_HEADER

Sourceยง

impl Clone for IMAGE_FUNCTION_ENTRY64

Sourceยง

impl Clone for IMAGE_FUNCTION_ENTRY64_u

Sourceยง

impl Clone for IMAGE_FUNCTION_ENTRY

Sourceยง

impl Clone for IMAGE_HOT_PATCH_BASE

Sourceยง

impl Clone for IMAGE_HOT_PATCH_HASHES

Sourceยง

impl Clone for IMAGE_HOT_PATCH_INFO

Sourceยง

impl Clone for IMAGE_IMPORT_BY_NAME

Sourceยง

impl Clone for IMAGE_IMPORT_DESCRIPTOR

Sourceยง

impl Clone for IMAGE_IMPORT_DESCRIPTOR_u

Sourceยง

impl Clone for IMAGE_LINENUMBER

Sourceยง

impl Clone for IMAGE_LINENUMBER_Type

Sourceยง

impl Clone for IMAGE_LOAD_CONFIG_CODE_INTEGRITY

Sourceยง

impl Clone for IMAGE_LOAD_CONFIG_DIRECTORY32

Sourceยง

impl Clone for IMAGE_LOAD_CONFIG_DIRECTORY64

Sourceยง

impl Clone for IMAGE_NT_HEADERS32

Sourceยง

impl Clone for IMAGE_NT_HEADERS64

Sourceยง

impl Clone for IMAGE_OPTIONAL_HEADER32

Sourceยง

impl Clone for IMAGE_OPTIONAL_HEADER64

Sourceยง

impl Clone for IMAGE_OS2_HEADER

Sourceยง

impl Clone for IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER

Sourceยง

impl Clone for IMAGE_RELOCATION

Sourceยง

impl Clone for IMAGE_RELOCATION_u

Sourceยง

impl Clone for IMAGE_RESOURCE_DATA_ENTRY

Sourceยง

impl Clone for IMAGE_RESOURCE_DIRECTORY

Sourceยง

impl Clone for IMAGE_RESOURCE_DIRECTORY_ENTRY

Sourceยง

impl Clone for IMAGE_RESOURCE_DIRECTORY_ENTRY_u

Sourceยง

impl Clone for IMAGE_RESOURCE_DIRECTORY_ENTRY_u_s

Sourceยง

impl Clone for IMAGE_RESOURCE_DIRECTORY_STRING

Sourceยง

impl Clone for IMAGE_RESOURCE_DIR_STRING_U

Sourceยง

impl Clone for IMAGE_ROM_HEADERS

Sourceยง

impl Clone for IMAGE_ROM_OPTIONAL_HEADER

Sourceยง

impl Clone for IMAGE_RUNTIME_FUNCTION_ENTRY_u

Sourceยง

impl Clone for IMAGE_SECTION_HEADER

Sourceยง

impl Clone for IMAGE_SECTION_HEADER_Misc

Sourceยง

impl Clone for IMAGE_SEPARATE_DEBUG_HEADER

Sourceยง

impl Clone for IMAGE_SYMBOL

Sourceยง

impl Clone for IMAGE_SYMBOL_EX

Sourceยง

impl Clone for IMAGE_SYMBOL_EX_N

Sourceยง

impl Clone for IMAGE_SYMBOL_EX_N_Name

Sourceยง

impl Clone for IMAGE_SYMBOL_N

Sourceยง

impl Clone for IMAGE_SYMBOL_N_Name

Sourceยง

impl Clone for IMAGE_THUNK_DATA32

Sourceยง

impl Clone for IMAGE_THUNK_DATA32_u1

Sourceยง

impl Clone for IMAGE_THUNK_DATA64

Sourceยง

impl Clone for IMAGE_THUNK_DATA64_u1

Sourceยง

impl Clone for IMAGE_TLS_DIRECTORY32

Sourceยง

impl Clone for IMAGE_TLS_DIRECTORY64

Sourceยง

impl Clone for IMAGE_VXD_HEADER

Sourceยง

impl Clone for IMPORT_OBJECT_HEADER

Sourceยง

impl Clone for IMPORT_OBJECT_HEADER_u

Sourceยง

impl Clone for IO_COUNTERS

Sourceยง

impl Clone for JOBOBJECT_ASSOCIATE_COMPLETION_PORT

Sourceยง

impl Clone for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_BASIC_LIMIT_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_BASIC_PROCESS_ID_LIST

Sourceยง

impl Clone for JOBOBJECT_BASIC_UI_RESTRICTIONS

Sourceยง

impl Clone for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION_u

Sourceยง

impl Clone for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION_u_s

Sourceยง

impl Clone for JOBOBJECT_END_OF_JOB_TIME_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_EXTENDED_LIMIT_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_IO_ATTRIBUTION_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_IO_ATTRIBUTION_STATS

Sourceยง

impl Clone for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE

Sourceยง

impl Clone for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2

Sourceยง

impl Clone for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3

Sourceยง

impl Clone for JOBOBJECT_JOBSET_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_LIMIT_VIOLATION_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2

Sourceยง

impl Clone for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u1

Sourceยง

impl Clone for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u2

Sourceยง

impl Clone for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u3

Sourceยง

impl Clone for JOBOBJECT_NET_RATE_CONTROL_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION

Sourceยง

impl Clone for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2

Sourceยง

impl Clone for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u1

Sourceยง

impl Clone for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u2

Sourceยง

impl Clone for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u3

Sourceยง

impl Clone for JOBOBJECT_SECURITY_LIMIT_INFORMATION

Sourceยง

impl Clone for JOB_SET_ARRAY

Sourceยง

impl Clone for KTMOBJECT_CURSOR

Sourceยง

impl Clone for LDT_ENTRY

Sourceยง

impl Clone for LDT_ENTRY_Bits

Sourceยง

impl Clone for LDT_ENTRY_Bytes

Sourceยง

impl Clone for LDT_ENTRY_HighWord

Sourceยง

impl Clone for winapi::um::winnt::LIST_ENTRY32

Sourceยง

impl Clone for winapi::um::winnt::LIST_ENTRY64

Sourceยง

impl Clone for winapi::um::winnt::LIST_ENTRY

Sourceยง

impl Clone for LUID_AND_ATTRIBUTES

Sourceยง

impl Clone for M128A

Sourceยง

impl Clone for MEMORY_BASIC_INFORMATION32

Sourceยง

impl Clone for MEMORY_BASIC_INFORMATION64

Sourceยง

impl Clone for MEMORY_BASIC_INFORMATION

Sourceยง

impl Clone for MESSAGE_RESOURCE_BLOCK

Sourceยง

impl Clone for MESSAGE_RESOURCE_DATA

Sourceยง

impl Clone for MESSAGE_RESOURCE_ENTRY

Sourceยง

impl Clone for NETWORK_APP_INSTANCE_EA

Sourceยง

impl Clone for NON_PAGED_DEBUG_INFO

Sourceยง

impl Clone for NOTIFY_USER_POWER_SETTING

Sourceยง

impl Clone for NT_TIB32

Sourceยง

impl Clone for NT_TIB32_u

Sourceยง

impl Clone for NT_TIB64

Sourceยง

impl Clone for NT_TIB64_u

Sourceยง

impl Clone for NT_TIB

Sourceยง

impl Clone for NT_TIB_u

Sourceยง

impl Clone for NUMA_NODE_RELATIONSHIP

Sourceยง

impl Clone for winapi::um::winnt::OBJECTID

Sourceยง

impl Clone for OBJECT_TYPE_LIST

Sourceยง

impl Clone for OSVERSIONINFOA

Sourceยง

impl Clone for OSVERSIONINFOEXA

Sourceยง

impl Clone for OSVERSIONINFOEXW

Sourceยง

impl Clone for OSVERSIONINFOW

Sourceยง

impl Clone for PACKEDEVENTINFO

Sourceยง

impl Clone for PERFORMANCE_DATA

Sourceยง

impl Clone for POWER_ACTION_POLICY

Sourceยง

impl Clone for POWER_IDLE_RESILIENCY

Sourceยง

impl Clone for POWER_MONITOR_INVOCATION

Sourceยง

impl Clone for POWER_PLATFORM_INFORMATION

Sourceยง

impl Clone for POWER_SESSION_CONNECT

Sourceยง

impl Clone for POWER_SESSION_RIT_STATE

Sourceยง

impl Clone for POWER_SESSION_TIMEOUTS

Sourceยง

impl Clone for POWER_SESSION_WINLOGON

Sourceยง

impl Clone for POWER_USER_PRESENCE

Sourceยง

impl Clone for PPM_IDLESTATE_EVENT

Sourceยง

impl Clone for PPM_IDLE_ACCOUNTING

Sourceยง

impl Clone for PPM_IDLE_ACCOUNTING_EX

Sourceยง

impl Clone for PPM_IDLE_STATE_ACCOUNTING

Sourceยง

impl Clone for PPM_IDLE_STATE_ACCOUNTING_EX

Sourceยง

impl Clone for PPM_IDLE_STATE_BUCKET_EX

Sourceยง

impl Clone for PPM_PERFSTATE_DOMAIN_EVENT

Sourceยง

impl Clone for PPM_PERFSTATE_EVENT

Sourceยง

impl Clone for PPM_THERMALCHANGE_EVENT

Sourceยง

impl Clone for PPM_THERMAL_POLICY_EVENT

Sourceยง

impl Clone for PPM_WMI_IDLE_STATE

Sourceยง

impl Clone for PPM_WMI_IDLE_STATES

Sourceยง

impl Clone for PPM_WMI_IDLE_STATES_EX

Sourceยง

impl Clone for PPM_WMI_LEGACY_PERFSTATE

Sourceยง

impl Clone for PPM_WMI_PERF_STATE

Sourceยง

impl Clone for PPM_WMI_PERF_STATES

Sourceยง

impl Clone for PPM_WMI_PERF_STATES_EX

Sourceยง

impl Clone for PRIVILEGE_SET

Sourceยง

impl Clone for PROCESSOR_GROUP_INFO

Sourceยง

impl Clone for PROCESSOR_IDLESTATE_INFO

Sourceยง

impl Clone for PROCESSOR_IDLESTATE_POLICY

Sourceยง

impl Clone for PROCESSOR_IDLESTATE_POLICY_Flags

Sourceยง

impl Clone for winapi::um::winnt::PROCESSOR_NUMBER

Sourceยง

impl Clone for PROCESSOR_PERFSTATE_POLICY

Sourceยง

impl Clone for PROCESSOR_PERFSTATE_POLICY_u

Sourceยง

impl Clone for PROCESSOR_PERFSTATE_POLICY_u_Flags

Sourceยง

impl Clone for PROCESSOR_POWER_POLICY

Sourceยง

impl Clone for PROCESSOR_POWER_POLICY_INFO

Sourceยง

impl Clone for PROCESSOR_RELATIONSHIP

Sourceยง

impl Clone for PROCESS_MITIGATION_ASLR_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_CHILD_PROCESS_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_DEP_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_DYNAMIC_CODE_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_FONT_DISABLE_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_IMAGE_LOAD_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY

Sourceยง

impl Clone for PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY

Sourceยง

impl Clone for QUOTA_LIMITS

Sourceยง

impl Clone for QUOTA_LIMITS_EX

Sourceยง

impl Clone for RATE_QUOTA_LIMIT

Sourceยง

impl Clone for REPARSE_GUID_DATA_BUFFER

Sourceยง

impl Clone for REPARSE_GUID_DATA_BUFFER_GenericReparseBuffer

Sourceยง

impl Clone for RESOURCEMANAGER_BASIC_INFORMATION

Sourceยง

impl Clone for RESOURCEMANAGER_COMPLETION_INFORMATION

Sourceยง

impl Clone for RESUME_PERFORMANCE

Sourceยง

impl Clone for RTL_BARRIER

Sourceยง

impl Clone for RTL_CONDITION_VARIABLE

Sourceยง

impl Clone for RTL_CRITICAL_SECTION

Sourceยง

impl Clone for RTL_CRITICAL_SECTION_DEBUG

Sourceยง

impl Clone for RTL_RUN_ONCE

Sourceยง

impl Clone for RTL_SRWLOCK

Sourceยง

impl Clone for SCOPE_TABLE_AMD64

Sourceยง

impl Clone for SCOPE_TABLE_AMD64_ScopeRecord

Sourceยง

impl Clone for SCOPE_TABLE_ARM64

Sourceยง

impl Clone for SCOPE_TABLE_ARM64_ScopeRecord

Sourceยง

impl Clone for SCRUB_DATA_INPUT

Sourceยง

impl Clone for SCRUB_DATA_OUTPUT

Sourceยง

impl Clone for SCRUB_PARITY_EXTENT

Sourceยง

impl Clone for SCRUB_PARITY_EXTENT_DATA

Sourceยง

impl Clone for SECURITY_CAPABILITIES

Sourceยง

impl Clone for SECURITY_DESCRIPTOR

Sourceยง

impl Clone for SECURITY_DESCRIPTOR_RELATIVE

Sourceยง

impl Clone for SECURITY_OBJECT_AI_PARAMS

Sourceยง

impl Clone for SECURITY_QUALITY_OF_SERVICE

Sourceยง

impl Clone for SERVERSILO_BASIC_INFORMATION

Sourceยง

impl Clone for SET_POWER_SETTING_VALUE

Sourceยง

impl Clone for SE_ACCESS_REPLY

Sourceยง

impl Clone for SE_ACCESS_REQUEST

Sourceยง

impl Clone for SE_IMPERSONATION_STATE

Sourceยง

impl Clone for SE_SECURITY_DESCRIPTOR

Sourceยง

impl Clone for SE_SID

Sourceยง

impl Clone for SE_TOKEN_USER

Sourceยง

impl Clone for SE_TOKEN_USER_u1

Sourceยง

impl Clone for SE_TOKEN_USER_u2

Sourceยง

impl Clone for SHARED_VIRTUAL_DISK_SUPPORT

Sourceยง

impl Clone for SID

Sourceยง

impl Clone for SID_AND_ATTRIBUTES

Sourceยง

impl Clone for SID_AND_ATTRIBUTES_HASH

Sourceยง

impl Clone for SID_IDENTIFIER_AUTHORITY

Sourceยง

impl Clone for SILOOBJECT_BASIC_INFORMATION

Sourceยง

impl Clone for winapi::um::winnt::SINGLE_LIST_ENTRY

Sourceยง

impl Clone for SLIST_ENTRY

Sourceยง

impl Clone for SLIST_HEADER

Sourceยง

impl Clone for SLIST_HEADER_s

Sourceยง

impl Clone for SUPPORTED_OS_INFO

Sourceยง

impl Clone for SYSTEM_ACCESS_FILTER_ACE

Sourceยง

impl Clone for SYSTEM_ALARM_ACE

Sourceยง

impl Clone for SYSTEM_ALARM_CALLBACK_ACE

Sourceยง

impl Clone for SYSTEM_ALARM_CALLBACK_OBJECT_ACE

Sourceยง

impl Clone for SYSTEM_ALARM_OBJECT_ACE

Sourceยง

impl Clone for SYSTEM_AUDIT_ACE

Sourceยง

impl Clone for SYSTEM_AUDIT_CALLBACK_ACE

Sourceยง

impl Clone for SYSTEM_AUDIT_CALLBACK_OBJECT_ACE

Sourceยง

impl Clone for SYSTEM_AUDIT_OBJECT_ACE

Sourceยง

impl Clone for SYSTEM_BATTERY_STATE

Sourceยง

impl Clone for SYSTEM_CPU_SET_INFORMATION

Sourceยง

impl Clone for SYSTEM_CPU_SET_INFORMATION_CpuSet

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX_u

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_NumaNode

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_ProcessorCore

Sourceยง

impl Clone for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_u

Sourceยง

impl Clone for SYSTEM_MANDATORY_LABEL_ACE

Sourceยง

impl Clone for SYSTEM_POWER_CAPABILITIES

Sourceยง

impl Clone for SYSTEM_POWER_LEVEL

Sourceยง

impl Clone for SYSTEM_POWER_POLICY

Sourceยง

impl Clone for SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION

Sourceยง

impl Clone for SYSTEM_PROCESS_TRUST_LABEL_ACE

Sourceยง

impl Clone for SYSTEM_RESOURCE_ATTRIBUTE_ACE

Sourceยง

impl Clone for SYSTEM_SCOPED_POLICY_ID_ACE

Sourceยง

impl Clone for TAPE_CREATE_PARTITION

Sourceยง

impl Clone for TAPE_ERASE

Sourceยง

impl Clone for TAPE_GET_DRIVE_PARAMETERS

Sourceยง

impl Clone for TAPE_GET_MEDIA_PARAMETERS

Sourceยง

impl Clone for TAPE_GET_POSITION

Sourceยง

impl Clone for TAPE_PREPARE

Sourceยง

impl Clone for TAPE_SET_DRIVE_PARAMETERS

Sourceยง

impl Clone for TAPE_SET_MEDIA_PARAMETERS

Sourceยง

impl Clone for TAPE_SET_POSITION

Sourceยง

impl Clone for TAPE_WMI_OPERATIONS

Sourceยง

impl Clone for TAPE_WRITE_MARKS

Sourceยง

impl Clone for TOKEN_ACCESS_INFORMATION

Sourceยง

impl Clone for TOKEN_APPCONTAINER_INFORMATION

Sourceยง

impl Clone for TOKEN_AUDIT_POLICY

Sourceยง

impl Clone for TOKEN_BNO_ISOLATION_INFORMATION

Sourceยง

impl Clone for TOKEN_CONTROL

Sourceยง

impl Clone for TOKEN_DEFAULT_DACL

Sourceยง

impl Clone for TOKEN_DEVICE_CLAIMS

Sourceยง

impl Clone for TOKEN_ELEVATION

Sourceยง

impl Clone for TOKEN_GROUPS

Sourceยง

impl Clone for TOKEN_GROUPS_AND_PRIVILEGES

Sourceยง

impl Clone for TOKEN_LINKED_TOKEN

Sourceยง

impl Clone for TOKEN_MANDATORY_LABEL

Sourceยง

impl Clone for TOKEN_MANDATORY_POLICY

Sourceยง

impl Clone for TOKEN_ORIGIN

Sourceยง

impl Clone for TOKEN_OWNER

Sourceยง

impl Clone for TOKEN_PRIMARY_GROUP

Sourceยง

impl Clone for TOKEN_PRIVILEGES

Sourceยง

impl Clone for TOKEN_SID_INFORMATION

Sourceยง

impl Clone for TOKEN_SOURCE

Sourceยง

impl Clone for TOKEN_STATISTICS

Sourceยง

impl Clone for TOKEN_USER

Sourceยง

impl Clone for TOKEN_USER_CLAIMS

Sourceยง

impl Clone for TP_CALLBACK_ENVIRON_V3

Sourceยง

impl Clone for TP_CALLBACK_ENVIRON_V3_u

Sourceยง

impl Clone for TP_CALLBACK_ENVIRON_V3_u_s

Sourceยง

impl Clone for TP_CALLBACK_INSTANCE

Sourceยง

impl Clone for TP_CLEANUP_GROUP

Sourceยง

impl Clone for TP_IO

Sourceยง

impl Clone for TP_POOL

Sourceยง

impl Clone for TP_POOL_STACK_INFORMATION

Sourceยง

impl Clone for TP_TIMER

Sourceยง

impl Clone for TP_WAIT

Sourceยง

impl Clone for TP_WORK

Sourceยง

impl Clone for TRANSACTIONMANAGER_BASIC_INFORMATION

Sourceยง

impl Clone for TRANSACTIONMANAGER_LOGPATH_INFORMATION

Sourceยง

impl Clone for TRANSACTIONMANAGER_LOG_INFORMATION

Sourceยง

impl Clone for TRANSACTIONMANAGER_OLDEST_INFORMATION

Sourceยง

impl Clone for TRANSACTIONMANAGER_RECOVERY_INFORMATION

Sourceยง

impl Clone for TRANSACTION_BASIC_INFORMATION

Sourceยง

impl Clone for TRANSACTION_BIND_INFORMATION

Sourceยง

impl Clone for TRANSACTION_ENLISTMENTS_INFORMATION

Sourceยง

impl Clone for TRANSACTION_ENLISTMENT_PAIR

Sourceยง

impl Clone for TRANSACTION_LIST_ENTRY

Sourceยง

impl Clone for TRANSACTION_LIST_INFORMATION

Sourceยง

impl Clone for TRANSACTION_PROPERTIES_INFORMATION

Sourceยง

impl Clone for TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION

Sourceยง

impl Clone for UMS_CREATE_THREAD_ATTRIBUTES

Sourceยง

impl Clone for WOW64_ARCHITECTURE_INFORMATION

Sourceยง

impl Clone for WOW64_CONTEXT

Sourceยง

impl Clone for WOW64_DESCRIPTOR_TABLE_ENTRY

Sourceยง

impl Clone for WOW64_FLOATING_SAVE_AREA

Sourceยง

impl Clone for WOW64_LDT_ENTRY

Sourceยง

impl Clone for WOW64_LDT_ENTRY_Bits

Sourceยง

impl Clone for WOW64_LDT_ENTRY_Bytes

Sourceยง

impl Clone for WOW64_LDT_ENTRY_HighWord

Sourceยง

impl Clone for XSAVE_AREA

Sourceยง

impl Clone for XSAVE_AREA_HEADER

Sourceยง

impl Clone for XSAVE_FORMAT

Sourceยง

impl Clone for XSTATE_CONFIGURATION

Sourceยง

impl Clone for XSTATE_CONTEXT

Sourceยง

impl Clone for XSTATE_FEATURE

Sourceยง

impl Clone for _IMAGE_RUNTIME_FUNCTION_ENTRY

Sourceยง

impl Clone for VALENTA

Sourceยง

impl Clone for VALENTW

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>

1.0.0 ยท Sourceยง

impl<'a> Clone for EncodeWide<'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<'handle> Clone for BorrowedHandle<'handle>

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

impl<'socket> Clone for BorrowedSocket<'socket>

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,