Trait gsails::prelude::Copy

1.0.0 · source ·
pub trait Copy: Clone { }
Expand description

Types whose values can be duplicated simply by copying bits.

By default, variable bindings have ‘move semantics.’ In other words:

#[derive(Debug)]
struct Foo;

let x = Foo;

let y = x;

// `x` has moved into `y`, and so cannot be used

// println!("{x:?}"); // error: use of moved value

However, if a type implements Copy, it instead has ‘copy semantics’:

// We can derive a `Copy` implementation. `Clone` is also required, as it's
// a supertrait of `Copy`.
#[derive(Debug, Copy, Clone)]
struct Foo;

let x = Foo;

let y = x;

// `y` is a copy of `x`

println!("{x:?}"); // A-OK!

It’s important to note that in these two examples, the only difference is whether you are allowed to access x after the assignment. Under the hood, both a copy and a move can result in bits being copied in memory, although this is sometimes optimized away.

§How can I implement Copy?

There are two ways to implement Copy on your type. The simplest is to use derive:

#[derive(Copy, Clone)]
struct MyStruct;

You can also implement Copy and Clone manually:

struct MyStruct;

impl Copy for MyStruct { }

impl Clone for MyStruct {
    fn clone(&self) -> MyStruct {
        *self
    }
}

There is a small difference between the two: the derive strategy will also place a Copy bound on type parameters, which isn’t always desired.

§What’s the difference between Copy and Clone?

Copies happen implicitly, for example as part of an assignment y = x. The behavior of Copy is not overloadable; it is always a simple bit-wise copy.

Cloning is an explicit action, x.clone(). The implementation of Clone can provide any type-specific behavior necessary to duplicate values safely. For example, the implementation of Clone for String needs to copy the pointed-to string buffer in the heap. A simple bitwise copy of String values would merely copy the pointer, leading to a double free down the line. For this reason, String is Clone but not Copy.

Clone is a supertrait of Copy, so everything which is Copy must also implement Clone. If a type is Copy then its Clone implementation only needs to return *self (see the example above).

§When can my type be Copy?

A type can implement Copy if all of its components implement Copy. For example, this struct can be Copy:

#[derive(Copy, Clone)]
struct Point {
   x: i32,
   y: i32,
}

A struct can be Copy, and i32 is Copy, therefore Point is eligible to be Copy. By contrast, consider

struct PointList {
    points: Vec<Point>,
}

The struct PointList cannot implement Copy, because Vec<T> is not Copy. If we attempt to derive a Copy implementation, we’ll get an error:

the trait `Copy` cannot be implemented for this type; field `points` does not implement `Copy`

Shared references (&T) are also Copy, so a type can be Copy, even when it holds shared references of types T that are not Copy. Consider the following struct, which can implement Copy, because it only holds a shared reference to our non-Copy type PointList from above:

#[derive(Copy, Clone)]
struct PointListWrapper<'a> {
    point_list_ref: &'a PointList,
}

§When can’t my type be Copy?

Some types can’t be copied safely. For example, copying &mut T would create an aliased mutable reference. Copying String would duplicate responsibility for managing the String’s buffer, leading to a double free.

Generalizing the latter case, any type implementing Drop can’t be Copy, because it’s managing some resource besides its own size_of::<T> bytes.

If you try to implement Copy on a struct or enum containing non-Copy data, you will get the error E0204.

§When should my type be Copy?

Generally speaking, if your type can implement Copy, it should. Keep in mind, though, that implementing Copy is part of the public API of your type. If the type might become non-Copy in the future, it could be prudent to omit the Copy implementation now, to avoid a breaking API change.

§Additional implementors

In addition to the implementors listed below, the following types also implement Copy:

  • 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 Copy themselves. Note that variables captured by shared reference always implement Copy (even if the referent doesn’t), while variables captured by mutable reference never implement Copy.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Copy for AsciiChar

1.0.0 · source§

impl Copy for gsails::prelude::cmp::Ordering

1.34.0 · source§

impl Copy for Infallible

1.28.0 · source§

impl Copy for gsails::prelude::fmt::Alignment

1.7.0 · source§

impl Copy for core::net::ip_addr::IpAddr

source§

impl Copy for Ipv6MulticastScope

1.0.0 · source§

impl Copy for SocketAddr

1.0.0 · source§

impl Copy for core::sync::atomic::Ordering

1.0.0 · source§

impl Copy for std::io::SeekFrom

1.0.0 · source§

impl Copy for std::io::error::ErrorKind

1.0.0 · source§

impl Copy for std::net::Shutdown

source§

impl Copy for BacktraceStyle

1.12.0 · source§

impl Copy for RecvTimeoutError

1.0.0 · source§

impl Copy for std::sync::mpsc::TryRecvError

source§

impl Copy for _Unwind_Action

source§

impl Copy for _Unwind_Reason_Code

source§

impl Copy for AhoCorasickKind

source§

impl Copy for aho_corasick::packed::api::MatchKind

source§

impl Copy for aho_corasick::util::search::Anchored

source§

impl Copy for aho_corasick::util::search::MatchKind

source§

impl Copy for StartKind

source§

impl Copy for Colour

source§

impl Copy for PrintFmt

source§

impl Copy for DecodePaddingMode

source§

impl Copy for CharacterSet

source§

impl Copy for bs58::alphabet::Error

source§

impl Copy for bs58::alphabet::Error

source§

impl Copy for bs58::decode::Error

source§

impl Copy for bs58::decode::Error

source§

impl Copy for bs58::encode::Error

source§

impl Copy for bs58::encode::Error

source§

impl Copy for byteorder::BigEndian

source§

impl Copy for byteorder::LittleEndian

source§

impl Copy for Edition

source§

impl Copy for LintLevel

source§

impl Copy for MaintenanceStatus

source§

impl Copy for Resolver

source§

impl Copy for Colons

source§

impl Copy for OffsetPrecision

source§

impl Copy for Pad

source§

impl Copy for ParseErrorKind

source§

impl Copy for SecondsFormat

source§

impl Copy for Month

source§

impl Copy for RoundingError

source§

impl Copy for Weekday

source§

impl Copy for colored::color::Color

source§

impl Copy for Styles

source§

impl Copy for const_oid::error::Error

source§

impl Copy for DemangleNodeType

source§

impl Copy for cpp_demangle::error::Error

source§

impl Copy for cranelift_codegen::binemit::Reloc

source§

impl Copy for CursorPosition

source§

impl Copy for AtomicRmwOp

source§

impl Copy for FloatCC

source§

impl Copy for IntCC

source§

impl Copy for ValueDef

source§

impl Copy for AnyEntity

source§

impl Copy for ArgumentExtension

source§

impl Copy for ArgumentPurpose

source§

impl Copy for InstructionFormat

source§

impl Copy for cranelift_codegen::ir::instructions::Opcode

source§

impl Copy for ResolvedConstraint

source§

impl Copy for cranelift_codegen::ir::libcall::LibCall

source§

impl Copy for cranelift_codegen::ir::memflags::Endianness

source§

impl Copy for ExpandedProgramPoint

source§

impl Copy for StackSlotKind

source§

impl Copy for cranelift_codegen::ir::trapcode::TrapCode

source§

impl Copy for CallConv

source§

impl Copy for LookupError

source§

impl Copy for Detail

source§

impl Copy for LibcallCallConv

source§

impl Copy for OptLevel

source§

impl Copy for Regalloc

source§

impl Copy for cranelift_codegen::settings::SettingKind

source§

impl Copy for TlsModel

source§

impl Copy for LabelValueLoc

source§

impl Copy for der::error::ErrorKind

source§

impl Copy for Class

source§

impl Copy for der::tag::Tag

source§

impl Copy for TagMode

source§

impl Copy for TruncSide

source§

impl Copy for RV

source§

impl Copy for RX

source§

impl Copy for RXSP

source§

impl Copy for LabelKind

source§

impl Copy for TargetKind

source§

impl Copy for dynasmrt::relocations::RelocationKind

source§

impl Copy for RelocationSize

source§

impl Copy for dynasmrt::x64::RC

source§

impl Copy for Rq

source§

impl Copy for dynasmrt::x64::Rx

source§

impl Copy for RB

source§

impl Copy for dynasmrt::x86::RC

source§

impl Copy for RD

source§

impl Copy for Rd

source§

impl Copy for Rf

source§

impl Copy for Rh

source§

impl Copy for Rm

source§

impl Copy for Rs

source§

impl Copy for dynasmrt::x86::Rx

source§

impl Copy for ed25519_zebra::error::Error

source§

impl Copy for TimestampPrecision

source§

impl Copy for WriteStyle

source§

impl Copy for DispatchClass

source§

impl Copy for Pays

source§

impl Copy for ProcessMessageError

source§

impl Copy for BalanceStatus

source§

impl Copy for DepositConsequence

source§

impl Copy for ExistenceRequirement

source§

impl Copy for Fortitude

source§

impl Copy for Precision

source§

impl Copy for Preservation

source§

impl Copy for Provenance

source§

impl Copy for Restriction

source§

impl Copy for PollNext

source§

impl Copy for GasTreeError

source§

impl Copy for MailboxErrorImpl

source§

impl Copy for gear_common::code_storage::Error

source§

impl Copy for gear_common::scheduler::StorageType

source§

impl Copy for ExecutionError

source§

impl Copy for ExtError

source§

impl Copy for MemoryError

source§

impl Copy for MessageError

source§

impl Copy for ReservationError

source§

impl Copy for ErrorReplyReason

source§

impl Copy for ReplyCode

source§

impl Copy for SignalCode

source§

impl Copy for SimpleExecutionError

source§

impl Copy for SimpleProgramCreationError

source§

impl Copy for SuccessReplyReason

source§

impl Copy for CostToken

source§

impl Copy for ChargeResult

source§

impl Copy for CounterType

source§

impl Copy for LockId

source§

impl Copy for MessageDetails

source§

impl Copy for DispatchKind

source§

impl Copy for GasReservationState

source§

impl Copy for GlobalsAccessMod

source§

impl Copy for gear_lazy_pages_common::Status

source§

impl Copy for LazyPagesVersion

source§

impl Copy for Instantiate

source§

impl Copy for SystemBreakCode

source§

impl Copy for HashType

source§

impl Copy for ParamType

source§

impl Copy for RegularParamType

source§

impl Copy for SyscallName

source§

impl Copy for ErrPtr

source§

impl Copy for gear_wasm_instrument::syscalls::pointers::Ptr

source§

impl Copy for gear_wasm::elements::export_entry::Internal

source§

impl Copy for gear_wasm::elements::import_entry::External

source§

impl Copy for gear_wasm::elements::module::ImportCountType

source§

impl Copy for gear_wasm::elements::reloc_section::RelocationEntry

source§

impl Copy for gear_wasm::elements::types::BlockType

source§

impl Copy for gear_wasm::elements::types::TableElementType

source§

impl Copy for gear_wasm::elements::types::ValueType

source§

impl Copy for gimli::common::DwarfFileType

source§

impl Copy for gimli::common::DwarfFileType

source§

impl Copy for gimli::common::DwarfFileType

source§

impl Copy for gimli::common::Format

source§

impl Copy for gimli::common::Format

source§

impl Copy for gimli::common::Format

source§

impl Copy for gimli::common::SectionId

source§

impl Copy for gimli::common::SectionId

source§

impl Copy for gimli::common::SectionId

source§

impl Copy for Vendor

source§

impl Copy for gimli::endianity::RunTimeEndian

source§

impl Copy for gimli::endianity::RunTimeEndian

source§

impl Copy for gimli::endianity::RunTimeEndian

source§

impl Copy for AbbreviationsCacheStrategy

source§

impl Copy for gimli::read::cfi::Pointer

source§

impl Copy for gimli::read::cfi::Pointer

source§

impl Copy for gimli::read::cfi::Pointer

source§

impl Copy for gimli::read::Error

source§

impl Copy for gimli::read::Error

source§

impl Copy for gimli::read::Error

source§

impl Copy for gimli::read::line::ColumnType

source§

impl Copy for gimli::read::line::ColumnType

source§

impl Copy for gimli::read::line::ColumnType

source§

impl Copy for gimli::read::value::Value

source§

impl Copy for gimli::read::value::Value

source§

impl Copy for gimli::read::value::Value

source§

impl Copy for gimli::read::value::ValueType

source§

impl Copy for gimli::read::value::ValueType

source§

impl Copy for gimli::read::value::ValueType

source§

impl Copy for gimli::write::convert::ConvertError

source§

impl Copy for gimli::write::convert::ConvertError

source§

impl Copy for gimli::write::Address

source§

impl Copy for gimli::write::Address

source§

impl Copy for gimli::write::Error

source§

impl Copy for gimli::write::Error

source§

impl Copy for gimli::write::Reference

source§

impl Copy for gimli::write::Reference

source§

impl Copy for ConversionError

source§

impl Copy for MemoryGrowCost

source§

impl Copy for FuelConsumptionMode

source§

impl Copy for gwasmi::global::Mutability

source§

impl Copy for Extern

source§

impl Copy for gwasmi_core::trap::TrapCode

source§

impl Copy for gwasmi_core::untyped::UntypedError

source§

impl Copy for gwasmi_core::value::ValueType

source§

impl Copy for hex::error::FromHexError

source§

impl Copy for httparse::Error

source§

impl Copy for humantime::date::Error

source§

impl Copy for jsonrpsee_client_transport::ws::Mode

source§

impl Copy for jsonrpsee_client_transport::ws::Mode

source§

impl Copy for jsonrpsee_core::client::CertificateStore

source§

impl Copy for jsonrpsee_core::client::CertificateStore

source§

impl Copy for jsonrpsee_core::client::IdKind

source§

impl Copy for jsonrpsee_core::client::IdKind

source§

impl Copy for jsonrpsee_types::error::ErrorCode

source§

impl Copy for jsonrpsee_types::error::ErrorCode

source§

impl Copy for SubscriptionAcceptRejectError

source§

impl Copy for libsecp256k1_core::error::Error

source§

impl Copy for _bindgen_ty_1

source§

impl Copy for _bindgen_ty_2

source§

impl Copy for _bindgen_ty_3

source§

impl Copy for _bindgen_ty_4

source§

impl Copy for _bindgen_ty_5

source§

impl Copy for _bindgen_ty_6

source§

impl Copy for _bindgen_ty_7

source§

impl Copy for _bindgen_ty_8

source§

impl Copy for _bindgen_ty_9

source§

impl Copy for _bindgen_ty_10

source§

impl Copy for _bindgen_ty_11

source§

impl Copy for _bindgen_ty_12

source§

impl Copy for linux_raw_sys::general::fsconfig_command

source§

impl Copy for linux_raw_sys::general::fsconfig_command

source§

impl Copy for linux_raw_sys::general::membarrier_cmd

source§

impl Copy for linux_raw_sys::general::membarrier_cmd

source§

impl Copy for linux_raw_sys::general::membarrier_cmd_flag

source§

impl Copy for linux_raw_sys::general::membarrier_cmd_flag

source§

impl Copy for socket_state

source§

impl Copy for tcp_ca_state

source§

impl Copy for tcp_fastopen_client_fail

source§

impl Copy for log::Level

source§

impl Copy for log::LevelFilter

source§

impl Copy for PrefilterConfig

source§

impl Copy for HugetlbSize

source§

impl Copy for FileSeal

source§

impl Copy for memmap2::advice::Advice

source§

impl Copy for DataFormat

source§

impl Copy for MZError

source§

impl Copy for MZFlush

source§

impl Copy for MZStatus

source§

impl Copy for TINFLStatus

source§

impl Copy for nix::dir::Type

source§

impl Copy for nix::errno::consts::Errno

source§

impl Copy for FlockArg

source§

impl Copy for PosixFadviseAdvice

source§

impl Copy for AioCancelStat

source§

impl Copy for AioFsyncMode

source§

impl Copy for LioMode

source§

impl Copy for EpollOp

source§

impl Copy for MmapAdvise

source§

impl Copy for Event

source§

impl Copy for Request

source§

impl Copy for QuotaFmt

source§

impl Copy for QuotaType

source§

impl Copy for RebootMode

source§

impl Copy for Resource

source§

impl Copy for UsageWho

source§

impl Copy for SigHandler

source§

impl Copy for SigevNotify

source§

impl Copy for SigmaskHow

source§

impl Copy for Signal

source§

impl Copy for AddressFamily

source§

impl Copy for InetAddr

source§

impl Copy for nix::sys::socket::addr::IpAddr

source§

impl Copy for SockAddr

source§

impl Copy for nix::sys::socket::Shutdown

source§

impl Copy for SockProtocol

source§

impl Copy for nix::sys::socket::SockType

source§

impl Copy for FchmodatFlags

source§

impl Copy for UtimensatFlags

source§

impl Copy for BaudRate

source§

impl Copy for FlowArg

source§

impl Copy for FlushArg

source§

impl Copy for SetArg

source§

impl Copy for SpecialCharacterIndices

source§

impl Copy for Expiration

source§

impl Copy for nix::sys::timerfd::ClockId

source§

impl Copy for nix::sys::wait::Id

source§

impl Copy for WaitStatus

source§

impl Copy for FchownatFlags

source§

impl Copy for ForkResult

source§

impl Copy for LinkatFlags

source§

impl Copy for PathconfVar

source§

impl Copy for SysconfVar

source§

impl Copy for UnlinkatFlags

source§

impl Copy for Whence

source§

impl Copy for Sign

source§

impl Copy for Grouping

source§

impl Copy for Locale

source§

impl Copy for NewWithLenError

source§

impl Copy for TryFromRangeError

source§

impl Copy for object::common::AddressSize

source§

impl Copy for object::common::AddressSize

source§

impl Copy for object::common::Architecture

source§

impl Copy for object::common::Architecture

source§

impl Copy for object::common::BinaryFormat

source§

impl Copy for object::common::BinaryFormat

source§

impl Copy for object::common::ComdatKind

source§

impl Copy for object::common::ComdatKind

source§

impl Copy for object::common::FileFlags

source§

impl Copy for object::common::FileFlags

source§

impl Copy for object::common::RelocationEncoding

source§

impl Copy for object::common::RelocationEncoding

source§

impl Copy for RelocationFlags

source§

impl Copy for object::common::RelocationKind

source§

impl Copy for object::common::RelocationKind

source§

impl Copy for object::common::SectionFlags

source§

impl Copy for object::common::SectionFlags

source§

impl Copy for object::common::SectionKind

source§

impl Copy for object::common::SectionKind

source§

impl Copy for object::common::SegmentFlags

source§

impl Copy for object::common::SegmentFlags

source§

impl Copy for SubArchitecture

source§

impl Copy for object::common::SymbolKind

source§

impl Copy for object::common::SymbolKind

source§

impl Copy for object::common::SymbolScope

source§

impl Copy for object::common::SymbolScope

source§

impl Copy for object::endian::Endianness

source§

impl Copy for object::endian::Endianness

source§

impl Copy for ArchiveKind

source§

impl Copy for ImportType

source§

impl Copy for object::read::CompressionFormat

source§

impl Copy for object::read::CompressionFormat

source§

impl Copy for object::read::FileKind

source§

impl Copy for object::read::FileKind

source§

impl Copy for object::read::ObjectKind

source§

impl Copy for object::read::ObjectKind

source§

impl Copy for object::read::RelocationTarget

source§

impl Copy for object::read::RelocationTarget

source§

impl Copy for object::read::SymbolSection

source§

impl Copy for object::read::SymbolSection

source§

impl Copy for Mangling

source§

impl Copy for StandardSection

source§

impl Copy for StandardSegment

source§

impl Copy for object::write::SymbolSection

source§

impl Copy for parity_wasm::elements::export_entry::Internal

source§

impl Copy for parity_wasm::elements::import_entry::External

source§

impl Copy for parity_wasm::elements::module::ImportCountType

source§

impl Copy for parity_wasm::elements::reloc_section::RelocationEntry

source§

impl Copy for parity_wasm::elements::types::BlockType

source§

impl Copy for parity_wasm::elements::types::TableElementType

source§

impl Copy for parity_wasm::elements::types::ValueType

source§

impl Copy for OnceState

source§

impl Copy for FilterOp

source§

impl Copy for ParkResult

source§

impl Copy for RequeueOp

source§

impl Copy for StackDirection

source§

impl Copy for rand::distributions::bernoulli::BernoulliError

source§

impl Copy for rand::distributions::bernoulli::BernoulliError

source§

impl Copy for rand::distributions::weighted::WeightedError

source§

impl Copy for rand::distributions::weighted_index::WeightedError

source§

impl Copy for Yield

source§

impl Copy for BlockIx

source§

impl Copy for InstIx

source§

impl Copy for RegClass

source§

impl Copy for AlgorithmWithDefaults

source§

impl Copy for WhichCaptures

source§

impl Copy for regex_automata::util::look::Look

source§

impl Copy for regex_automata::util::search::Anchored

source§

impl Copy for regex_automata::util::search::MatchKind

source§

impl Copy for regex_syntax::ast::ClassSetBinaryOpKind

source§

impl Copy for regex_syntax::ast::ClassSetBinaryOpKind

source§

impl Copy for regex_syntax::ast::Flag

source§

impl Copy for regex_syntax::ast::Flag

source§

impl Copy for Dot

source§

impl Copy for regex_syntax::hir::Look

source§

impl Copy for regex_syntax::utf8::Utf8Sequence

source§

impl Copy for regex_syntax::utf8::Utf8Sequence

source§

impl Copy for ArchivedIpAddr

source§

impl Copy for ArchivedSocketAddr

source§

impl Copy for OffsetError

source§

impl Copy for rustc_hex::FromHexError

source§

impl Copy for rustix::backend::fs::types::Advice

source§

impl Copy for rustix::backend::fs::types::FileType

source§

impl Copy for FlockOperation

source§

impl Copy for rustix::backend::mm::types::Advice

source§

impl Copy for rustix::fs::seek_from::SeekFrom

source§

impl Copy for Direction

source§

impl Copy for RevocationReason

source§

impl Copy for webpki::error::Error

source§

impl Copy for Tls12Resumption

source§

impl Copy for Side

source§

impl Copy for AlertDescription

source§

impl Copy for CipherSuite

source§

impl Copy for ContentType

source§

impl Copy for HandshakeType

source§

impl Copy for ProtocolVersion

source§

impl Copy for SignatureAlgorithm

source§

impl Copy for SignatureScheme

source§

impl Copy for InvalidMessage

source§

impl Copy for AlertLevel

source§

impl Copy for CertificateStatusType

source§

impl Copy for ClientCertificateType

source§

impl Copy for Compression

source§

impl Copy for ECCurveType

source§

impl Copy for ECPointFormat

source§

impl Copy for ExtensionType

source§

impl Copy for HashAlgorithm

source§

impl Copy for HeartbeatMessageType

source§

impl Copy for HeartbeatMode

source§

impl Copy for KeyUpdateRequest

source§

impl Copy for NamedCurve

source§

impl Copy for NamedGroup

source§

impl Copy for PSKKeyExchangeMode

source§

impl Copy for ServerNameType

source§

impl Copy for KeyExchangeAlgorithm

source§

impl Copy for SupportedCipherSuite

source§

impl Copy for OrderFormat

source§

impl Copy for StoreFormat

source§

impl Copy for scale_decode::visitor::Unexpected

source§

impl Copy for Kind

source§

impl Copy for MetaForm

source§

impl Copy for PortableForm

source§

impl Copy for schnorrkel::errors::MultiSignatureStage

source§

impl Copy for schnorrkel::errors::MultiSignatureStage

source§

impl Copy for schnorrkel::errors::SignatureError

source§

impl Copy for schnorrkel::errors::SignatureError

source§

impl Copy for sct::Error

source§

impl Copy for sec1::error::Error

source§

impl Copy for EcParameters

source§

impl Copy for sec1::point::Tag

source§

impl Copy for All

source§

impl Copy for SignOnly

source§

impl Copy for VerifyOnly

source§

impl Copy for secp256k1::Error

source§

impl Copy for Parity

source§

impl Copy for Category

source§

impl Copy for OpCode

source§

impl Copy for soketto::connection::Mode

source§

impl Copy for ArithmeticError

source§

impl Copy for Rounding

source§

impl Copy for SignedRounding

source§

impl Copy for DeriveJunction

source§

impl Copy for PublicError

source§

impl Copy for LogLevel

source§

impl Copy for LogLevelFilter

source§

impl Copy for HttpError

source§

impl Copy for HttpRequestStatus

source§

impl Copy for StorageKind

source§

impl Copy for CallContext

source§

impl Copy for sp_runtime::DispatchError

source§

impl Copy for TokenError

source§

impl Copy for TransactionalError

source§

impl Copy for sp_runtime::generic::era::Era

source§

impl Copy for sp_runtime::legacy::byte_sized_error::DispatchError

source§

impl Copy for InvalidTransaction

source§

impl Copy for TransactionSource

source§

impl Copy for TransactionValidityError

source§

impl Copy for UnknownTransaction

source§

impl Copy for DisableStrategy

source§

impl Copy for ChildType

source§

impl Copy for StateVersion

source§

impl Copy for sp_version::embed::Error

source§

impl Copy for sp_wasm_interface_common::ReturnValue

source§

impl Copy for sp_wasm_interface_common::Value

source§

impl Copy for sp_wasm_interface_common::ValueType

source§

impl Copy for sp_wasm_interface::ReturnValue

source§

impl Copy for sp_wasm_interface::Value

source§

impl Copy for sp_wasm_interface::ValueType

source§

impl Copy for spki::error::Error

source§

impl Copy for Ss58AddressFormatRegistry

source§

impl Copy for TokenRegistry

source§

impl Copy for substrate_bip39::Error

source§

impl Copy for StorageEntryModifier

source§

impl Copy for StorageHasher

source§

impl Copy for NumberOrHex

source§

impl Copy for Phase

source§

impl Copy for subxt::utils::era::Era

source§

impl Copy for CDataModel

source§

impl Copy for Size

source§

impl Copy for Aarch64Architecture

source§

impl Copy for target_lexicon::targets::Architecture

source§

impl Copy for ArmArchitecture

source§

impl Copy for target_lexicon::targets::BinaryFormat

source§

impl Copy for Environment

source§

impl Copy for Mips32Architecture

source§

impl Copy for Mips64Architecture

source§

impl Copy for OperatingSystem

source§

impl Copy for Riscv32Architecture

source§

impl Copy for Riscv64Architecture

source§

impl Copy for X86_32Architecture

source§

impl Copy for CallingConvention

source§

impl Copy for target_lexicon::triple::Endianness

source§

impl Copy for PointerWidth

source§

impl Copy for termcolor::Color

source§

impl Copy for ColorChoice

source§

impl Copy for Language

source§

impl Copy for MnemonicType

source§

impl Copy for tokio::sync::mpsc::error::TryRecvError

source§

impl Copy for MissedTickBehavior

source§

impl Copy for Offset

source§

impl Copy for RecordedForKey

source§

impl Copy for FromStrRadixErrKind

source§

impl Copy for BidiClass

source§

impl Copy for url::parser::ParseError

source§

impl Copy for SyntaxViolation

source§

impl Copy for url::slicing::Position

source§

impl Copy for wasm_encoder::component::aliases::ComponentOuterAliasKind

source§

impl Copy for wasm_encoder::component::canonicals::CanonicalOption

source§

impl Copy for ComponentSectionId

source§

impl Copy for ComponentExportKind

source§

impl Copy for wasm_encoder::component::imports::ComponentTypeRef

source§

impl Copy for wasm_encoder::component::imports::TypeBounds

source§

impl Copy for ModuleArg

source§

impl Copy for wasm_encoder::component::types::ComponentValType

source§

impl Copy for wasm_encoder::component::types::PrimitiveValType

source§

impl Copy for wasm_encoder::core::code::BlockType

source§

impl Copy for wasm_encoder::core::code::Ordering

source§

impl Copy for wasm_encoder::core::SectionId

source§

impl Copy for wasm_encoder::core::exports::ExportKind

source§

impl Copy for wasm_encoder::core::imports::EntityType

source§

impl Copy for wasm_encoder::core::tags::TagKind

source§

impl Copy for wasm_encoder::core::types::AbstractHeapType

source§

impl Copy for wasm_encoder::core::types::HeapType

source§

impl Copy for wasm_encoder::core::types::StorageType

source§

impl Copy for wasm_encoder::core::types::ValType

source§

impl Copy for wasmer_compiler::relocation::RelocationKind

source§

impl Copy for wasmer_compiler::relocation::RelocationTarget

source§

impl Copy for CpuFeature

source§

impl Copy for wasmer_types::libcalls::LibCall

source§

impl Copy for wasmer_types::trapcode::TrapCode

source§

impl Copy for wasmer_types::types::GlobalInit

source§

impl Copy for wasmer_types::types::Mutability

source§

impl Copy for wasmer_types::types::Type

source§

impl Copy for VMFunctionKind

source§

impl Copy for StackValueType

source§

impl Copy for StartedWith

source§

impl Copy for wasmi_core::trap::TrapCode

source§

impl Copy for wasmi_core::untyped::UntypedError

source§

impl Copy for wasmi_core::value::Value

source§

impl Copy for wasmi_core::value::ValueType

source§

impl Copy for wasmparser_nostd::parser::Encoding

source§

impl Copy for wasmparser_nostd::readers::component::aliases::ComponentOuterAliasKind

source§

impl Copy for wasmparser_nostd::readers::component::canonicals::CanonicalOption

source§

impl Copy for wasmparser_nostd::readers::component::exports::ComponentExternalKind

source§

impl Copy for wasmparser_nostd::readers::component::imports::ComponentTypeRef

source§

impl Copy for wasmparser_nostd::readers::component::imports::TypeBounds

source§

impl Copy for wasmparser_nostd::readers::component::instances::InstantiationArgKind

source§

impl Copy for wasmparser_nostd::readers::component::types::ComponentValType

source§

impl Copy for wasmparser_nostd::readers::component::types::OuterAliasKind

source§

impl Copy for wasmparser_nostd::readers::component::types::PrimitiveValType

source§

impl Copy for wasmparser_nostd::readers::core::exports::ExternalKind

source§

impl Copy for wasmparser_nostd::readers::core::imports::TypeRef

source§

impl Copy for wasmparser_nostd::readers::core::operators::BlockType

source§

impl Copy for wasmparser_nostd::readers::core::types::TagKind

source§

impl Copy for wasmparser_nostd::readers::core::types::ValType

source§

impl Copy for wasmparser_nostd::validator::operators::FrameKind

source§

impl Copy for wasmparser_nostd::validator::types::ComponentEntityType

source§

impl Copy for wasmparser_nostd::validator::types::ComponentValType

source§

impl Copy for wasmparser_nostd::validator::types::EntityType

source§

impl Copy for wasmparser::parser::Encoding

source§

impl Copy for CustomSectionKind

source§

impl Copy for wasmparser::primitives::ExternalKind

source§

impl Copy for ImportSectionEntryType

source§

impl Copy for LinkingType

source§

impl Copy for NameType

source§

impl Copy for RelocType

source§

impl Copy for wasmparser::primitives::Type

source§

impl Copy for TypeOrFuncType

source§

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

source§

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

source§

impl Copy for wasmparser::readers::component::exports::ComponentExternalKind

source§

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

source§

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

source§

impl Copy for wasmparser::readers::component::instances::InstantiationArgKind

source§

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

source§

impl Copy for wasmparser::readers::component::types::OuterAliasKind

source§

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

source§

impl Copy for wasmparser::readers::core::exports::ExternalKind

source§

impl Copy for wasmparser::readers::core::imports::TypeRef

source§

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

source§

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

source§

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

source§

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

source§

impl Copy for wasmparser::validator::operators::FrameKind

source§

impl Copy for wasmparser::validator::types::ComponentEntityType

source§

impl Copy for wasmparser::validator::types::ComponentValType

source§

impl Copy for wasmparser::validator::types::EntityType

source§

impl Copy for wasmtime_environ::compilation::SettingKind

source§

impl Copy for ModuleType

source§

impl Copy for Trap

source§

impl Copy for WaitResult

source§

impl Copy for EntityIndex

source§

impl Copy for wasmtime_types::GlobalInit

source§

impl Copy for WasmType

source§

impl Copy for ProfilingStrategy

source§

impl Copy for Strategy

source§

impl Copy for WasmBacktraceDetails

source§

impl Copy for CallHook

source§

impl Copy for wasmtime::types::Mutability

source§

impl Copy for wasmtime::types::ValType

source§

impl Copy for ComponentExportAliasKind

source§

impl Copy for wast::component::alias::ComponentOuterAliasKind

source§

impl Copy for wast::component::types::PrimitiveValType

source§

impl Copy for GenerateDwarf

source§

impl Copy for CustomPlace

source§

impl Copy for CustomPlaceAnchor

source§

impl Copy for wast::core::export::ExportKind

source§

impl Copy for wast::core::types::AbstractHeapType

source§

impl Copy for FloatKind

source§

impl Copy for SignToken

source§

impl Copy for TokenKind

source§

impl Copy for Detect

source§

impl Copy for which::error::Error

source§

impl Copy for winnow::binary::Endianness

source§

impl Copy for winnow::error::ErrorKind

source§

impl Copy for Needed

1.0.0 · source§

impl Copy for FpCategory

source§

impl Copy for SearchStep

1.0.0 · source§

impl Copy for bool

1.0.0 · source§

impl Copy for char

1.0.0 · source§

impl Copy for f16

1.0.0 · source§

impl Copy for f32

1.0.0 · source§

impl Copy for f64

1.0.0 · source§

impl Copy for f128

1.0.0 · source§

impl Copy for i8

1.0.0 · source§

impl Copy for i16

1.0.0 · source§

impl Copy for i32

1.0.0 · source§

impl Copy for i64

1.0.0 · source§

impl Copy for i128

1.0.0 · source§

impl Copy for isize

source§

impl Copy for !

1.0.0 · source§

impl Copy for u8

1.0.0 · source§

impl Copy for u16

1.0.0 · source§

impl Copy for u32

1.0.0 · source§

impl Copy for u64

1.0.0 · source§

impl Copy for u128

1.0.0 · source§

impl Copy for usize

source§

impl Copy for ExposureContext

1.0.0 · source§

impl Copy for gsails::prelude::any::TypeId

1.34.0 · source§

impl Copy for gsails::prelude::array::TryFromSliceError

1.34.0 · source§

impl Copy for CharTryFromError

1.59.0 · source§

impl Copy for TryFromCharError

1.0.0 · source§

impl Copy for gsails::prelude::fmt::Error

source§

impl Copy for alloc::alloc::Global

1.28.0 · source§

impl Copy for Layout

source§

impl Copy for core::alloc::AllocError

1.27.0 · source§

impl Copy for CpuidResult

1.27.0 · source§

impl Copy for __m128

source§

impl Copy for __m128bh

1.27.0 · source§

impl Copy for __m128d

1.27.0 · source§

impl Copy for __m128i

1.27.0 · source§

impl Copy for __m256

source§

impl Copy for __m256bh

1.27.0 · source§

impl Copy for __m256d

1.27.0 · source§

impl Copy for __m256i

1.72.0 · source§

impl Copy for __m512

source§

impl Copy for __m512bh

1.72.0 · source§

impl Copy for __m512d

1.72.0 · source§

impl Copy for __m512i

1.0.0 · source§

impl Copy for core::net::ip_addr::Ipv4Addr

1.0.0 · source§

impl Copy for core::net::ip_addr::Ipv6Addr

1.0.0 · source§

impl Copy for SocketAddrV4

1.0.0 · source§

impl Copy for SocketAddrV6

1.28.0 · source§

impl Copy for System

1.75.0 · source§

impl Copy for FileTimes

1.1.0 · source§

impl Copy for std::fs::FileType

1.0.0 · source§

impl Copy for std::io::util::Empty

1.0.0 · source§

impl Copy for Sink

source§

impl Copy for std::os::unix::net::ucred::UCred

1.61.0 · source§

impl Copy for ExitCode

1.0.0 · source§

impl Copy for ExitStatus

source§

impl Copy for ExitStatusError

1.5.0 · source§

impl Copy for std::sync::condvar::WaitTimeoutResult

1.0.0 · source§

impl Copy for RecvError

1.26.0 · source§

impl Copy for AccessError

1.19.0 · source§

impl Copy for ThreadId

1.8.0 · source§

impl Copy for std::time::Instant

1.8.0 · source§

impl Copy for std::time::SystemTime

source§

impl Copy for Adler32

source§

impl Copy for aho_corasick::util::primitives::PatternID

source§

impl Copy for aho_corasick::util::primitives::StateID

source§

impl Copy for aho_corasick::util::search::Match

source§

impl Copy for aho_corasick::util::search::Span

source§

impl Copy for allocator_api2::stable::alloc::global::Global

source§

impl Copy for allocator_api2::stable::alloc::AllocError

source§

impl Copy for Infix

source§

impl Copy for ansi_term::ansi::Prefix

source§

impl Copy for Suffix

source§

impl Copy for ansi_term::style::Style

source§

impl Copy for GeneralPurposeConfig

source§

impl Copy for base64::Config

source§

impl Copy for bincode::config::endian::BigEndian

source§

impl Copy for bincode::config::endian::LittleEndian

source§

impl Copy for NativeEndian

source§

impl Copy for FixintEncoding

source§

impl Copy for VarintEncoding

source§

impl Copy for Bounded

source§

impl Copy for Infinite

source§

impl Copy for DefaultOptions

source§

impl Copy for AllowTrailing

source§

impl Copy for RejectTrailing

source§

impl Copy for Lsb0

source§

impl Copy for Msb0

source§

impl Copy for blake2b_simd::Hash

source§

impl Copy for blake3::Hash

source§

impl Copy for Eager

source§

impl Copy for block_buffer::Error

source§

impl Copy for Lazy

source§

impl Copy for PadError

source§

impl Copy for UnpadError

source§

impl Copy for bs58::alphabet::Alphabet

source§

impl Copy for bs58::alphabet::Alphabet

source§

impl Copy for Maintenance

source§

impl Copy for OffsetFormat

source§

impl Copy for chrono::format::ParseError

source§

impl Copy for Months

source§

impl Copy for NaiveDate

source§

impl Copy for NaiveDateDaysIterator

source§

impl Copy for NaiveDateWeeksIterator

source§

impl Copy for NaiveDateTime

source§

impl Copy for IsoWeek

source§

impl Copy for Days

source§

impl Copy for NaiveTime

source§

impl Copy for FixedOffset

source§

impl Copy for chrono::offset::local::Local

source§

impl Copy for Utc

source§

impl Copy for OutOfRange

source§

impl Copy for OutOfRangeError

source§

impl Copy for TimeDelta

source§

impl Copy for CustomColor

source§

impl Copy for colored::style::Style

source§

impl Copy for ObjectIdentifier

source§

impl Copy for BlockInfo

source§

impl Copy for TrapHandlerRegs

source§

impl Copy for DemangleOptions

source§

impl Copy for cpp_demangle::ParseOptions

source§

impl Copy for Block

source§

impl Copy for Constant

source§

impl Copy for cranelift_codegen::ir::entities::FuncRef

source§

impl Copy for GlobalValue

source§

impl Copy for Heap

source§

impl Copy for Immediate

source§

impl Copy for Inst

source§

impl Copy for JumpTable

source§

impl Copy for SigRef

source§

impl Copy for StackSlot

source§

impl Copy for cranelift_codegen::ir::entities::Table

source§

impl Copy for cranelift_codegen::ir::entities::Value

source§

impl Copy for AbiParam

source§

impl Copy for VersionMarker

source§

impl Copy for cranelift_codegen::ir::immediates::Ieee32

source§

impl Copy for cranelift_codegen::ir::immediates::Ieee64

source§

impl Copy for Imm64

source§

impl Copy for Offset32

source§

impl Copy for Uimm32

source§

impl Copy for Uimm64

source§

impl Copy for V128Imm

source§

impl Copy for OpcodeConstraints

source§

impl Copy for ValueTypeSet

source§

impl Copy for MemFlags

source§

impl Copy for ProgramPoint

source§

impl Copy for cranelift_codegen::ir::sourceloc::SourceLoc

source§

impl Copy for ValueLabel

source§

impl Copy for cranelift_codegen::ir::types::Type

source§

impl Copy for TargetFrontendConfig

source§

impl Copy for cranelift_codegen::isa::x64::encoding::evex::Register

source§

impl Copy for Loop

source§

impl Copy for cranelift_codegen::settings::Setting

source§

impl Copy for ValueLocRange

source§

impl Copy for Variable

source§

impl Copy for CtChoice

source§

impl Copy for Limb

source§

impl Copy for Reciprocal

source§

impl Copy for InvalidLength

source§

impl Copy for crypto_mac::errors::InvalidKeyLength

source§

impl Copy for crypto_mac::errors::InvalidKeyLength

source§

impl Copy for crypto_mac::errors::MacError

source§

impl Copy for crypto_mac::errors::MacError

source§

impl Copy for curve25519_dalek::edwards::CompressedEdwardsY

source§

impl Copy for curve25519_dalek::edwards::CompressedEdwardsY

source§

impl Copy for curve25519_dalek::edwards::CompressedEdwardsY

source§

impl Copy for curve25519_dalek::edwards::EdwardsPoint

source§

impl Copy for curve25519_dalek::edwards::EdwardsPoint

source§

impl Copy for curve25519_dalek::edwards::EdwardsPoint

source§

impl Copy for curve25519_dalek::montgomery::MontgomeryPoint

source§

impl Copy for curve25519_dalek::montgomery::MontgomeryPoint

source§

impl Copy for curve25519_dalek::montgomery::MontgomeryPoint

source§

impl Copy for curve25519_dalek::ristretto::CompressedRistretto

source§

impl Copy for curve25519_dalek::ristretto::CompressedRistretto

source§

impl Copy for curve25519_dalek::ristretto::CompressedRistretto

source§

impl Copy for curve25519_dalek::ristretto::RistrettoPoint

source§

impl Copy for curve25519_dalek::ristretto::RistrettoPoint

source§

impl Copy for curve25519_dalek::ristretto::RistrettoPoint

source§

impl Copy for curve25519_dalek::scalar::Scalar

source§

impl Copy for curve25519_dalek::scalar::Scalar

source§

impl Copy for curve25519_dalek::scalar::Scalar

source§

impl Copy for GeneralizedTime

source§

impl Copy for Null

source§

impl Copy for UtcTime

source§

impl Copy for der::datetime::DateTime

source§

impl Copy for der::error::Error

source§

impl Copy for der::header::Header

source§

impl Copy for IndefiniteLength

source§

impl Copy for Length

source§

impl Copy for TagNumber

source§

impl Copy for digest::errors::InvalidOutputSize

source§

impl Copy for digest::errors::InvalidOutputSize

source§

impl Copy for digest::mac::MacError

source§

impl Copy for InvalidBufferSize

source§

impl Copy for digest::InvalidOutputSize

source§

impl Copy for AssemblyOffset

source§

impl Copy for DynamicLabel

source§

impl Copy for ecdsa::recovery::RecoveryId

source§

impl Copy for ed25519_dalek::public::PublicKey

source§

impl Copy for ed25519_zebra::signature::Signature

source§

impl Copy for SigningKey

source§

impl Copy for VerificationKey

source§

impl Copy for VerificationKeyBytes

source§

impl Copy for ed25519::Signature

source§

impl Copy for elliptic_curve::error::Error

source§

impl Copy for errno::Errno

source§

impl Copy for u32x4

source§

impl Copy for u64x2

source§

impl Copy for DispatchInfo

source§

impl Copy for PostDispatchInfo

source§

impl Copy for Instance1

source§

impl Copy for PalletId

source§

impl Copy for Footprint

source§

impl Copy for CrateVersion

source§

impl Copy for PalletInfoData

source§

impl Copy for StorageVersion

source§

impl Copy for WithdrawReasons

source§

impl Copy for Canceled

source§

impl Copy for Aborted

source§

impl Copy for SyscallError

source§

impl Copy for ExternalOrigin

source§

impl Copy for PlainNodeId

source§

impl Copy for ReservationNodeId

source§

impl Copy for ChildrenRefs

source§

impl Copy for RuntimeBufferSizeError

source§

impl Copy for BlocksAmount

source§

impl Copy for BytesAmount

source§

impl Copy for CallsAmount

source§

impl Copy for GasLeft

source§

impl Copy for MemoryInterval

source§

impl Copy for ReplyDetails

source§

impl Copy for SignalDetails

source§

impl Copy for ContextSettings

source§

impl Copy for PayloadSizeError

source§

impl Copy for gear_core::percent::Percent

source§

impl Copy for MemoryInfix

source§

impl Copy for ReservationNonce

source§

impl Copy for WasmReturnValue

source§

impl Copy for SupervisorFuncIndex

source§

impl Copy for gear_wasm::elements::func::Func

source§

impl Copy for gear_wasm::elements::func::Local

source§

impl Copy for gear_wasm::elements::import_entry::GlobalType

source§

impl Copy for gear_wasm::elements::import_entry::MemoryType

source§

impl Copy for gear_wasm::elements::import_entry::ResizableLimits

source§

impl Copy for gear_wasm::elements::import_entry::TableType

source§

impl Copy for gear_wasm::elements::primitives::Uint8

source§

impl Copy for gear_wasm::elements::primitives::Uint32

source§

impl Copy for gear_wasm::elements::primitives::Uint64

source§

impl Copy for gear_wasm::elements::primitives::VarInt7

source§

impl Copy for gear_wasm::elements::primitives::VarInt32

source§

impl Copy for gear_wasm::elements::primitives::VarInt64

source§

impl Copy for gear_wasm::elements::primitives::VarUint1

source§

impl Copy for gear_wasm::elements::primitives::VarUint7

source§

impl Copy for gear_wasm::elements::primitives::VarUint32

source§

impl Copy for gear_wasm::elements::primitives::VarUint64

source§

impl Copy for getrandom::error::Error

source§

impl Copy for getrandom::error::Error

source§

impl Copy for gimli::arch::AArch64

source§

impl Copy for gimli::arch::AArch64

source§

impl Copy for gimli::arch::AArch64

source§

impl Copy for gimli::arch::Arm

source§

impl Copy for gimli::arch::Arm

source§

impl Copy for gimli::arch::Arm

source§

impl Copy for gimli::arch::LoongArch

source§

impl Copy for gimli::arch::LoongArch

source§

impl Copy for MIPS

source§

impl Copy for PowerPc64

source§

impl Copy for gimli::arch::RiscV

source§

impl Copy for gimli::arch::RiscV

source§

impl Copy for gimli::arch::RiscV

source§

impl Copy for gimli::arch::X86

source§

impl Copy for gimli::arch::X86

source§

impl Copy for gimli::arch::X86

source§

impl Copy for gimli::arch::X86_64

source§

impl Copy for gimli::arch::X86_64

source§

impl Copy for gimli::arch::X86_64

source§

impl Copy for gimli::common::DebugTypeSignature

source§

impl Copy for gimli::common::DebugTypeSignature

source§

impl Copy for gimli::common::DebugTypeSignature

source§

impl Copy for gimli::common::DwoId

source§

impl Copy for gimli::common::DwoId

source§

impl Copy for gimli::common::DwoId

source§

impl Copy for gimli::common::Encoding

source§

impl Copy for gimli::common::Encoding

source§

impl Copy for gimli::common::Encoding

source§

impl Copy for gimli::common::LineEncoding

source§

impl Copy for gimli::common::LineEncoding

source§

impl Copy for gimli::common::LineEncoding

source§

impl Copy for gimli::common::Register

source§

impl Copy for gimli::common::Register

source§

impl Copy for gimli::common::Register

source§

impl Copy for gimli::constants::DwAccess

source§

impl Copy for gimli::constants::DwAccess

source§

impl Copy for gimli::constants::DwAccess

source§

impl Copy for gimli::constants::DwAddr

source§

impl Copy for gimli::constants::DwAddr

source§

impl Copy for gimli::constants::DwAddr

source§

impl Copy for gimli::constants::DwAt

source§

impl Copy for gimli::constants::DwAt

source§

impl Copy for gimli::constants::DwAt

source§

impl Copy for gimli::constants::DwAte

source§

impl Copy for gimli::constants::DwAte

source§

impl Copy for gimli::constants::DwAte

source§

impl Copy for gimli::constants::DwCc

source§

impl Copy for gimli::constants::DwCc

source§

impl Copy for gimli::constants::DwCc

source§

impl Copy for gimli::constants::DwCfa

source§

impl Copy for gimli::constants::DwCfa

source§

impl Copy for gimli::constants::DwCfa

source§

impl Copy for gimli::constants::DwChildren

source§

impl Copy for gimli::constants::DwChildren

source§

impl Copy for gimli::constants::DwChildren

source§

impl Copy for gimli::constants::DwDefaulted

source§

impl Copy for gimli::constants::DwDefaulted

source§

impl Copy for gimli::constants::DwDefaulted

source§

impl Copy for gimli::constants::DwDs

source§

impl Copy for gimli::constants::DwDs

source§

impl Copy for gimli::constants::DwDs

source§

impl Copy for gimli::constants::DwDsc

source§

impl Copy for gimli::constants::DwDsc

source§

impl Copy for gimli::constants::DwDsc

source§

impl Copy for gimli::constants::DwEhPe

source§

impl Copy for gimli::constants::DwEhPe

source§

impl Copy for gimli::constants::DwEhPe

source§

impl Copy for gimli::constants::DwEnd

source§

impl Copy for gimli::constants::DwEnd

source§

impl Copy for gimli::constants::DwEnd

source§

impl Copy for gimli::constants::DwForm

source§

impl Copy for gimli::constants::DwForm

source§

impl Copy for gimli::constants::DwForm

source§

impl Copy for gimli::constants::DwId

source§

impl Copy for gimli::constants::DwId

source§

impl Copy for gimli::constants::DwId

source§

impl Copy for gimli::constants::DwIdx

source§

impl Copy for gimli::constants::DwIdx

source§

impl Copy for gimli::constants::DwIdx

source§

impl Copy for gimli::constants::DwInl

source§

impl Copy for gimli::constants::DwInl

source§

impl Copy for gimli::constants::DwInl

source§

impl Copy for gimli::constants::DwLang

source§

impl Copy for gimli::constants::DwLang

source§

impl Copy for gimli::constants::DwLang

source§

impl Copy for gimli::constants::DwLle

source§

impl Copy for gimli::constants::DwLle

source§

impl Copy for gimli::constants::DwLle

source§

impl Copy for gimli::constants::DwLnct

source§

impl Copy for gimli::constants::DwLnct

source§

impl Copy for gimli::constants::DwLnct

source§

impl Copy for gimli::constants::DwLne

source§

impl Copy for gimli::constants::DwLne

source§

impl Copy for gimli::constants::DwLne

source§

impl Copy for gimli::constants::DwLns

source§

impl Copy for gimli::constants::DwLns

source§

impl Copy for gimli::constants::DwLns

source§

impl Copy for gimli::constants::DwMacro

source§

impl Copy for gimli::constants::DwMacro

source§

impl Copy for gimli::constants::DwMacro

source§

impl Copy for gimli::constants::DwOp

source§

impl Copy for gimli::constants::DwOp

source§

impl Copy for gimli::constants::DwOp

source§

impl Copy for gimli::constants::DwOrd

source§

impl Copy for gimli::constants::DwOrd

source§

impl Copy for gimli::constants::DwOrd

source§

impl Copy for gimli::constants::DwRle

source§

impl Copy for gimli::constants::DwRle

source§

impl Copy for gimli::constants::DwRle

source§

impl Copy for gimli::constants::DwSect

source§

impl Copy for gimli::constants::DwSect

source§

impl Copy for gimli::constants::DwSect

source§

impl Copy for gimli::constants::DwSectV2

source§

impl Copy for gimli::constants::DwSectV2

source§

impl Copy for gimli::constants::DwSectV2

source§

impl Copy for gimli::constants::DwTag

source§

impl Copy for gimli::constants::DwTag

source§

impl Copy for gimli::constants::DwTag

source§

impl Copy for gimli::constants::DwUt

source§

impl Copy for gimli::constants::DwUt

source§

impl Copy for gimli::constants::DwUt

source§

impl Copy for gimli::constants::DwVirtuality

source§

impl Copy for gimli::constants::DwVirtuality

source§

impl Copy for gimli::constants::DwVirtuality

source§

impl Copy for gimli::constants::DwVis

source§

impl Copy for gimli::constants::DwVis

source§

impl Copy for gimli::constants::DwVis

source§

impl Copy for gimli::endianity::BigEndian

source§

impl Copy for gimli::endianity::BigEndian

source§

impl Copy for gimli::endianity::BigEndian

source§

impl Copy for gimli::endianity::LittleEndian

source§

impl Copy for gimli::endianity::LittleEndian

source§

impl Copy for gimli::endianity::LittleEndian

source§

impl Copy for gimli::read::abbrev::AttributeSpecification

source§

impl Copy for gimli::read::abbrev::AttributeSpecification

source§

impl Copy for gimli::read::abbrev::AttributeSpecification

source§

impl Copy for gimli::read::cfi::Augmentation

source§

impl Copy for gimli::read::cfi::Augmentation

source§

impl Copy for gimli::read::cfi::Augmentation

source§

impl Copy for gimli::read::index::UnitIndexSection

source§

impl Copy for gimli::read::index::UnitIndexSection

source§

impl Copy for gimli::read::index::UnitIndexSection

source§

impl Copy for gimli::read::line::FileEntryFormat

source§

impl Copy for gimli::read::line::FileEntryFormat

source§

impl Copy for gimli::read::line::FileEntryFormat

source§

impl Copy for gimli::read::line::LineRow

source§

impl Copy for gimli::read::line::LineRow

source§

impl Copy for gimli::read::line::LineRow

source§

impl Copy for gimli::read::reader::ReaderOffsetId

source§

impl Copy for gimli::read::reader::ReaderOffsetId

source§

impl Copy for gimli::read::reader::ReaderOffsetId

source§

impl Copy for gimli::read::rnglists::Range

source§

impl Copy for gimli::read::rnglists::Range

source§

impl Copy for gimli::read::rnglists::Range

source§

impl Copy for gimli::read::StoreOnHeap

source§

impl Copy for gimli::read::StoreOnHeap

source§

impl Copy for gimli::read::StoreOnHeap

source§

impl Copy for gimli::write::cfi::CieId

source§

impl Copy for gimli::write::cfi::CieId

source§

impl Copy for gimli::write::line::id::FileId

source§

impl Copy for gimli::write::line::id::FileId

source§

impl Copy for gimli::write::line::DirectoryId

source§

impl Copy for gimli::write::line::DirectoryId

source§

impl Copy for gimli::write::line::FileInfo

source§

impl Copy for gimli::write::line::FileInfo

source§

impl Copy for gimli::write::line::LineRow

source§

impl Copy for gimli::write::line::LineRow

source§

impl Copy for gimli::write::loc::LocationListId

source§

impl Copy for gimli::write::loc::LocationListId

source§

impl Copy for gimli::write::range::RangeListId

source§

impl Copy for gimli::write::range::RangeListId

source§

impl Copy for gimli::write::str::LineStringId

source§

impl Copy for gimli::write::str::LineStringId

source§

impl Copy for gimli::write::str::StringId

source§

impl Copy for gimli::write::str::StringId

source§

impl Copy for gimli::write::unit::UnitEntryId

source§

impl Copy for gimli::write::unit::UnitEntryId

source§

impl Copy for gimli::write::unit::UnitId

source§

impl Copy for gimli::write::unit::UnitId

source§

impl Copy for gimli::write::writer::InitialLengthOffset

source§

impl Copy for gimli::write::writer::InitialLengthOffset

source§

impl Copy for gprimitives::MessageHandle

source§

impl Copy for gprimitives::ReservationId

source§

impl Copy for gsdk::metadata::generated::runtime_types::runtime_types::gprimitives::ActorId

source§

impl Copy for gsdk::metadata::generated::runtime_types::runtime_types::gprimitives::CodeId

source§

impl Copy for gsdk::metadata::generated::runtime_types::runtime_types::gprimitives::MessageId

source§

impl Copy for gsdk::metadata::generated::runtime_types::runtime_types::gprimitives::ReservationId

source§

impl Copy for gstd::msg::basic::MessageHandle

source§

impl Copy for Reservation

source§

impl Copy for EnvVars

source§

impl Copy for gsys::GasMultiplier

source§

impl Copy for gsys::Percent

source§

impl Copy for Gas

source§

impl Copy for gwasmi::engine::config::Config

source§

impl Copy for StackLimits

source§

impl Copy for ExternRef

source§

impl Copy for gwasmi::func::funcref::FuncRef

source§

impl Copy for gwasmi::func::Func

source§

impl Copy for gwasmi::global::Global

source§

impl Copy for gwasmi::global::GlobalType

source§

impl Copy for gwasmi::instance::Instance

source§

impl Copy for gwasmi::memory::Memory

source§

impl Copy for gwasmi::memory::MemoryType

source§

impl Copy for gwasmi::table::Table

source§

impl Copy for gwasmi::table::TableType

source§

impl Copy for gwasmi_core::nan_preserving_float::F32

source§

impl Copy for gwasmi_core::nan_preserving_float::F64

source§

impl Copy for gwasmi_core::units::Pages

source§

impl Copy for gwasmi_core::untyped::UntypedValue

source§

impl Copy for Reason

source§

impl Copy for StreamId

source§

impl Copy for StatusCode

source§

impl Copy for http::version::Version

source§

impl Copy for HttpDate

source§

impl Copy for humantime::wrapper::Duration

source§

impl Copy for idna::uts46::Config

source§

impl Copy for intx::defs::I16

source§

impl Copy for I24

source§

impl Copy for intx::defs::I32

source§

impl Copy for I40

source§

impl Copy for I48

source§

impl Copy for I56

source§

impl Copy for intx::defs::I64

source§

impl Copy for I72

source§

impl Copy for I80

source§

impl Copy for I88

source§

impl Copy for I96

source§

impl Copy for I104

source§

impl Copy for I112

source§

impl Copy for I120

source§

impl Copy for I128

source§

impl Copy for intx::defs::U16

source§

impl Copy for U24

source§

impl Copy for intx::defs::U32

source§

impl Copy for U40

source§

impl Copy for U48

source§

impl Copy for U56

source§

impl Copy for intx::defs::U64

source§

impl Copy for U72

source§

impl Copy for U80

source§

impl Copy for U88

source§

impl Copy for U96

source§

impl Copy for U104

source§

impl Copy for U112

source§

impl Copy for U120

source§

impl Copy for intx::defs::U128

source§

impl Copy for intx::error::TryFromIntError

source§

impl Copy for itoa::Buffer

source§

impl Copy for jsonrpsee_core::client::async_client::ClientBuilder

source§

impl Copy for jsonrpsee_core::client::async_client::ClientBuilder

source§

impl Copy for SubscriptionEmptyError

source§

impl Copy for jsonrpsee_types::params::TwoPointZero

source§

impl Copy for jsonrpsee_types::params::TwoPointZero

source§

impl Copy for AffinePoint

source§

impl Copy for ProjectivePoint

source§

impl Copy for k256::arithmetic::scalar::Scalar

source§

impl Copy for Secp256k1

source§

impl Copy for libc::unix::align::in6_addr

source§

impl Copy for libc::unix::linux_like::linux::arch::generic::termios2

source§

impl Copy for sem_t

source§

impl Copy for msqid_ds

source§

impl Copy for semid_ds

source§

impl Copy for sigset_t

source§

impl Copy for sysinfo

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::align::clone_args

source§

impl Copy for max_align_t

source§

impl Copy for statvfs

source§

impl Copy for _libc_fpstate

source§

impl Copy for _libc_fpxreg

source§

impl Copy for _libc_xmmreg

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::flock

source§

impl Copy for ipc_perm

source§

impl Copy for mcontext_t

source§

impl Copy for pthread_attr_t

source§

impl Copy for ptrace_rseq_configuration

source§

impl Copy for shmid_ds

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction

source§

impl Copy for siginfo_t

source§

impl Copy for stack_t

source§

impl Copy for stat64

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::stat

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64

source§

impl Copy for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs

source§

impl Copy for statvfs64

source§

impl Copy for ucontext_t

source§

impl Copy for user

source§

impl Copy for user_fpregs_struct

source§

impl Copy for user_regs_struct

source§

impl Copy for Elf32_Chdr

source§

impl Copy for Elf64_Chdr

source§

impl Copy for __c_anonymous_ptrace_syscall_info_entry

source§

impl Copy for __c_anonymous_ptrace_syscall_info_exit

source§

impl Copy for __c_anonymous_ptrace_syscall_info_seccomp

source§

impl Copy for __exit_status

source§

impl Copy for __timeval

source§

impl Copy for aiocb

source§

impl Copy for libc::unix::linux_like::linux::gnu::cmsghdr

source§

impl Copy for glob64_t

source§

impl Copy for iocb

source§

impl Copy for mallinfo2

source§

impl Copy for mallinfo

source§

impl Copy for libc::unix::linux_like::linux::gnu::msghdr

source§

impl Copy for nl_mmap_hdr

source§

impl Copy for nl_mmap_req

source§

impl Copy for nl_pktinfo

source§

impl Copy for ntptimeval

source§

impl Copy for ptrace_peeksiginfo_args

source§

impl Copy for ptrace_syscall_info

source§

impl Copy for regex_t

source§

impl Copy for rtentry

source§

impl Copy for seminfo

source§

impl Copy for sockaddr_xdp

source§

impl Copy for libc::unix::linux_like::linux::gnu::statx

source§

impl Copy for libc::unix::linux_like::linux::gnu::statx_timestamp

source§

impl Copy for libc::unix::linux_like::linux::gnu::termios

source§

impl Copy for timex

source§

impl Copy for utmpx

source§

impl Copy for xdp_desc

source§

impl Copy for xdp_mmap_offsets

source§

impl Copy for xdp_mmap_offsets_v1

source§

impl Copy for xdp_options

source§

impl Copy for xdp_ring_offset

source§

impl Copy for xdp_ring_offset_v1

source§

impl Copy for xdp_statistics

source§

impl Copy for xdp_statistics_v1

source§

impl Copy for xdp_umem_reg

source§

impl Copy for xdp_umem_reg_v1

source§

impl Copy for libc::unix::linux_like::linux::non_exhaustive::open_how

source§

impl Copy for Elf32_Ehdr

source§

impl Copy for Elf32_Phdr

source§

impl Copy for Elf32_Shdr

source§

impl Copy for Elf32_Sym

source§

impl Copy for Elf64_Ehdr

source§

impl Copy for Elf64_Phdr

source§

impl Copy for Elf64_Shdr

source§

impl Copy for Elf64_Sym

source§

impl Copy for __c_anonymous_ifru_map

source§

impl Copy for __c_anonymous_sockaddr_can_j1939

source§

impl Copy for __c_anonymous_sockaddr_can_tp

source§

impl Copy for af_alg_iv

source§

impl Copy for arpd_request

source§

impl Copy for can_filter

source§

impl Copy for can_frame

source§

impl Copy for canfd_frame

source§

impl Copy for canxl_frame

source§

impl Copy for cpu_set_t

source§

impl Copy for dirent64

source§

impl Copy for dirent

source§

impl Copy for dl_phdr_info

source§

impl Copy for dqblk

source§

impl Copy for fanotify_event_metadata

source§

impl Copy for fanotify_response

source§

impl Copy for ff_condition_effect

source§

impl Copy for ff_constant_effect

source§

impl Copy for ff_effect

source§

impl Copy for ff_envelope

source§

impl Copy for ff_periodic_effect

source§

impl Copy for ff_ramp_effect

source§

impl Copy for ff_replay

source§

impl Copy for ff_rumble_effect

source§

impl Copy for ff_trigger

source§

impl Copy for libc::unix::linux_like::linux::file_clone_range

source§

impl Copy for fsid_t

source§

impl Copy for genlmsghdr

source§

impl Copy for glob_t

source§

impl Copy for hwtstamp_config

source§

impl Copy for if_nameindex

source§

impl Copy for ifconf

source§

impl Copy for ifreq

source§

impl Copy for libc::unix::linux_like::linux::in6_ifreq

source§

impl Copy for libc::unix::linux_like::linux::in6_pktinfo

source§

impl Copy for inotify_event

source§

impl Copy for input_absinfo

source§

impl Copy for input_event

source§

impl Copy for input_id

source§

impl Copy for input_keymap_entry

source§

impl Copy for input_mask

source§

impl Copy for libc::unix::linux_like::linux::itimerspec

source§

impl Copy for j1939_filter

source§

impl Copy for mntent

source§

impl Copy for mq_attr

source§

impl Copy for msginfo

source§

impl Copy for nlattr

source§

impl Copy for nlmsgerr

source§

impl Copy for nlmsghdr

source§

impl Copy for libc::unix::linux_like::linux::option

source§

impl Copy for packet_mreq

source§

impl Copy for passwd

source§

impl Copy for posix_spawn_file_actions_t

source§

impl Copy for posix_spawnattr_t

source§

impl Copy for pthread_barrier_t

source§

impl Copy for pthread_barrierattr_t

source§

impl Copy for pthread_cond_t

source§

impl Copy for pthread_condattr_t

source§

impl Copy for pthread_mutex_t

source§

impl Copy for pthread_mutexattr_t

source§

impl Copy for pthread_rwlock_t

source§

impl Copy for pthread_rwlockattr_t

source§

impl Copy for regmatch_t

source§

impl Copy for libc::unix::linux_like::linux::rlimit64

source§

impl Copy for sched_attr

source§

impl Copy for sctp_authinfo

source§

impl Copy for sctp_initmsg

source§

impl Copy for sctp_nxtinfo

source§

impl Copy for sctp_prinfo

source§

impl Copy for sctp_rcvinfo

source§

impl Copy for sctp_sndinfo

source§

impl Copy for sctp_sndrcvinfo

source§

impl Copy for seccomp_data

source§

impl Copy for seccomp_notif

source§

impl Copy for seccomp_notif_addfd

source§

impl Copy for seccomp_notif_resp

source§

impl Copy for seccomp_notif_sizes

source§

impl Copy for sembuf

source§

impl Copy for signalfd_siginfo

source§

impl Copy for sock_extended_err

source§

impl Copy for sock_filter

source§

impl Copy for sock_fprog

source§

impl Copy for sock_txtime

source§

impl Copy for sockaddr_alg

source§

impl Copy for sockaddr_can

source§

impl Copy for sockaddr_nl

source§

impl Copy for sockaddr_vm

source§

impl Copy for spwd

source§

impl Copy for tls12_crypto_info_aes_gcm_128

source§

impl Copy for tls12_crypto_info_aes_gcm_256

source§

impl Copy for tls12_crypto_info_chacha20_poly1305

source§

impl Copy for tls_crypto_info

source§

impl Copy for libc::unix::linux_like::linux::ucred

source§

impl Copy for uinput_abs_setup

source§

impl Copy for uinput_ff_erase

source§

impl Copy for uinput_ff_upload

source§

impl Copy for uinput_setup

source§

impl Copy for uinput_user_dev

source§

impl Copy for Dl_info

source§

impl Copy for addrinfo

source§

impl Copy for arphdr

source§

impl Copy for arpreq

source§

impl Copy for arpreq_old

source§

impl Copy for libc::unix::linux_like::epoll_event

source§

impl Copy for fd_set

source§

impl Copy for ifaddrs

source§

impl Copy for in6_rtmsg

source§

impl Copy for libc::unix::linux_like::in_addr

source§

impl Copy for libc::unix::linux_like::in_pktinfo

source§

impl Copy for libc::unix::linux_like::ip_mreq

source§

impl Copy for libc::unix::linux_like::ip_mreq_source

source§

impl Copy for libc::unix::linux_like::ip_mreqn

source§

impl Copy for lconv

source§

impl Copy for libc::unix::linux_like::mmsghdr

source§

impl Copy for sched_param

source§

impl Copy for libc::unix::linux_like::sigevent

source§

impl Copy for libc::unix::linux_like::sockaddr

source§

impl Copy for libc::unix::linux_like::sockaddr_in6

source§

impl Copy for libc::unix::linux_like::sockaddr_in

source§

impl Copy for sockaddr_ll

source§

impl Copy for sockaddr_storage

source§

impl Copy for libc::unix::linux_like::sockaddr_un

source§

impl Copy for tm

source§

impl Copy for utsname

source§

impl Copy for group

source§

impl Copy for hostent

source§

impl Copy for libc::unix::iovec

source§

impl Copy for libc::unix::ipv6_mreq

source§

impl Copy for libc::unix::itimerval

source§

impl Copy for libc::unix::linger

source§

impl Copy for libc::unix::pollfd

source§

impl Copy for protoent

source§

impl Copy for libc::unix::rlimit

source§

impl Copy for libc::unix::rusage

source§

impl Copy for servent

source§

impl Copy for libc::unix::sigval

source§

impl Copy for libc::unix::timespec

source§

impl Copy for libc::unix::timeval

source§

impl Copy for tms

source§

impl Copy for utimbuf

source§

impl Copy for libc::unix::winsize

source§

impl Copy for libsecp256k1_core::field::Field

source§

impl Copy for FieldStorage

source§

impl Copy for Affine

source§

impl Copy for AffineStorage

source§

impl Copy for Jacobian

source§

impl Copy for libsecp256k1_core::scalar::Scalar

source§

impl Copy for libsecp256k1::Message

source§

impl Copy for libsecp256k1::PublicKey

source§

impl Copy for libsecp256k1::RecoveryId

source§

impl Copy for libsecp256k1::SecretKey

source§

impl Copy for libsecp256k1::Signature

source§

impl Copy for Elf_Dyn

source§

impl Copy for linux_raw_sys::general::__kernel_fd_set

source§

impl Copy for linux_raw_sys::general::__kernel_fd_set

source§

impl Copy for linux_raw_sys::general::__kernel_fsid_t

source§

impl Copy for linux_raw_sys::general::__kernel_fsid_t

source§

impl Copy for linux_raw_sys::general::__kernel_itimerspec

source§

impl Copy for linux_raw_sys::general::__kernel_itimerspec

source§

impl Copy for linux_raw_sys::general::__kernel_old_itimerval

source§

impl Copy for linux_raw_sys::general::__kernel_old_itimerval

source§

impl Copy for linux_raw_sys::general::__kernel_old_timespec

source§

impl Copy for linux_raw_sys::general::__kernel_old_timespec

source§

impl Copy for linux_raw_sys::general::__kernel_old_timeval

source§

impl Copy for linux_raw_sys::general::__kernel_old_timeval

source§

impl Copy for linux_raw_sys::general::__kernel_sock_timeval

source§

impl Copy for linux_raw_sys::general::__kernel_sock_timeval

source§

impl Copy for __kernel_sockaddr_storage

source§

impl Copy for __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__kernel_timespec

source§

impl Copy for linux_raw_sys::general::__kernel_timespec

source§

impl Copy for linux_raw_sys::general::__old_kernel_stat

source§

impl Copy for linux_raw_sys::general::__old_kernel_stat

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_4

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_4

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_6

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_6

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_7

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_7

source§

impl Copy for __user_cap_data_struct

source§

impl Copy for __user_cap_header_struct

source§

impl Copy for linux_raw_sys::general::clone_args

source§

impl Copy for linux_raw_sys::general::clone_args

source§

impl Copy for linux_raw_sys::general::cmsghdr

source§

impl Copy for linux_raw_sys::general::compat_statfs64

source§

impl Copy for linux_raw_sys::general::compat_statfs64

source§

impl Copy for linux_raw_sys::general::epoll_event

source§

impl Copy for linux_raw_sys::general::epoll_event

source§

impl Copy for linux_raw_sys::general::f_owner_ex

source§

impl Copy for linux_raw_sys::general::f_owner_ex

source§

impl Copy for linux_raw_sys::general::file_clone_range

source§

impl Copy for linux_raw_sys::general::file_clone_range

source§

impl Copy for linux_raw_sys::general::file_dedupe_range_info

source§

impl Copy for linux_raw_sys::general::file_dedupe_range_info

source§

impl Copy for linux_raw_sys::general::files_stat_struct

source§

impl Copy for linux_raw_sys::general::files_stat_struct

source§

impl Copy for linux_raw_sys::general::flock64

source§

impl Copy for linux_raw_sys::general::flock64

source§

impl Copy for linux_raw_sys::general::flock

source§

impl Copy for linux_raw_sys::general::flock

source§

impl Copy for linux_raw_sys::general::fscrypt_get_key_status_arg

source§

impl Copy for linux_raw_sys::general::fscrypt_get_key_status_arg

source§

impl Copy for linux_raw_sys::general::fscrypt_get_policy_ex_arg

source§

impl Copy for linux_raw_sys::general::fscrypt_get_policy_ex_arg

source§

impl Copy for linux_raw_sys::general::fscrypt_key

source§

impl Copy for linux_raw_sys::general::fscrypt_key

source§

impl Copy for linux_raw_sys::general::fscrypt_key_specifier

source§

impl Copy for linux_raw_sys::general::fscrypt_key_specifier

source§

impl Copy for linux_raw_sys::general::fscrypt_policy_v1

source§

impl Copy for linux_raw_sys::general::fscrypt_policy_v1

source§

impl Copy for linux_raw_sys::general::fscrypt_policy_v2

source§

impl Copy for linux_raw_sys::general::fscrypt_policy_v2

source§

impl Copy for linux_raw_sys::general::fscrypt_remove_key_arg

source§

impl Copy for linux_raw_sys::general::fscrypt_remove_key_arg

source§

impl Copy for linux_raw_sys::general::fstrim_range

source§

impl Copy for linux_raw_sys::general::fstrim_range

source§

impl Copy for linux_raw_sys::general::fsxattr

source§

impl Copy for linux_raw_sys::general::fsxattr

source§

impl Copy for linux_raw_sys::general::futex_waitv

source§

impl Copy for linux_raw_sys::general::futex_waitv

source§

impl Copy for group_filter__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for group_req

source§

impl Copy for group_source_req

source§

impl Copy for linux_raw_sys::general::in6_addr

source§

impl Copy for in6_flowlabel_req

source§

impl Copy for linux_raw_sys::general::in6_ifreq

source§

impl Copy for linux_raw_sys::general::in6_pktinfo

source§

impl Copy for linux_raw_sys::general::in_addr

source§

impl Copy for linux_raw_sys::general::in_pktinfo

source§

impl Copy for linux_raw_sys::general::inodes_stat_t

source§

impl Copy for linux_raw_sys::general::inodes_stat_t

source§

impl Copy for io_cqring_offsets

source§

impl Copy for io_sqring_offsets

source§

impl Copy for io_uring_cqe

source§

impl Copy for io_uring_files_update

source§

impl Copy for io_uring_getevents_arg

source§

impl Copy for io_uring_params

source§

impl Copy for io_uring_probe_op

source§

impl Copy for io_uring_restriction

source§

impl Copy for io_uring_rsrc_register

source§

impl Copy for io_uring_rsrc_update2

source§

impl Copy for io_uring_rsrc_update

source§

impl Copy for io_uring_sqe

source§

impl Copy for linux_raw_sys::general::iovec

source§

impl Copy for linux_raw_sys::general::iovec

source§

impl Copy for ip6_mtuinfo

source§

impl Copy for ip_beet_phdr

source§

impl Copy for ip_comp_hdr

source§

impl Copy for linux_raw_sys::general::ip_mreq

source§

impl Copy for linux_raw_sys::general::ip_mreq_source

source§

impl Copy for linux_raw_sys::general::ip_mreqn

source§

impl Copy for ip_msfilter__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for iphdr

source§

impl Copy for ipv6_destopt_hao

source§

impl Copy for linux_raw_sys::general::ipv6_mreq

source§

impl Copy for ipv6_opt_hdr

source§

impl Copy for ipv6_rt_hdr

source§

impl Copy for ipv6hdr

source§

impl Copy for linux_raw_sys::general::itimerspec

source§

impl Copy for linux_raw_sys::general::itimerspec

source§

impl Copy for linux_raw_sys::general::itimerval

source§

impl Copy for linux_raw_sys::general::itimerval

source§

impl Copy for kernel_sigaction

source§

impl Copy for kernel_sigset_t

source§

impl Copy for linux_raw_sys::general::ktermios

source§

impl Copy for linux_raw_sys::general::ktermios

source§

impl Copy for linux_raw_sys::general::linger

source§

impl Copy for linux_raw_sys::general::mmsghdr

source§

impl Copy for linux_raw_sys::general::mount_attr

source§

impl Copy for linux_raw_sys::general::mount_attr

source§

impl Copy for linux_raw_sys::general::msghdr

source§

impl Copy for new_utsname

source§

impl Copy for old_utsname

source§

impl Copy for oldold_utsname

source§

impl Copy for linux_raw_sys::general::open_how

source§

impl Copy for linux_raw_sys::general::open_how

source§

impl Copy for linux_raw_sys::general::pollfd

source§

impl Copy for linux_raw_sys::general::pollfd

source§

impl Copy for prctl_mm_map

source§

impl Copy for linux_raw_sys::general::rlimit64

source§

impl Copy for linux_raw_sys::general::rlimit64

source§

impl Copy for linux_raw_sys::general::rlimit

source§

impl Copy for linux_raw_sys::general::rlimit

source§

impl Copy for linux_raw_sys::general::robust_list

source§

impl Copy for linux_raw_sys::general::robust_list

source§

impl Copy for linux_raw_sys::general::robust_list_head

source§

impl Copy for linux_raw_sys::general::robust_list_head

source§

impl Copy for rt2_hdr

source§

impl Copy for linux_raw_sys::general::rusage

source§

impl Copy for linux_raw_sys::general::rusage

source§

impl Copy for linux_raw_sys::general::sigaction

source§

impl Copy for linux_raw_sys::general::sigaction

source§

impl Copy for linux_raw_sys::general::sigaltstack

source§

impl Copy for linux_raw_sys::general::sigaltstack

source§

impl Copy for linux_raw_sys::general::sigevent

source§

impl Copy for linux_raw_sys::general::sigevent

source§

impl Copy for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::siginfo

source§

impl Copy for linux_raw_sys::general::siginfo

source§

impl Copy for linux_raw_sys::general::siginfo__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::siginfo__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::sockaddr

source§

impl Copy for linux_raw_sys::general::sockaddr_in6

source§

impl Copy for linux_raw_sys::general::sockaddr_in

source§

impl Copy for linux_raw_sys::general::sockaddr_un

source§

impl Copy for linux_raw_sys::general::stat

source§

impl Copy for linux_raw_sys::general::stat

source§

impl Copy for linux_raw_sys::general::statfs64

source§

impl Copy for linux_raw_sys::general::statfs64

source§

impl Copy for linux_raw_sys::general::statfs

source§

impl Copy for linux_raw_sys::general::statfs

source§

impl Copy for linux_raw_sys::general::statx

source§

impl Copy for linux_raw_sys::general::statx

source§

impl Copy for linux_raw_sys::general::statx_timestamp

source§

impl Copy for linux_raw_sys::general::statx_timestamp

source§

impl Copy for tcp_diag_md5sig

source§

impl Copy for tcp_info

source§

impl Copy for tcp_md5sig

source§

impl Copy for tcp_repair_opt

source§

impl Copy for tcp_repair_window

source§

impl Copy for tcp_zerocopy_receive

source§

impl Copy for tcphdr

source§

impl Copy for linux_raw_sys::general::termio

source§

impl Copy for linux_raw_sys::general::termio

source§

impl Copy for linux_raw_sys::general::termios2

source§

impl Copy for linux_raw_sys::general::termios2

source§

impl Copy for linux_raw_sys::general::termios

source§

impl Copy for linux_raw_sys::general::termios

source§

impl Copy for linux_raw_sys::general::timespec

source§

impl Copy for linux_raw_sys::general::timespec

source§

impl Copy for linux_raw_sys::general::timeval

source§

impl Copy for linux_raw_sys::general::timeval

source§

impl Copy for linux_raw_sys::general::timezone

source§

impl Copy for linux_raw_sys::general::timezone

source§

impl Copy for linux_raw_sys::general::ucred

source§

impl Copy for linux_raw_sys::general::uffd_msg

source§

impl Copy for linux_raw_sys::general::uffd_msg

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5

source§

impl Copy for linux_raw_sys::general::uffdio_api

source§

impl Copy for linux_raw_sys::general::uffdio_api

source§

impl Copy for linux_raw_sys::general::uffdio_continue

source§

impl Copy for linux_raw_sys::general::uffdio_continue

source§

impl Copy for linux_raw_sys::general::uffdio_copy

source§

impl Copy for linux_raw_sys::general::uffdio_copy

source§

impl Copy for linux_raw_sys::general::uffdio_range

source§

impl Copy for linux_raw_sys::general::uffdio_range

source§

impl Copy for linux_raw_sys::general::uffdio_register

source§

impl Copy for linux_raw_sys::general::uffdio_register

source§

impl Copy for linux_raw_sys::general::uffdio_writeprotect

source§

impl Copy for linux_raw_sys::general::uffdio_writeprotect

source§

impl Copy for linux_raw_sys::general::uffdio_zeropage

source§

impl Copy for linux_raw_sys::general::uffdio_zeropage

source§

impl Copy for linux_raw_sys::general::user_desc

source§

impl Copy for linux_raw_sys::general::user_desc

source§

impl Copy for vfs_cap_data

source§

impl Copy for vfs_cap_data__bindgen_ty_1

source§

impl Copy for vfs_ns_cap_data

source§

impl Copy for vfs_ns_cap_data__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::winsize

source§

impl Copy for linux_raw_sys::general::winsize

source§

impl Copy for memchr::arch::all::memchr::One

source§

impl Copy for memchr::arch::all::memchr::Three

source§

impl Copy for memchr::arch::all::memchr::Two

source§

impl Copy for memchr::arch::all::packedpair::Finder

source§

impl Copy for memchr::arch::all::packedpair::Pair

source§

impl Copy for memchr::arch::all::twoway::Finder

source§

impl Copy for FinderRev

source§

impl Copy for memchr::arch::x86_64::avx2::memchr::One

source§

impl Copy for memchr::arch::x86_64::avx2::memchr::Three

source§

impl Copy for memchr::arch::x86_64::avx2::memchr::Two

source§

impl Copy for memchr::arch::x86_64::avx2::packedpair::Finder

source§

impl Copy for memchr::arch::x86_64::sse2::memchr::One

source§

impl Copy for memchr::arch::x86_64::sse2::memchr::Three

source§

impl Copy for memchr::arch::x86_64::sse2::memchr::Two

source§

impl Copy for memchr::arch::x86_64::sse2::packedpair::Finder

source§

impl Copy for memory_units::Bytes

source§

impl Copy for memory_units::target::Pages

source§

impl Copy for memory_units::target::Words

source§

impl Copy for memory_units::wasm32::Pages

source§

impl Copy for memory_units::wasm32::Words

source§

impl Copy for StreamResult

source§

impl Copy for mio::interest::Interest

source§

impl Copy for mio::token::Token

source§

impl Copy for Entry

source§

impl Copy for ClearEnvError

source§

impl Copy for nix::fcntl::AtFlags

source§

impl Copy for nix::fcntl::FallocateFlags

source§

impl Copy for FdFlag

source§

impl Copy for OFlag

source§

impl Copy for nix::fcntl::RenameFlags

source§

impl Copy for SealFlag

source§

impl Copy for SpliceFFlags

source§

impl Copy for DeleteModuleFlags

source§

impl Copy for ModuleInitFlags

source§

impl Copy for MntFlags

source§

impl Copy for nix::mount::linux::MsFlags

source§

impl Copy for MQ_OFlag

source§

impl Copy for MqAttr

source§

impl Copy for InterfaceFlags

source§

impl Copy for PollFd

source§

impl Copy for nix::poll::PollFlags

source§

impl Copy for ForkptyResult

source§

impl Copy for OpenptyResult

source§

impl Copy for CpuSet

source§

impl Copy for CloneFlags

source§

impl Copy for EpollCreateFlags

source§

impl Copy for EpollEvent

source§

impl Copy for EpollFlags

source§

impl Copy for EfdFlags

source§

impl Copy for AddWatchFlags

source§

impl Copy for InitFlags

source§

impl Copy for Inotify

source§

impl Copy for WatchDescriptor

source§

impl Copy for MemFdCreateFlag

source§

impl Copy for MRemapFlags

source§

impl Copy for nix::sys::mman::MapFlags

source§

impl Copy for MlockAllFlags

source§

impl Copy for nix::sys::mman::MsFlags

source§

impl Copy for nix::sys::mman::ProtFlags

source§

impl Copy for Persona

source§

impl Copy for Options

source§

impl Copy for Dqblk

source§

impl Copy for QuotaValidFlags

source§

impl Copy for Usage

source§

impl Copy for FdSet

source§

impl Copy for SigEvent

source§

impl Copy for SaFlags

source§

impl Copy for SigAction

source§

impl Copy for SigSet

source§

impl Copy for SignalIterator

source§

impl Copy for SfdFlags

source§

impl Copy for AlgAddr

source§

impl Copy for LinkAddr

source§

impl Copy for NetlinkAddr

source§

impl Copy for nix::sys::socket::addr::Ipv4Addr

source§

impl Copy for nix::sys::socket::addr::Ipv6Addr

source§

impl Copy for SockaddrIn6

source§

impl Copy for SockaddrIn

source§

impl Copy for UnixAddr

source§

impl Copy for VsockAddr

source§

impl Copy for AcceptConn

source§

impl Copy for AlgSetAeadAuthSize

source§

impl Copy for BindToDevice

source§

impl Copy for Broadcast

source§

impl Copy for DontRoute

source§

impl Copy for Ip6tOriginalDst

source§

impl Copy for IpAddMembership

source§

impl Copy for IpDropMembership

source§

impl Copy for IpFreebind

source§

impl Copy for IpMtu

source§

impl Copy for IpMulticastLoop

source§

impl Copy for IpMulticastTtl

source§

impl Copy for IpTos

source§

impl Copy for IpTransparent

source§

impl Copy for Ipv4OrigDstAddr

source§

impl Copy for Ipv4PacketInfo

source§

impl Copy for Ipv4RecvErr

source§

impl Copy for Ipv4Ttl

source§

impl Copy for Ipv6AddMembership

source§

impl Copy for Ipv6DontFrag

source§

impl Copy for Ipv6DropMembership

source§

impl Copy for Ipv6OrigDstAddr

source§

impl Copy for Ipv6RecvErr

source§

impl Copy for Ipv6RecvPacketInfo

source§

impl Copy for Ipv6TClass

source§

impl Copy for Ipv6Ttl

source§

impl Copy for Ipv6V6Only

source§

impl Copy for KeepAlive

source§

impl Copy for Linger

source§

impl Copy for Mark

source§

impl Copy for OobInline

source§

impl Copy for OriginalDst

source§

impl Copy for PassCred

source§

impl Copy for PeerCredentials

source§

impl Copy for Priority

source§

impl Copy for RcvBuf

source§

impl Copy for RcvBufForce

source§

impl Copy for ReceiveTimeout

source§

impl Copy for ReceiveTimestamp

source§

impl Copy for ReceiveTimestampns

source§

impl Copy for ReuseAddr

source§

impl Copy for ReusePort

source§

impl Copy for RxqOvfl

source§

impl Copy for SendTimeout

source§

impl Copy for SndBuf

source§

impl Copy for SndBufForce

source§

impl Copy for nix::sys::socket::sockopt::SockType

source§

impl Copy for SocketError

source§

impl Copy for TcpCongestion

source§

impl Copy for TcpKeepCount

source§

impl Copy for TcpKeepIdle

source§

impl Copy for TcpKeepInterval

source§

impl Copy for TcpMaxSeg

source§

impl Copy for TcpNoDelay

source§

impl Copy for TcpRepair

source§

impl Copy for TcpUserTimeout

source§

impl Copy for Timestamping

source§

impl Copy for TxTime

source§

impl Copy for UdpGroSegment

source§

impl Copy for UdpGsoSegment

source§

impl Copy for IpMembershipRequest

source§

impl Copy for Ipv6MembershipRequest

source§

impl Copy for MsgFlags

source§

impl Copy for SockFlag

source§

impl Copy for TimestampingFlag

source§

impl Copy for Timestamps

source§

impl Copy for UnixCredentials

source§

impl Copy for nix::sys::stat::Mode

source§

impl Copy for SFlag

source§

impl Copy for FsType

source§

impl Copy for Statfs

source§

impl Copy for FsFlags

source§

impl Copy for Statvfs

source§

impl Copy for SysInfo

source§

impl Copy for ControlFlags

source§

impl Copy for InputFlags

source§

impl Copy for LocalFlags

source§

impl Copy for OutputFlags

source§

impl Copy for TimeSpec

source§

impl Copy for TimeVal

source§

impl Copy for TimerSetTimeFlags

source§

impl Copy for TimerFlags

source§

impl Copy for RemoteIoVec

source§

impl Copy for UtsName

source§

impl Copy for WaitPidFlag

source§

impl Copy for nix::time::ClockId

source§

impl Copy for UContext

source§

impl Copy for ResGid

source§

impl Copy for ResUid

source§

impl Copy for AccessFlags

source§

impl Copy for nix::unistd::Gid

source§

impl Copy for Pid

source§

impl Copy for nix::unistd::Uid

source§

impl Copy for num_format::buffer::Buffer

source§

impl Copy for ParseRatioError

source§

impl Copy for EmptyRangeError

source§

impl Copy for IncorrectRangeError

source§

impl Copy for OutOfBoundsError

source§

impl Copy for AixFileHeader

source§

impl Copy for AixHeader

source§

impl Copy for AixMemberOffset

source§

impl Copy for object::archive::Header

source§

impl Copy for object::elf::Ident

source§

impl Copy for object::elf::Ident

source§

impl Copy for object::endian::BigEndian

source§

impl Copy for object::endian::BigEndian

source§

impl Copy for object::endian::LittleEndian

source§

impl Copy for object::endian::LittleEndian

source§

impl Copy for FatArch32

source§

impl Copy for FatArch64

source§

impl Copy for FatHeader

source§

impl Copy for RelocationInfo

source§

impl Copy for ScatteredRelocationInfo

source§

impl Copy for AnonObjectHeader

source§

impl Copy for AnonObjectHeaderBigobj

source§

impl Copy for AnonObjectHeaderV2

source§

impl Copy for Guid

source§

impl Copy for ImageAlpha64RuntimeFunctionEntry

source§

impl Copy for ImageAlphaRuntimeFunctionEntry

source§

impl Copy for ImageArchitectureEntry

source§

impl Copy for ImageArchiveMemberHeader

source§

impl Copy for ImageArm64RuntimeFunctionEntry

source§

impl Copy for ImageArmRuntimeFunctionEntry

source§

impl Copy for ImageAuxSymbolCrc

source§

impl Copy for ImageAuxSymbolFunction

source§

impl Copy for ImageAuxSymbolFunctionBeginEnd

source§

impl Copy for ImageAuxSymbolSection

source§

impl Copy for ImageAuxSymbolTokenDef

source§

impl Copy for ImageAuxSymbolWeak

source§

impl Copy for ImageBaseRelocation

source§

impl Copy for ImageBoundForwarderRef

source§

impl Copy for ImageBoundImportDescriptor

source§

impl Copy for ImageCoffSymbolsHeader

source§

impl Copy for ImageCor20Header

source§

impl Copy for ImageDataDirectory

source§

impl Copy for ImageDebugDirectory

source§

impl Copy for ImageDebugMisc

source§

impl Copy for ImageDelayloadDescriptor

source§

impl Copy for ImageDosHeader

source§

impl Copy for ImageDynamicRelocation32

source§

impl Copy for ImageDynamicRelocation32V2

source§

impl Copy for ImageDynamicRelocation64

source§

impl Copy for ImageDynamicRelocation64V2

source§

impl Copy for ImageDynamicRelocationTable

source§

impl Copy for ImageEnclaveConfig32

source§

impl Copy for ImageEnclaveConfig64

source§

impl Copy for ImageEnclaveImport

source§

impl Copy for ImageEpilogueDynamicRelocationHeader

source§

impl Copy for ImageExportDirectory

source§

impl Copy for ImageFileHeader

source§

impl Copy for ImageFunctionEntry64

source§

impl Copy for ImageFunctionEntry

source§

impl Copy for ImageHotPatchBase

source§

impl Copy for ImageHotPatchHashes

source§

impl Copy for ImageHotPatchInfo

source§

impl Copy for ImageImportByName

source§

impl Copy for ImageImportDescriptor

source§

impl Copy for ImageLinenumber

source§

impl Copy for ImageLoadConfigCodeIntegrity

source§

impl Copy for ImageLoadConfigDirectory32

source§

impl Copy for ImageLoadConfigDirectory64

source§

impl Copy for ImageNtHeaders32

source§

impl Copy for ImageNtHeaders64

source§

impl Copy for ImageOptionalHeader32

source§

impl Copy for ImageOptionalHeader64

source§

impl Copy for ImageOs2Header

source§

impl Copy for ImagePrologueDynamicRelocationHeader

source§

impl Copy for ImageRelocation

source§

impl Copy for ImageResourceDataEntry

source§

impl Copy for ImageResourceDirStringU

source§

impl Copy for ImageResourceDirectory

source§

impl Copy for ImageResourceDirectoryEntry

source§

impl Copy for ImageResourceDirectoryString

source§

impl Copy for ImageRomHeaders

source§

impl Copy for ImageRomOptionalHeader

source§

impl Copy for ImageRuntimeFunctionEntry

source§

impl Copy for ImageSectionHeader

source§

impl Copy for ImageSeparateDebugHeader

source§

impl Copy for ImageSymbol

source§

impl Copy for ImageSymbolBytes

source§

impl Copy for ImageSymbolEx

source§

impl Copy for ImageSymbolExBytes

source§

impl Copy for ImageThunkData32

source§

impl Copy for ImageThunkData64

source§

impl Copy for ImageTlsDirectory32

source§

impl Copy for ImageTlsDirectory64

source§

impl Copy for ImageVxdHeader

source§

impl Copy for ImportObjectHeader

source§

impl Copy for MaskedRichHeaderEntry

source§

impl Copy for NonPagedDebugInfo

source§

impl Copy for ArchiveOffset

source§

impl Copy for object::read::elf::version::VersionIndex

source§

impl Copy for object::read::elf::version::VersionIndex

source§

impl Copy for object::read::pe::relocation::Relocation

source§

impl Copy for ResourceName

source§

impl Copy for RichHeaderEntry

source§

impl Copy for object::read::CompressedFileRange

source§

impl Copy for object::read::CompressedFileRange

source§

impl Copy for object::read::Error

source§

impl Copy for object::read::Error

source§

impl Copy for object::read::SectionIndex

source§

impl Copy for object::read::SectionIndex

source§

impl Copy for object::read::SymbolIndex

source§

impl Copy for object::read::SymbolIndex

source§

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

source§

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

source§

impl Copy for object::write::string::StringId

source§

impl Copy for ComdatId

source§

impl Copy for object::write::SectionId

source§

impl Copy for SymbolId

source§

impl Copy for AuxHeader32

source§

impl Copy for AuxHeader64

source§

impl Copy for BlockAux32

source§

impl Copy for BlockAux64

source§

impl Copy for CsectAux32

source§

impl Copy for CsectAux64

source§

impl Copy for DwarfAux32

source§

impl Copy for DwarfAux64

source§

impl Copy for ExpAux

source§

impl Copy for FileAux32

source§

impl Copy for FileAux64

source§

impl Copy for object::xcoff::FileHeader32

source§

impl Copy for object::xcoff::FileHeader64

source§

impl Copy for FunAux32

source§

impl Copy for FunAux64

source§

impl Copy for object::xcoff::Rel32

source§

impl Copy for object::xcoff::Rel64

source§

impl Copy for object::xcoff::SectionHeader32

source§

impl Copy for object::xcoff::SectionHeader64

source§

impl Copy for StatAux

source§

impl Copy for Symbol32

source§

impl Copy for Symbol64

source§

impl Copy for SymbolBytes

source§

impl Copy for OptionBool

source§

impl Copy for parity_wasm::elements::func::Func

source§

impl Copy for parity_wasm::elements::func::Local

source§

impl Copy for parity_wasm::elements::import_entry::GlobalType

source§

impl Copy for parity_wasm::elements::import_entry::MemoryType

source§

impl Copy for parity_wasm::elements::import_entry::ResizableLimits

source§

impl Copy for parity_wasm::elements::import_entry::TableType

source§

impl Copy for parity_wasm::elements::primitives::Uint8

source§

impl Copy for parity_wasm::elements::primitives::Uint32

source§

impl Copy for parity_wasm::elements::primitives::Uint64

source§

impl Copy for parity_wasm::elements::primitives::VarInt7

source§

impl Copy for parity_wasm::elements::primitives::VarInt32

source§

impl Copy for parity_wasm::elements::primitives::VarInt64

source§

impl Copy for parity_wasm::elements::primitives::VarUint1

source§

impl Copy for parity_wasm::elements::primitives::VarUint7

source§

impl Copy for parity_wasm::elements::primitives::VarUint32

source§

impl Copy for parity_wasm::elements::primitives::VarUint64

source§

impl Copy for parking_lot::condvar::WaitTimeoutResult

source§

impl Copy for ParkToken

source§

impl Copy for UnparkResult

source§

impl Copy for UnparkToken

source§

impl Copy for NoA1

source§

impl Copy for NoA2

source§

impl Copy for NoNI

source§

impl Copy for NoS3

source§

impl Copy for NoS4

source§

impl Copy for YesA1

source§

impl Copy for YesA2

source§

impl Copy for YesNI

source§

impl Copy for YesS3

source§

impl Copy for YesS4

source§

impl Copy for rand::distributions::bernoulli::Bernoulli

source§

impl Copy for rand::distributions::bernoulli::Bernoulli

source§

impl Copy for Binomial

source§

impl Copy for Cauchy

source§

impl Copy for Exp1

source§

impl Copy for Exp

source§

impl Copy for rand::distributions::float::Open01

source§

impl Copy for rand::distributions::float::Open01

source§

impl Copy for rand::distributions::float::OpenClosed01

source§

impl Copy for rand::distributions::float::OpenClosed01

source§

impl Copy for Beta

source§

impl Copy for ChiSquared

source§

impl Copy for FisherF

source§

impl Copy for Gamma

source§

impl Copy for StudentT

source§

impl Copy for LogNormal

source§

impl Copy for Normal

source§

impl Copy for StandardNormal

source§

impl Copy for Alphanumeric

source§

impl Copy for Pareto

source§

impl Copy for Poisson

source§

impl Copy for rand::distributions::Standard

source§

impl Copy for rand::distributions::Standard

source§

impl Copy for Triangular

source§

impl Copy for UniformChar

source§

impl Copy for rand::distributions::uniform::UniformDuration

source§

impl Copy for rand::distributions::uniform::UniformDuration

source§

impl Copy for UnitCircle

source§

impl Copy for UnitSphereSurface

source§

impl Copy for Weibull

source§

impl Copy for ThreadRng

source§

impl Copy for rand_core::os::OsRng

source§

impl Copy for rand_core::os::OsRng

source§

impl Copy for RealReg

source§

impl Copy for Reg

source§

impl Copy for RegClassInfo

source§

impl Copy for SpillSlot

source§

impl Copy for VirtualReg

source§

impl Copy for LazyStateID

source§

impl Copy for Transition

source§

impl Copy for ByteClasses

source§

impl Copy for Unit

source§

impl Copy for DebugByte

source§

impl Copy for regex_automata::util::look::LookSet

source§

impl Copy for NonMaxUsize

source§

impl Copy for regex_automata::util::primitives::PatternID

source§

impl Copy for SmallIndex

source§

impl Copy for regex_automata::util::primitives::StateID

source§

impl Copy for HalfMatch

source§

impl Copy for regex_automata::util::search::Match

source§

impl Copy for regex_automata::util::search::Span

source§

impl Copy for regex_automata::util::syntax::Config

source§

impl Copy for regex_syntax::ast::Position

source§

impl Copy for regex_syntax::ast::Position

source§

impl Copy for regex_syntax::ast::Span

source§

impl Copy for regex_syntax::ast::Span

source§

impl Copy for regex_syntax::hir::ClassBytesRange

source§

impl Copy for regex_syntax::hir::ClassBytesRange

source§

impl Copy for regex_syntax::hir::ClassUnicodeRange

source§

impl Copy for regex_syntax::hir::ClassUnicodeRange

source§

impl Copy for regex_syntax::hir::LookSet

source§

impl Copy for regex_syntax::utf8::Utf8Range

source§

impl Copy for regex_syntax::utf8::Utf8Range

source§

impl Copy for Protection

source§

impl Copy for Region

source§

impl Copy for ring::aead::Tag

source§

impl Copy for Digest

source§

impl Copy for KeyRejected

source§

impl Copy for Unspecified

source§

impl Copy for ring::hkdf::Algorithm

source§

impl Copy for ring::hmac::Algorithm

source§

impl Copy for ring::hmac::Tag

source§

impl Copy for ring::pbkdf2::Algorithm

source§

impl Copy for ring::signature::Signature

source§

impl Copy for ArchivedIpv4Addr

source§

impl Copy for ArchivedIpv6Addr

source§

impl Copy for ArchivedSocketAddrV4

source§

impl Copy for ArchivedSocketAddrV6

source§

impl Copy for ArchivedDuration

source§

impl Copy for rustix::backend::fs::inotify::CreateFlags

source§

impl Copy for WatchFlags

source§

impl Copy for Access

source§

impl Copy for rustix::backend::fs::types::AtFlags

source§

impl Copy for rustix::backend::fs::types::FallocateFlags

source§

impl Copy for MemfdFlags

source§

impl Copy for rustix::backend::fs::types::Mode

source§

impl Copy for OFlags

source§

impl Copy for rustix::backend::fs::types::RenameFlags

source§

impl Copy for ResolveFlags

source§

impl Copy for SealFlags

source§

impl Copy for StatVfsMountFlags

source§

impl Copy for StatxFlags

source§

impl Copy for rustix::backend::io::epoll::CreateFlags

source§

impl Copy for EventFlags

source§

impl Copy for rustix::backend::io::errno::Errno

source§

impl Copy for rustix::backend::io::errno::Errno

source§

impl Copy for rustix::backend::io::poll_fd::PollFlags

source§

impl Copy for rustix::backend::io::types::DupFlags

source§

impl Copy for rustix::backend::io::types::DupFlags

source§

impl Copy for EventfdFlags

source§

impl Copy for rustix::backend::io::types::FdFlags

source§

impl Copy for rustix::backend::io::types::FdFlags

source§

impl Copy for PipeFlags

source§

impl Copy for rustix::backend::io::types::ReadWriteFlags

source§

impl Copy for rustix::backend::io::types::ReadWriteFlags

source§

impl Copy for SpliceFlags

source§

impl Copy for rustix::backend::mm::types::MapFlags

source§

impl Copy for MlockFlags

source§

impl Copy for MprotectFlags

source§

impl Copy for MremapFlags

source§

impl Copy for MsyncFlags

source§

impl Copy for rustix::backend::mm::types::ProtFlags

source§

impl Copy for UserfaultfdFlags

source§

impl Copy for MountFlags

source§

impl Copy for MountPropagationFlags

source§

impl Copy for UnmountFlags

source§

impl Copy for XattrFlags

source§

impl Copy for rustix::ioctl::Opcode

source§

impl Copy for rustix::ugid::Gid

source§

impl Copy for rustix::ugid::Uid

source§

impl Copy for InvalidDnsNameError

source§

impl Copy for AddrParseError

source§

impl Copy for InvalidSubjectNameError

source§

impl Copy for webpki::time::Time

source§

impl Copy for KeyUsage

source§

impl Copy for u24

source§

impl Copy for Random

source§

impl Copy for SessionId

source§

impl Copy for ryu::buffer::Buffer

source§

impl Copy for scale_bits::scale::format::Format

source§

impl Copy for scale_decode::visitor::TypeId

source§

impl Copy for MetaType

source§

impl Copy for ByLength

source§

impl Copy for ByMemoryUsage

source§

impl Copy for Unlimited

source§

impl Copy for UnlimitedCompact

source§

impl Copy for AdaptorCertPublic

source§

impl Copy for AdaptorCertSecret

source§

impl Copy for ECQVCertPublic

source§

impl Copy for ECQVCertSecret

source§

impl Copy for schnorrkel::derive::ChainCode

source§

impl Copy for schnorrkel::derive::ChainCode

source§

impl Copy for schnorrkel::keys::PublicKey

source§

impl Copy for schnorrkel::keys::PublicKey

source§

impl Copy for Commitment

source§

impl Copy for Cosignature

source§

impl Copy for schnorrkel::points::RistrettoBoth

source§

impl Copy for schnorrkel::points::RistrettoBoth

source§

impl Copy for schnorrkel::sign::Signature

source§

impl Copy for schnorrkel::sign::Signature

source§

impl Copy for VRFOutput

source§

impl Copy for VRFPreOut

source§

impl Copy for SeaHasher

source§

impl Copy for secp256k1_sys::recovery::RecoverableSignature

source§

impl Copy for secp256k1_sys::KeyPair

source§

impl Copy for secp256k1_sys::PublicKey

source§

impl Copy for secp256k1_sys::Signature

source§

impl Copy for secp256k1_sys::XOnlyPublicKey

source§

impl Copy for AlignedType

source§

impl Copy for GlobalContext

source§

impl Copy for secp256k1::ecdh::SharedSecret

source§

impl Copy for secp256k1::ecdsa::recovery::RecoverableSignature

source§

impl Copy for secp256k1::ecdsa::recovery::RecoveryId

source§

impl Copy for SerializedSignature

source§

impl Copy for secp256k1::ecdsa::Signature

source§

impl Copy for InvalidParityValue

source§

impl Copy for secp256k1::key::KeyPair

source§

impl Copy for secp256k1::key::PublicKey

source§

impl Copy for secp256k1::key::SecretKey

source§

impl Copy for secp256k1::key::XOnlyPublicKey

source§

impl Copy for secp256k1::scalar::Scalar

source§

impl Copy for secp256k1::schnorr::Signature

source§

impl Copy for secp256k1::Message

source§

impl Copy for IgnoredAny

source§

impl Copy for DefaultConfig

source§

impl Copy for socket2::Domain

source§

impl Copy for Protocol

source§

impl Copy for RecvFlags

source§

impl Copy for socket2::Type

source§

impl Copy for FixedI64

source§

impl Copy for FixedI128

source§

impl Copy for FixedU64

source§

impl Copy for FixedU128

source§

impl Copy for PerU16

source§

impl Copy for Perbill

source§

impl Copy for sp_arithmetic::per_things::Percent

source§

impl Copy for Permill

source§

impl Copy for Perquintill

source§

impl Copy for Rational128

source§

impl Copy for CryptoTypeId

source§

impl Copy for KeyTypeId

source§

impl Copy for sp_core::ecdsa::Public

source§

impl Copy for sp_core::ed25519::Pair

source§

impl Copy for sp_core::ed25519::Public

source§

impl Copy for Capabilities

source§

impl Copy for sp_core::offchain::Duration

source§

impl Copy for HttpRequestId

source§

impl Copy for Timestamp

source§

impl Copy for sp_core::sr25519::Public

source§

impl Copy for sp_runtime::legacy::byte_sized_error::ModuleError

source§

impl Copy for sp_runtime::ModuleError

source§

impl Copy for CacheSize

source§

impl Copy for OldWeight

source§

impl Copy for RuntimeDbWeight

source§

impl Copy for Weight

source§

impl Copy for Ss58AddressFormat

source§

impl Copy for ss58_registry::error::ParseError

source§

impl Copy for Choice

source§

impl Copy for OuterEnumsMetadata

source§

impl Copy for BlakeTwo256

source§

impl Copy for tinyvec::arrayvec::TryFromSliceError

source§

impl Copy for BytesCodec

source§

impl Copy for Builder

source§

impl Copy for tokio::io::interest::Interest

source§

impl Copy for Ready

source§

impl Copy for tokio::net::unix::ucred::UCred

source§

impl Copy for tokio::time::error::Error

source§

impl Copy for tokio::time::instant::Instant

source§

impl Copy for toml_datetime::datetime::Date

source§

impl Copy for Datetime

source§

impl Copy for toml_datetime::datetime::Time

source§

impl Copy for tracing_core::metadata::Level

source§

impl Copy for tracing_core::metadata::LevelFilter

source§

impl Copy for NoSubscriber

source§

impl Copy for FilterId

source§

impl Copy for Json

source§

impl Copy for tracing_subscriber::fmt::format::Compact

source§

impl Copy for tracing_subscriber::fmt::format::Full

source§

impl Copy for tracing_subscriber::fmt::time::SystemTime

source§

impl Copy for Uptime

source§

impl Copy for XxHash64

source§

impl Copy for XxHash32

source§

impl Copy for ATerm

source§

impl Copy for B0

source§

impl Copy for B1

source§

impl Copy for Z0

source§

impl Copy for Equal

source§

impl Copy for Greater

source§

impl Copy for Less

source§

impl Copy for UTerm

source§

impl Copy for BidiMatchedOpeningBracket

source§

impl Copy for unicode_bidi::level::Level

source§

impl Copy for EndOfInput

source§

impl Copy for wasm_encoder::core::code::MemArg

source§

impl Copy for DataCountSection

source§

impl Copy for wasm_encoder::core::globals::GlobalType

source§

impl Copy for wasm_encoder::core::memories::MemoryType

source§

impl Copy for StartSection

source§

impl Copy for wasm_encoder::core::tables::TableType

source§

impl Copy for wasm_encoder::core::tags::TagType

source§

impl Copy for ArrayType

source§

impl Copy for FieldType

source§

impl Copy for wasm_encoder::core::types::RefType

source§

impl Copy for MetadataHeader

source§

impl Copy for FunctionBodyPtr

source§

impl Copy for wasmer_cache::hash::Hash

source§

impl Copy for wasmer_compiler::section::SectionIndex

source§

impl Copy for wasmer_compiler::sourceloc::SourceLoc

source§

impl Copy for VMExternRef

source§

impl Copy for CustomSectionIndex

source§

impl Copy for wasmer_types::indexes::DataIndex

source§

impl Copy for wasmer_types::indexes::ElemIndex

source§

impl Copy for FunctionIndex

source§

impl Copy for wasmer_types::indexes::GlobalIndex

source§

impl Copy for LocalFunctionIndex

source§

impl Copy for LocalGlobalIndex

source§

impl Copy for LocalMemoryIndex

source§

impl Copy for LocalTableIndex

source§

impl Copy for wasmer_types::indexes::MemoryIndex

source§

impl Copy for wasmer_types::indexes::SignatureIndex

source§

impl Copy for wasmer_types::indexes::TableIndex

source§

impl Copy for wasmer_types::types::GlobalType

source§

impl Copy for wasmer_types::types::MemoryType

source§

impl Copy for wasmer_types::types::TableType

source§

impl Copy for wasmer_types::types::V128

source§

impl Copy for wasmer_types::units::Bytes

source§

impl Copy for PageCountOutOfRange

source§

impl Copy for wasmer_types::units::Pages

source§

impl Copy for TargetSharedSignatureIndex

source§

impl Copy for VMBuiltinFunctionIndex

source§

impl Copy for VMFuncRef

source§

impl Copy for SectionBodyPtr

source§

impl Copy for VMCallerCheckedAnyfunc

source§

impl Copy for wasmer_vm::vmcontext::VMFunctionImport

source§

impl Copy for VMMemoryDefinition

source§

impl Copy for wasmer_vm::vmcontext::VMSharedSignatureIndex

source§

impl Copy for wasmer_vm::vmcontext::VMTableDefinition

source§

impl Copy for wasmi_core::nan_preserving_float::F32

source§

impl Copy for wasmi_core::nan_preserving_float::F64

source§

impl Copy for wasmi_core::untyped::UntypedValue

source§

impl Copy for wasmparser_nostd::readers::core::operators::Ieee32

source§

impl Copy for wasmparser_nostd::readers::core::operators::Ieee64

source§

impl Copy for wasmparser_nostd::readers::core::operators::MemArg

source§

impl Copy for wasmparser_nostd::readers::core::operators::V128

source§

impl Copy for wasmparser_nostd::readers::core::types::GlobalType

source§

impl Copy for wasmparser_nostd::readers::core::types::MemoryType

source§

impl Copy for wasmparser_nostd::readers::core::types::TableType

source§

impl Copy for wasmparser_nostd::readers::core::types::TagType

source§

impl Copy for wasmparser_nostd::validator::operators::Frame

source§

impl Copy for wasmparser_nostd::validator::WasmFeatures

source§

impl Copy for wasmparser_nostd::validator::types::TypeId

source§

impl Copy for wasmparser::binary_reader::Range

source§

impl Copy for wasmparser::primitives::GlobalType

source§

impl Copy for wasmparser::primitives::Ieee32

source§

impl Copy for wasmparser::primitives::Ieee64

source§

impl Copy for MemoryImmediate

source§

impl Copy for wasmparser::primitives::MemoryType

source§

impl Copy for wasmparser::primitives::TableType

source§

impl Copy for wasmparser::primitives::TagType

source§

impl Copy for wasmparser::primitives::V128

source§

impl Copy for wasmparser::readers::core::operators::Ieee32

source§

impl Copy for wasmparser::readers::core::operators::Ieee64

source§

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

source§

impl Copy for wasmparser::readers::core::operators::V128

source§

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

source§

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

source§

impl Copy for PackedIndex

source§

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

source§

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

source§

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

source§

impl Copy for wasmparser::readers::reloc_section::Reloc

source§

impl Copy for wasmparser::validator::operators::Frame

source§

impl Copy for wasmparser::validator::WasmFeatures

source§

impl Copy for wasmparser::validator::WasmFeatures

source§

impl Copy for wasmparser::validator::types::TypeId

source§

impl Copy for FilePos

source§

impl Copy for BuiltinFunctionIndex

source§

impl Copy for FunctionLoc

source§

impl Copy for wasmtime_environ::compilation::Setting

source§

impl Copy for AnyfuncIndex

source§

impl Copy for NullProfilerAgent

source§

impl Copy for ExportFunction

source§

impl Copy for CompiledModuleId

source§

impl Copy for wasmtime_runtime::vmcontext::VMFunctionImport

source§

impl Copy for VMGlobalImport

source§

impl Copy for VMInvokeArgument

source§

impl Copy for VMMemoryImport

source§

impl Copy for wasmtime_runtime::vmcontext::VMSharedSignatureIndex

source§

impl Copy for wasmtime_runtime::vmcontext::VMTableDefinition

source§

impl Copy for VMTableImport

source§

impl Copy for wasmtime_types::DataIndex

source§

impl Copy for DefinedFuncIndex

source§

impl Copy for DefinedGlobalIndex

source§

impl Copy for DefinedMemoryIndex

source§

impl Copy for DefinedTableIndex

source§

impl Copy for wasmtime_types::ElemIndex

source§

impl Copy for FuncIndex

source§

impl Copy for wasmtime_types::Global

source§

impl Copy for wasmtime_types::GlobalIndex

source§

impl Copy for wasmtime_types::Memory

source§

impl Copy for wasmtime_types::MemoryIndex

source§

impl Copy for OwnedMemoryIndex

source§

impl Copy for wasmtime_types::SignatureIndex

source§

impl Copy for wasmtime_types::Table

source§

impl Copy for wasmtime_types::TableIndex

source§

impl Copy for wasmtime_types::Tag

source§

impl Copy for TagIndex

source§

impl Copy for TypeIndex

source§

impl Copy for wasmtime::externals::Global

source§

impl Copy for wasmtime::externals::Table

source§

impl Copy for wasmtime::func::Func

source§

impl Copy for wasmtime::instance::Instance

source§

impl Copy for wasmtime::memory::Memory

source§

impl Copy for Limits

source§

impl Copy for wast::core::types::MemoryType

source§

impl Copy for acq_rel

source§

impl Copy for after

source§

impl Copy for alias

source§

impl Copy for any

source§

impl Copy for anyref

source§

impl Copy for arg

source§

impl Copy for array

source§

impl Copy for arrayref

source§

impl Copy for assert_exception

source§

impl Copy for assert_exhaustion

source§

impl Copy for assert_invalid

source§

impl Copy for assert_malformed

source§

impl Copy for assert_return

source§

impl Copy for assert_trap

source§

impl Copy for assert_unlinkable

source§

impl Copy for before

source§

impl Copy for binary

source§

impl Copy for block

source§

impl Copy for bool_

source§

impl Copy for borrow

source§

impl Copy for canon

source§

impl Copy for case

source§

impl Copy for catch

source§

impl Copy for catch_all

source§

impl Copy for catch_all_ref

source§

impl Copy for catch_ref

source§

impl Copy for char

source§

impl Copy for code

source§

impl Copy for component

source§

impl Copy for core

source§

impl Copy for data

source§

impl Copy for declare

source§

impl Copy for delegate

source§

impl Copy for do

source§

impl Copy for dtor

source§

impl Copy for elem

source§

impl Copy for else

source§

impl Copy for end

source§

impl Copy for enum_

source§

impl Copy for eq

source§

impl Copy for eqref

source§

impl Copy for error

source§

impl Copy for exn

source§

impl Copy for exnref

source§

impl Copy for export

source§

impl Copy for export_info

source§

impl Copy for extern

source§

impl Copy for externref

source§

impl Copy for f32

source§

impl Copy for f32x4

source§

impl Copy for f64

source§

impl Copy for f64x2

source§

impl Copy for false_

source§

impl Copy for field

source§

impl Copy for final

source§

impl Copy for first

source§

impl Copy for flags

source§

impl Copy for float32

source§

impl Copy for float64

source§

impl Copy for func

source§

impl Copy for funcref

source§

impl Copy for get

source§

impl Copy for global

source§

impl Copy for i8

source§

impl Copy for i8x16

source§

impl Copy for i16

source§

impl Copy for i16x8

source§

impl Copy for i31

source§

impl Copy for i31ref

source§

impl Copy for i32

source§

impl Copy for i32x4

source§

impl Copy for i64

source§

impl Copy for i64x2

source§

impl Copy for if

source§

impl Copy for import

source§

impl Copy for import_info

source§

impl Copy for instance

source§

impl Copy for instantiate

source§

impl Copy for interface

source§

impl Copy for invoke

source§

impl Copy for item

source§

impl Copy for language

source§

impl Copy for last

source§

impl Copy for lift

source§

impl Copy for list

source§

impl Copy for local

source§

impl Copy for loop

source§

impl Copy for lower

source§

impl Copy for mem_info

source§

impl Copy for memory

source§

impl Copy for module

source§

impl Copy for modulecode

source§

impl Copy for mut

source§

impl Copy for nan_arithmetic

source§

impl Copy for nan_canonical

source§

impl Copy for needed

source§

impl Copy for noexn

source§

impl Copy for noextern

source§

impl Copy for nofunc

source§

impl Copy for none

source§

impl Copy for null

source§

impl Copy for nullexnref

source§

impl Copy for nullexternref

source§

impl Copy for nullfuncref

source§

impl Copy for nullref

source§

impl Copy for offset

source§

impl Copy for wast::kw::option

source§

impl Copy for outer

source§

impl Copy for own

source§

impl Copy for pagesize

source§

impl Copy for param

source§

impl Copy for parent

source§

impl Copy for passive

source§

impl Copy for post_return

source§

impl Copy for processed_by

source§

impl Copy for quote

source§

impl Copy for realloc

source§

impl Copy for rec

source§

impl Copy for record

source§

impl Copy for ref

source§

impl Copy for ref_func

source§

impl Copy for ref_null

source§

impl Copy for refines

source§

impl Copy for register

source§

impl Copy for rep

source§

impl Copy for resource

source§

impl Copy for resource_drop

source§

impl Copy for resource_new

source§

impl Copy for resource_rep

source§

impl Copy for result

source§

impl Copy for s8

source§

impl Copy for s16

source§

impl Copy for s32

source§

impl Copy for s64

source§

impl Copy for sdk

source§

impl Copy for seq_cst

source§

impl Copy for shared

source§

impl Copy for start

source§

impl Copy for string

source§

impl Copy for string_latin1_utf16

source§

impl Copy for string_utf8

source§

impl Copy for string_utf16

source§

impl Copy for struct

source§

impl Copy for structref

source§

impl Copy for sub

source§

impl Copy for table

source§

impl Copy for tag

source§

impl Copy for then

source§

impl Copy for thread

source§

impl Copy for true_

source§

impl Copy for try

source§

impl Copy for tuple

source§

impl Copy for type

source§

impl Copy for u8

source§

impl Copy for u16

source§

impl Copy for u32

source§

impl Copy for u64

source§

impl Copy for v128

source§

impl Copy for value

source§

impl Copy for variant

source§

impl Copy for wait

source§

impl Copy for with

source§

impl Copy for IntegerKind

source§

impl Copy for wast::lexer::Token

source§

impl Copy for wast::token::F32

source§

impl Copy for wast::token::F64

source§

impl Copy for wast::token::Span

source§

impl Copy for Const

source§

impl Copy for Mut

source§

impl Copy for NullPtrError

source§

impl Copy for SliceTokensLocation

source§

impl Copy for StrTokensLocation

1.33.0 · source§

impl Copy for PhantomPinned

source§

impl Copy for Assume

1.34.0 · source§

impl Copy for gsails::prelude::num::TryFromIntError

1.0.0 · source§

impl Copy for RangeFull

source§

impl Copy for gsails::prelude::ptr::Alignment

1.0.0 · source§

impl Copy for Utf8Error

source§

impl Copy for gsails::prelude::ActorId

source§

impl Copy for gsails::prelude::CodeId

source§

impl Copy for H128

source§

impl Copy for H160

source§

impl Copy for H256

source§

impl Copy for H384

source§

impl Copy for H512

source§

impl Copy for H768

source§

impl Copy for gsails::prelude::MessageId

source§

impl Copy for NonZeroU256

source§

impl Copy for gsails::prelude::U128

source§

impl Copy for U256

source§

impl Copy for U512

1.36.0 · source§

impl Copy for RawWakerVTable

1.3.0 · source§

impl Copy for gsails::prelude::time::Duration

source§

impl Copy for __c_anonymous_ptrace_syscall_info_data

source§

impl Copy for __c_anonymous_ifc_ifcu

source§

impl Copy for __c_anonymous_ifr_ifru

source§

impl Copy for __c_anonymous_sockaddr_can_can_addr

source§

impl Copy for Elf_Dyn_Union

source§

impl Copy for __kernel_sockaddr_storage__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields

source§

impl Copy for linux_raw_sys::general::__sifields

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::fscrypt_get_policy_ex_arg__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::fscrypt_get_policy_ex_arg__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::fscrypt_key_specifier__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::fscrypt_key_specifier__bindgen_ty_1

source§

impl Copy for in6_addr__bindgen_ty_1

source§

impl Copy for io_uring_restriction__bindgen_ty_1

source§

impl Copy for io_uring_sqe__bindgen_ty_1

source§

impl Copy for io_uring_sqe__bindgen_ty_2

source§

impl Copy for io_uring_sqe__bindgen_ty_3

source§

impl Copy for io_uring_sqe__bindgen_ty_4

source§

impl Copy for io_uring_sqe__bindgen_ty_5

source§

impl Copy for linux_raw_sys::general::sigevent__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::sigevent__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::siginfo__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::siginfo__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::sigval

source§

impl Copy for linux_raw_sys::general::sigval

source§

impl Copy for tcp_word_hdr

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1

source§

impl Copy for SockaddrStorage

source§

impl Copy for vec128_storage

source§

impl Copy for vec256_storage

source§

impl Copy for vec512_storage

source§

impl Copy for VMFunctionEnvironment

source§

impl Copy for ValRaw

1.0.0 · source§

impl<'a> Copy for Component<'a>

1.0.0 · source§

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

source§

impl<'a> Copy for ControlMessage<'a>

source§

impl<'a> Copy for IpAddrRef<'a>

source§

impl<'a> Copy for SubjectNameRef<'a>

source§

impl<'a> Copy for serde::de::Unexpected<'a>

source§

impl<'a> Copy for OpaqueDigestItemId<'a>

source§

impl<'a> Copy for NodeHandle<'a>

source§

impl<'a> Copy for Alias<'a>

source§

impl<'a> Copy for Elements<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::data::DataKind<'a>

source§

impl<'a> Copy for SectionCode<'a>

source§

impl<'a> Copy for wasmparser::readers::core::data::DataKind<'a>

source§

impl<'a> Copy for wasmparser::readers::data_section::DataKind<'a>

source§

impl<'a> Copy for Name<'a>

source§

impl<'a> Copy for wast::core::types::HeapType<'a>

source§

impl<'a> Copy for wast::core::types::StorageType<'a>

source§

impl<'a> Copy for wast::core::types::ValType<'a>

source§

impl<'a> Copy for Index<'a>

1.0.0 · source§

impl<'a> Copy for Arguments<'a>

1.36.0 · source§

impl<'a> Copy for IoSlice<'a>

1.28.0 · source§

impl<'a> Copy for Ancestors<'a>

1.0.0 · source§

impl<'a> Copy for PrefixComponent<'a>

source§

impl<'a> Copy for HexDisplay<'a>

source§

impl<'a> Copy for FlagsOrIsa<'a>

source§

impl<'a> Copy for PredicateView<'a>

source§

impl<'a> Copy for AnyRef<'a>

source§

impl<'a> Copy for BitStringRef<'a>

source§

impl<'a> Copy for Ia5StringRef<'a>

source§

impl<'a> Copy for IntRef<'a>

source§

impl<'a> Copy for UintRef<'a>

source§

impl<'a> Copy for OctetStringRef<'a>

source§

impl<'a> Copy for PrintableStringRef<'a>

source§

impl<'a> Copy for TeletexStringRef<'a>

source§

impl<'a> Copy for Utf8StringRef<'a>

source§

impl<'a> Copy for VideotexStringRef<'a>

source§

impl<'a> Copy for Parse<'a>

source§

impl<'a> Copy for httparse::Header<'a>

source§

impl<'a> Copy for jsonrpsee_types::params::ParamsSequence<'a>

source§

impl<'a> Copy for jsonrpsee_types::params::ParamsSequence<'a>

source§

impl<'a> Copy for CmsgIterator<'a>

source§

impl<'a> Copy for Positive<'a>

source§

impl<'a> Copy for DnsNameRef<'a>

source§

impl<'a> Copy for BitsIter<'a>

source§

impl<'a> Copy for scale_decode::Field<'a>

source§

impl<'a> Copy for scale_encode::Field<'a>

source§

impl<'a> Copy for scale_value::at::Location<'a>

source§

impl<'a> Copy for RequestHeaders<'a>

source§

impl<'a> Copy for PalletMetadata<'a>

source§

impl<'a> Copy for RuntimeApiMetadata<'a>

source§

impl<'a> Copy for NibbleSlice<'a>

source§

impl<'a> Copy for Input<'a>

source§

impl<'a> Copy for url::ParseOptions<'a>

source§

impl<'a> Copy for RawSection<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::component::imports::ComponentImport<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::exports::Export<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::globals::Global<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::imports::Import<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::init::ConstExpr<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::names::Naming<'a>

source§

impl<'a> Copy for wasmparser_nostd::readers::core::producers::ProducersFieldValue<'a>

source§

impl<'a> Copy for wasmparser_nostd::validator::types::TypesRef<'a>

source§

impl<'a> Copy for wasmparser::primitives::Naming<'a>

source§

impl<'a> Copy for FunctionBody<'a>

source§

impl<'a> Copy for wasmparser::readers::component::imports::ComponentImport<'a>

source§

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

source§

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

source§

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

source§

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

source§

impl<'a> Copy for wasmparser::readers::core::names::Naming<'a>

source§

impl<'a> Copy for wasmparser::readers::core::producers::ProducersFieldValue<'a>

source§

impl<'a> Copy for Data<'a>

source§

impl<'a> Copy for ElementItems<'a>

source§

impl<'a> Copy for wasmparser::readers::export_section::Export<'a>

source§

impl<'a> Copy for wasmparser::readers::global_section::Global<'a>

source§

impl<'a> Copy for wasmparser::readers::import_section::Import<'a>

source§

impl<'a> Copy for InitExpr<'a>

source§

impl<'a> Copy for InstanceArg<'a>

source§

impl<'a> Copy for IndirectNameMap<'a>

source§

impl<'a> Copy for IndirectNaming<'a>

source§

impl<'a> Copy for NameMap<'a>

source§

impl<'a> Copy for SingleName<'a>

source§

impl<'a> Copy for ProducersField<'a>

source§

impl<'a> Copy for wasmparser::readers::producers_section::ProducersFieldValue<'a>

source§

impl<'a> Copy for wasmparser::validator::types::TypesRef<'a>

source§

impl<'a> Copy for ComponentExternName<'a>

source§

impl<'a> Copy for InlineImport<'a>

source§

impl<'a> Copy for wast::core::types::GlobalType<'a>

source§

impl<'a> Copy for wast::core::types::RefType<'a>

source§

impl<'a> Copy for wast::core::types::TableType<'a>

source§

impl<'a> Copy for Cursor<'a>

source§

impl<'a> Copy for Parser<'a>

source§

impl<'a> Copy for wast::token::Id<'a>

source§

impl<'a> Copy for NameAnnotation<'a>

1.10.0 · source§

impl<'a> Copy for gsails::prelude::panic::Location<'a>

source§

impl<'a, 's, S> Copy for RecvMsg<'a, 's, S>
where S: Copy,

source§

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

source§

impl<'a, R> Copy for object::read::read_cache::ReadCacheRange<'a, R>
where R: Read + Seek,

source§

impl<'a, R> Copy for object::read::read_cache::ReadCacheRange<'a, R>
where R: ReadCacheOps,

source§

impl<'a, Size> Copy for Coordinates<'a, Size>
where Size: Copy + ModulusSize,

source§

impl<'a, T> Copy for ContextSpecificRef<'a, T>
where T: Copy,

source§

impl<'a, T> Copy for StoreContext<'a, T>
where T: Copy,

source§

impl<'a, T> Copy for CompactRef<'a, T>
where T: Copy,

source§

impl<'a, T> Copy for Slice<'a, T>
where T: Copy,

source§

impl<'a, T> Copy for Symbol<'a, T>
where T: Copy + 'a,

source§

impl<'a, T> Copy for zerocopy::util::ptr::Ptr<'a, T>
where T: ?Sized,

source§

impl<'a, T, O> Copy for IterOnes<'a, T, O>
where T: Copy + 'a + BitStore, O: Copy + BitOrder,

source§

impl<'a, T, O> Copy for IterZeros<'a, T, O>
where T: Copy + 'a + BitStore, O: Copy + BitOrder,

source§

impl<'a, T, S> Copy for BoundedSlice<'a, T, S>

source§

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

source§

impl<'abbrev, 'entry, 'unit, R> Copy for gimli::read::unit::AttrsIter<'abbrev, 'entry, 'unit, R>
where R: Copy + Reader,

source§

impl<'abbrev, 'entry, 'unit, R> Copy for gimli::read::unit::AttrsIter<'abbrev, 'entry, 'unit, R>
where R: Copy + Reader,

source§

impl<'abbrev, 'entry, 'unit, R> Copy for gimli::read::unit::AttrsIter<'abbrev, 'entry, 'unit, R>
where R: Copy + Reader,

source§

impl<'buf> Copy for AllPreallocated<'buf>

source§

impl<'buf> Copy for SignOnlyPreallocated<'buf>

source§

impl<'buf> Copy for VerifyOnlyPreallocated<'buf>

source§

impl<'data> Copy for ImportName<'data>

source§

impl<'data> Copy for ExportTarget<'data>

source§

impl<'data> Copy for object::read::pe::import::Import<'data>

source§

impl<'data> Copy for ArchiveSymbol<'data>

source§

impl<'data> Copy for object::read::coff::section::SectionTable<'data>

source§

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

source§

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

source§

impl<'data> Copy for DataDirectories<'data>

source§

impl<'data> Copy for object::read::pe::export::Export<'data>

source§

impl<'data> Copy for RelocationBlockIterator<'data>

source§

impl<'data> Copy for ResourceDirectory<'data>

source§

impl<'data> Copy for RichHeaderInfo<'data>

source§

impl<'data> Copy for object::read::CodeView<'data>

source§

impl<'data> Copy for object::read::CodeView<'data>

source§

impl<'data> Copy for object::read::CompressedData<'data>

source§

impl<'data> Copy for object::read::CompressedData<'data>

source§

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

source§

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

source§

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

source§

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

source§

impl<'data> Copy for object::read::ObjectMapEntry<'data>

source§

impl<'data> Copy for object::read::ObjectMapEntry<'data>

source§

impl<'data> Copy for ObjectMapFile<'data>

source§

impl<'data> Copy for object::read::SymbolMapName<'data>

source§

impl<'data> Copy for object::read::SymbolMapName<'data>

source§

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

source§

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

source§

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

source§

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

source§

impl<'data, 'file, Elf, R> Copy for object::read::elf::symbol::ElfSymbolTable<'data, 'file, Elf, R>
where 'data: 'file, Elf: Copy + FileHeader, R: Copy + ReadRef<'data>, <Elf as FileHeader>::Endian: Copy,

source§

impl<'data, 'file, Elf, R> Copy for object::read::elf::symbol::ElfSymbolTable<'data, 'file, Elf, R>
where Elf: Copy + FileHeader, R: Copy + ReadRef<'data>, <Elf as FileHeader>::Endian: Copy,

source§

impl<'data, 'file, Mach, R> Copy for MachOSymbol<'data, 'file, Mach, R>
where Mach: Copy + MachHeader, R: Copy + ReadRef<'data>, <Mach as MachHeader>::Nlist: Copy,

source§

impl<'data, 'file, Mach, R> Copy for MachOSymbolTable<'data, 'file, Mach, R>
where Mach: Copy + MachHeader, R: Copy + ReadRef<'data>,

source§

impl<'data, 'file, R, Coff> Copy for CoffSymbol<'data, 'file, R, Coff>
where R: Copy + ReadRef<'data>, Coff: Copy + CoffHeader, <Coff as CoffHeader>::ImageSymbol: Copy,

source§

impl<'data, 'file, R, Coff> Copy for CoffSymbolTable<'data, 'file, R, Coff>
where R: Copy + ReadRef<'data>, Coff: Copy + CoffHeader,

source§

impl<'data, 'file, Xcoff, R> Copy for XcoffSymbol<'data, 'file, Xcoff, R>
where Xcoff: Copy + FileHeader, R: Copy + ReadRef<'data>, <Xcoff as FileHeader>::Symbol: Copy,

source§

impl<'data, 'file, Xcoff, R> Copy for XcoffSymbolTable<'data, 'file, Xcoff, R>
where Xcoff: Copy + FileHeader, R: Copy + ReadRef<'data>,

source§

impl<'data, E> Copy for DyldSubCacheSlice<'data, E>
where E: Copy + Endian,

source§

impl<'data, E> Copy for LoadCommandVariant<'data, E>
where E: Copy + Endian,

source§

impl<'data, E> Copy for LoadCommandData<'data, E>
where E: Copy + Endian,

source§

impl<'data, E> Copy for LoadCommandIterator<'data, E>
where E: Copy + Endian,

source§

impl<'data, Elf, R> Copy for object::read::elf::section::SectionTable<'data, Elf, R>
where Elf: Copy + FileHeader, R: Copy + ReadRef<'data>, <Elf as FileHeader>::SectionHeader: Copy,

source§

impl<'data, Elf, R> Copy for object::read::elf::section::SectionTable<'data, Elf, R>
where Elf: Copy + FileHeader, R: Copy + ReadRef<'data>, <Elf as FileHeader>::SectionHeader: Copy,

source§

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

source§

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

source§

impl<'data, Mach, R> Copy for object::read::macho::symbol::SymbolTable<'data, Mach, R>
where Mach: Copy + MachHeader, R: Copy + ReadRef<'data>, <Mach as MachHeader>::Nlist: Copy,

source§

impl<'data, R> Copy for ArchiveFile<'data, R>
where R: Copy + ReadRef<'data>,

source§

impl<'data, R> Copy for object::read::util::StringTable<'data, R>
where R: Copy + ReadRef<'data>,

source§

impl<'data, R> Copy for object::read::util::StringTable<'data, R>
where R: Copy + ReadRef<'data>,

source§

impl<'data, Xcoff> Copy for object::read::xcoff::section::SectionTable<'data, Xcoff>
where Xcoff: Copy + FileHeader, <Xcoff as FileHeader>::SectionHeader: Copy,

source§

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

source§

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

source§

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

1.63.0 · source§

impl<'fd> Copy for BorrowedFd<'fd>

source§

impl<'h> Copy for regex::regex::bytes::Match<'h>

source§

impl<'h> Copy for regex::regex::string::Match<'h>

source§

impl<'input, Endian> Copy for gimli::read::endian_slice::EndianSlice<'input, Endian>
where Endian: Copy + Endianity,

source§

impl<'input, Endian> Copy for gimli::read::endian_slice::EndianSlice<'input, Endian>
where Endian: Copy + Endianity,

source§

impl<'input, Endian> Copy for gimli::read::endian_slice::EndianSlice<'input, Endian>
where Endian: Copy + Endianity,

source§

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

source§

impl<A> Copy for arrayvec::array_string::ArrayString<A>
where A: Copy + Array<Item = u8>, <A as Array>::Index: Copy,

source§

impl<A> Copy for ExtendedGcd<A>
where A: Copy,

source§

impl<A> Copy for Aad<A>
where A: Copy,

source§

impl<A> Copy for ArrayVec<A>
where A: Array + Copy, <A as Array>::Item: Copy,

source§

impl<A, B> Copy for EitherWriter<A, B>
where A: Copy, B: Copy,

source§

impl<A, B> Copy for OrElse<A, B>
where A: Copy, B: Copy,

source§

impl<A, B> Copy for Tee<A, B>
where A: Copy, B: Copy,

source§

impl<A, O> Copy for BitArray<A, O>
where O: BitOrder, A: BitViewSized + Copy,

source§

impl<B> Copy for Limited<B>
where B: Copy,

source§

impl<B> Copy for ring::agreement::UnparsedPublicKey<B>
where B: Copy,

source§

impl<B> Copy for PublicKeyComponents<B>
where B: Copy,

source§

impl<B> Copy for ring::signature::UnparsedPublicKey<B>
where B: Copy,

1.55.0 · source§

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

source§

impl<B, F> Copy for MapData<B, F>
where B: Copy, F: Copy,

source§

impl<B, F> Copy for MapErr<B, F>
where B: Copy, F: Copy,

source§

impl<Balance> Copy for WithdrawConsequence<Balance>
where Balance: Copy,

source§

impl<Balance> Copy for NodeLock<Balance>
where Balance: Copy,

source§

impl<Balance> Copy for Stake<Balance>
where Balance: Copy,

source§

impl<Balance, Gas> Copy for gear_common::GasMultiplier<Balance, Gas>
where Balance: Copy, Gas: Copy,

source§

impl<Block> Copy for BlockId<Block>
where Block: Block,

source§

impl<BlockNumber> Copy for DispatchTime<BlockNumber>
where BlockNumber: Copy,

source§

impl<C> Copy for ecdsa::Signature<C>

source§

impl<C> Copy for SignatureWithOid<C>

source§

impl<C> Copy for VerifyingKey<C>

source§

impl<C> Copy for elliptic_curve::public_key::PublicKey<C>
where C: CurveArithmetic,

source§

impl<C> Copy for NonZeroScalar<C>
where C: CurveArithmetic,

source§

impl<C> Copy for ScalarPrimitive<C>
where C: Copy + Curve, <C as Curve>::Uint: Copy,

source§

impl<D> Copy for http_body::empty::Empty<D>

source§

impl<D> Copy for http_body::full::Full<D>
where D: Copy,

source§

impl<D> Copy for libsecp256k1::SharedSecret<D>
where D: Copy + Digest, GenericArray<u8, <D as Digest>::OutputSize>: Copy,

source§

impl<Dyn> Copy for ptr_meta::DynMetadata<Dyn>
where Dyn: ?Sized,

source§

impl<Dyn> Copy for gsails::prelude::ptr::DynMetadata<Dyn>
where Dyn: ?Sized,

source§

impl<E> Copy for object::elf::CompressionHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::CompressionHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::CompressionHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::CompressionHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Dyn32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Dyn32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Dyn64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Dyn64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::FileHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::FileHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::FileHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::FileHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::GnuHashHeader<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::GnuHashHeader<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::HashHeader<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::HashHeader<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::NoteHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::NoteHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::NoteHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::NoteHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::ProgramHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::ProgramHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::ProgramHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::ProgramHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rel32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rel32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rel64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rel64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rela32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rela32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rela64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Rela64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::SectionHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::SectionHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::SectionHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::SectionHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Sym32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Sym32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Sym64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Sym64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Syminfo32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Syminfo32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Syminfo64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Syminfo64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Verdaux<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Verdaux<E>
where E: Copy + Endian,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

impl<E> Copy for object::elf::Versym<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::elf::Versym<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::I16<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::I32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::I64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::U16<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::U32<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::aligned::U64<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I16Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I16Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I32Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I32Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I64Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::I64Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U16Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U16Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U32Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U32Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U64Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::endian::U64Bytes<E>
where E: Copy + Endian,

source§

impl<E> Copy for BuildToolVersion<E>
where E: Copy + Endian,

source§

impl<E> Copy for BuildVersionCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for DataInCodeEntry<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldCacheHeader<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldCacheImageInfo<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldCacheMappingInfo<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldInfoCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldSubCacheEntryV1<E>
where E: Copy + Endian,

source§

impl<E> Copy for DyldSubCacheEntryV2<E>
where E: Copy + Endian,

source§

impl<E> Copy for Dylib<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylibCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylibModule32<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylibModule64<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylibReference<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylibTableOfContents<E>
where E: Copy + Endian,

source§

impl<E> Copy for DylinkerCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for DysymtabCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for EncryptionInfoCommand32<E>
where E: Copy + Endian,

source§

impl<E> Copy for EncryptionInfoCommand64<E>
where E: Copy + Endian,

source§

impl<E> Copy for EntryPointCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for FilesetEntryCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for FvmfileCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for Fvmlib<E>
where E: Copy + Endian,

source§

impl<E> Copy for FvmlibCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for IdentCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for LcStr<E>
where E: Copy + Endian,

source§

impl<E> Copy for LinkeditDataCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for LinkerOptionCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for LoadCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for MachHeader32<E>
where E: Copy + Endian,

source§

impl<E> Copy for MachHeader64<E>
where E: Copy + Endian,

source§

impl<E> Copy for Nlist32<E>
where E: Copy + Endian,

source§

impl<E> Copy for Nlist64<E>
where E: Copy + Endian,

source§

impl<E> Copy for NoteCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for PrebindCksumCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for PreboundDylibCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for object::macho::Relocation<E>
where E: Copy + Endian,

source§

impl<E> Copy for RoutinesCommand32<E>
where E: Copy + Endian,

source§

impl<E> Copy for RoutinesCommand64<E>
where E: Copy + Endian,

source§

impl<E> Copy for RpathCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for Section32<E>
where E: Copy + Endian,

source§

impl<E> Copy for Section64<E>
where E: Copy + Endian,

source§

impl<E> Copy for SegmentCommand32<E>
where E: Copy + Endian,

source§

impl<E> Copy for SegmentCommand64<E>
where E: Copy + Endian,

source§

impl<E> Copy for SourceVersionCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SubClientCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SubFrameworkCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SubLibraryCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SubUmbrellaCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SymsegCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for SymtabCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for ThreadCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for TwolevelHint<E>
where E: Copy + Endian,

source§

impl<E> Copy for TwolevelHintsCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for UuidCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for VersionMinCommand<E>
where E: Copy + Endian,

source§

impl<E> Copy for BoolDeserializer<E>

source§

impl<E> Copy for CharDeserializer<E>

source§

impl<E> Copy for F32Deserializer<E>

source§

impl<E> Copy for F64Deserializer<E>

source§

impl<E> Copy for I8Deserializer<E>

source§

impl<E> Copy for I16Deserializer<E>

source§

impl<E> Copy for I32Deserializer<E>

source§

impl<E> Copy for I64Deserializer<E>

source§

impl<E> Copy for I128Deserializer<E>

source§

impl<E> Copy for IsizeDeserializer<E>

source§

impl<E> Copy for U8Deserializer<E>

source§

impl<E> Copy for U16Deserializer<E>

source§

impl<E> Copy for U32Deserializer<E>

source§

impl<E> Copy for U64Deserializer<E>

source§

impl<E> Copy for U128Deserializer<E>

source§

impl<E> Copy for UnitDeserializer<E>

source§

impl<E> Copy for UsizeDeserializer<E>

source§

impl<Endian, T> Copy for EndianReader<Endian, T>
where Endian: Copy + Endianity, T: Copy + CloneStableDeref<Target = [u8]> + Debug,

source§

impl<Enum> Copy for TryFromPrimitiveError<Enum>
where Enum: TryFromPrimitive,

source§

impl<F32, F64> Copy for wabt::script::Value<F32, F64>
where F32: Copy, F64: Copy,

1.28.0 · source§

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

source§

impl<GuardIdx, EntityIdx> Copy for GuardedEntity<GuardIdx, EntityIdx>
where GuardIdx: Copy, EntityIdx: Copy,

source§

impl<HO> Copy for ChildReference<HO>
where HO: Copy,

source§

impl<I> Copy for InputError<I>
where I: Copy + Clone,

source§

impl<I> Copy for Located<I>
where I: Copy,

source§

impl<I> Copy for Partial<I>
where I: Copy,

source§

impl<I, S> Copy for Stateful<I, S>
where I: Copy, S: Copy,

source§

impl<Idx> Copy for core::range::Range<Idx>
where Idx: Copy,

source§

impl<Idx> Copy for RangeFrom<Idx>
where Idx: Copy,

source§

impl<Idx> Copy for RangeInclusive<Idx>
where Idx: Copy,

1.0.0 · source§

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

1.26.0 · source§

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

source§

impl<Info> Copy for DispatchErrorWithPostInfo<Info>
where Info: Copy + Eq + PartialEq + Clone + Encode + Decode + Printable,

source§

impl<Inner> Copy for Frozen<Inner>
where Inner: Copy + Mutability,

source§

impl<K> Copy for schnorrkel::derive::ExtendedKey<K>
where K: Copy,

source§

impl<K> Copy for schnorrkel::derive::ExtendedKey<K>
where K: Copy,

source§

impl<L, R> Copy for Either<L, R>
where L: Copy, R: Copy,

source§

impl<M> Copy for WithMaxLevel<M>
where M: Copy,

source§

impl<M> Copy for WithMinLevel<M>
where M: Copy,

source§

impl<M, F> Copy for WithFilter<M, F>
where M: Copy, F: Copy,

source§

impl<M, R> Copy for gsdk::metadata::generated::runtime_types::runtime_types::gear_common::gas_provider::node::GasNodeId<M, R>
where M: Copy, R: Copy,

source§

impl<M, T> Copy for wyz::comu::Address<M, T>
where M: Mutability, T: ?Sized,

source§

impl<M, T, O> Copy for BitPtr<M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

source§

impl<MOD, const LIMBS: usize> Copy for Residue<MOD, LIMBS>
where MOD: Copy + ResidueParams<LIMBS>,

source§

impl<NI> Copy for Avx2Machine<NI>
where NI: Copy,

source§

impl<O, E> Copy for WithOtherEndian<O, E>
where O: Copy + Options, E: Copy + BincodeByteOrder,

source§

impl<O, I> Copy for WithOtherIntEncoding<O, I>
where O: Copy + Options, I: Copy + IntEncoding,

source§

impl<O, L> Copy for WithOtherLimit<O, L>
where O: Copy + Options, L: Copy + SizeLimit,

source§

impl<O, T> Copy for WithOtherTrailing<O, T>
where O: Copy + Options, T: Copy + TrailingBytes,

source§

impl<Offset> Copy for gimli::read::unit::UnitType<Offset>
where Offset: Copy + ReaderOffset,

source§

impl<Offset> Copy for gimli::read::unit::UnitType<Offset>
where Offset: Copy + ReaderOffset,

source§

impl<Offset> Copy for gimli::read::unit::UnitType<Offset>
where Offset: Copy + ReaderOffset,

source§

impl<P> Copy for NonIdentity<P>
where P: Copy,

source§

impl<P> Copy for VMOffsets<P>
where P: Copy,

source§

impl<P> Copy for VMOffsetsFields<P>
where P: Copy,

source§

impl<Params> Copy for AlgorithmIdentifier<Params>
where Params: Copy,

source§

impl<Params, Results> Copy for gwasmi::func::typed_func::TypedFunc<Params, Results>

source§

impl<Params, Results> Copy for wasmtime::func::typed::TypedFunc<Params, Results>

1.33.0 · source§

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

source§

impl<Public, Private> Copy for KeyPairComponents<Public, Private>
where Public: Copy, Private: Copy,

source§

impl<R> Copy for BitEnd<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for BitIdx<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for BitIdxError<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for BitMask<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for BitPos<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for BitSel<R>
where R: Copy + BitRegister,

source§

impl<R> Copy for gimli::read::abbrev::DebugAbbrev<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::abbrev::DebugAbbrev<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::abbrev::DebugAbbrev<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::addr::DebugAddr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::addr::DebugAddr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::addr::DebugAddr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::aranges::DebugAranges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::aranges::DebugAranges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::aranges::DebugAranges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::cfi::DebugFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::DebugFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::DebugFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrame<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrameHdr<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrameHdr<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::cfi::EhFrameHdr<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::index::DebugCuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::index::DebugCuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::index::DebugCuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::index::DebugTuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::index::DebugTuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::index::DebugTuIndex<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::line::DebugLine<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::line::DebugLine<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::line::DebugLine<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLoc<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLoc<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLoc<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLocLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLocLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::DebugLocLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::LocationListEntry<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::loclists::LocationListEntry<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::loclists::LocationListEntry<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::loclists::LocationLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::LocationLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::loclists::LocationLists<R>
where R: Copy,

source§

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

source§

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

source§

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

source§

impl<R> Copy for gimli::read::op::OperationIter<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::op::OperationIter<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::op::OperationIter<R>
where R: Copy + Reader,

source§

impl<R> Copy for gimli::read::rnglists::DebugRanges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::DebugRanges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::DebugRanges<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::DebugRngLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::DebugRngLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::DebugRngLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::RangeLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::RangeLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::rnglists::RangeLists<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugLineStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugLineStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugLineStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStr<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStrOffsets<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStrOffsets<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::str::DebugStrOffsets<R>
where R: Copy,

source§

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

source§

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

source§

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

source§

impl<R> Copy for gimli::read::unit::DebugInfo<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::unit::DebugInfo<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::unit::DebugInfo<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::unit::DebugTypes<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::unit::DebugTypes<R>
where R: Copy,

source§

impl<R> Copy for gimli::read::unit::DebugTypes<R>
where R: Copy,

source§

impl<R> Copy for Writable<R>
where R: Copy,

source§

impl<R, Offset> Copy for gimli::read::line::LineInstruction<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

impl<R, Offset> Copy for gimli::read::line::LineInstruction<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

impl<R, Offset> Copy for gimli::read::line::LineInstruction<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

impl<R, Offset> Copy for gimli::read::line::FileEntry<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

impl<R, Offset> Copy for gimli::read::line::FileEntry<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

impl<R, Offset> Copy for gimli::read::line::FileEntry<R, Offset>
where R: Copy + Reader<Offset = Offset>, Offset: Copy + ReaderOffset,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

impl<Return> Copy for CoroutineTrapHandler<Return>
where Return: Copy,

source§

impl<S3, S4, NI> Copy for SseMachine<S3, S4, NI>
where S3: Copy, S4: Copy, NI: Copy,

source§

impl<Section> Copy for object::common::SymbolFlags<Section>
where Section: Copy,

source§

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

source§

impl<Size> Copy for EncodedPoint<Size>

source§

impl<Storage> Copy for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>
where Storage: Copy,

source§

impl<Storage> Copy for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>
where Storage: Copy,

1.0.0 · source§

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

1.0.0 · source§

impl<T> Copy for std::sync::mpsc::TrySendError<T>
where T: Copy,

source§

impl<T> Copy for BitPtrError<T>
where T: Copy + BitStore,

source§

impl<T> Copy for BitSpanError<T>
where T: Copy + BitStore,

source§

impl<T> Copy for Inheritable<T>
where T: Copy,

source§

impl<T> Copy for LocalResult<T>
where T: Copy,

source§

impl<T> Copy for Steal<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::UnitSectionOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::UnitSectionOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::UnitSectionOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::read::op::DieReference<T>
where T: Copy,

source§

impl<T> Copy for gimli::read::op::DieReference<T>
where T: Copy,

source§

impl<T> Copy for gimli::read::op::DieReference<T>
where T: Copy,

source§

impl<T> Copy for httparse::Status<T>
where T: Copy,

source§

impl<T> Copy for ArchivedOption<T>
where T: Copy,

source§

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

source§

impl<T> Copy for tokio::sync::mpsc::error::TrySendError<T>
where T: Copy,

source§

impl<T> Copy for NanPattern<T>
where T: Copy,

1.17.0 · source§

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

1.36.0 · source§

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

1.0.0 · source§

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

1.0.0 · source§

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

1.0.0 · source§

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

Shared references can be copied, but mutable references cannot!

1.19.0 · source§

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

1.0.0 · source§

impl<T> Copy for std::sync::mpsc::SendError<T>
where T: Copy,

source§

impl<T> Copy for arrayvec::errors::CapacityError<T>
where T: Copy,

source§

impl<T> Copy for arrayvec::errors::CapacityError<T>
where T: Copy,

source§

impl<T> Copy for MisalignError<T>
where T: Copy,

source§

impl<T> Copy for cranelift_entity::list::EntityList<T>

source§

impl<T> Copy for cranelift_entity::list::EntityList<T>

source§

impl<T> Copy for cranelift_entity::packed_option::PackedOption<T>
where T: Copy + ReservedValue,

source§

impl<T> Copy for cranelift_entity::packed_option::PackedOption<T>
where T: Copy + ReservedValue,

source§

impl<T> Copy for Shared<'_, T>
where T: Pointable + ?Sized,

source§

impl<T> Copy for CachePadded<T>
where T: Copy,

source§

impl<T> Copy for Checked<T>
where T: Copy,

source§

impl<T> Copy for crypto_bigint::non_zero::NonZero<T>
where T: Copy + Zero,

source§

impl<T> Copy for crypto_bigint::wrapping::Wrapping<T>
where T: Copy,

source§

impl<T> Copy for ContextSpecific<T>
where T: Copy,

source§

impl<T> Copy for EnumSet<T>
where T: Copy + EnumSetType, <T as EnumSetTypePrivate>::Repr: Copy,

source§

impl<T> Copy for AllowStdIo<T>
where T: Copy,

source§

impl<T> Copy for CostOf<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAbbrevOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAbbrevOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAbbrevOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugAddrIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugArangesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugArangesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugArangesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugInfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugInfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugInfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLineStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugLocListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacinfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacinfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacinfoOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacroOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacroOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugMacroOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugRngListsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsBase<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugStrOffsetsIndex<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugTypesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugTypesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::DebugTypesOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::EhFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::EhFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::EhFrameOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::LocationListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::LocationListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::LocationListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RangeListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RangeListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RangeListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RawRangeListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RawRangeListsOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::common::RawRangeListsOffset<T>
where T: Copy,

source§

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

source§

impl<T> Copy for gimli::read::UnitOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::read::UnitOffset<T>
where T: Copy,

source§

impl<T> Copy for gimli::read::UnitOffset<T>
where T: Copy,

source§

impl<T> Copy for __BindgenUnionField<T>

source§

impl<T> Copy for IoVec<T>
where T: Copy,

source§

impl<T> Copy for NoHashHasher<T>

source§

impl<T> Copy for TryFromBigIntError<T>
where T: Copy,

source§

impl<T> Copy for Ratio<T>
where T: Copy,

source§

impl<T> Copy for Interval<T>
where T: Copy,

source§

impl<T> Copy for IntervalIterator<T>
where T: Copy,

source§

impl<T> Copy for OptionBound<T>
where T: Copy,

source§

impl<T> Copy for parity_scale_codec::compact::Compact<T>
where T: Copy,

source§

impl<T> Copy for regalloc::data_structures::Range<T>
where T: Copy,

source§

impl<T> Copy for UntrackedSymbol<T>
where T: Copy,

source§

impl<T> Copy for sp_wasm_interface_common::Pointer<T>
where T: Copy + PointerType,

source§

impl<T> Copy for sp_wasm_interface::Pointer<T>
where T: Copy + PointerType,

source§

impl<T> Copy for CtOption<T>
where T: Copy,

source§

impl<T> Copy for Compat<T>
where T: Copy,

source§

impl<T> Copy for tokio::sync::mpsc::error::SendError<T>
where T: Copy,

source§

impl<T> Copy for tokio::sync::watch::error::SendError<T>
where T: Copy,

source§

impl<T> Copy for wasmer_types::entity::packed_option::PackedOption<T>
where T: Copy + ReservedValue,

source§

impl<T> Copy for Caseless<T>
where T: Copy,

source§

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

1.0.0 · source§

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

1.21.0 · source§

impl<T> Copy for Discriminant<T>

1.20.0 · source§

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

1.28.0 · source§

impl<T> Copy for gsails::prelude::num::NonZero<T>

1.74.0 · source§

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

1.0.0 · source§

impl<T> Copy for gsails::prelude::num::Wrapping<T>
where T: Copy,

1.25.0 · source§

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

1.36.0 · source§

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

1.0.0 · source§

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

source§

impl<T, N> Copy for generic_array::GenericArray<T, N>
where T: Copy, N: ArrayLength<T>, <N as ArrayLength<T>>::ArrayType: Copy,

source§

impl<T, N> Copy for generic_array::GenericArray<T, N>
where T: Copy, N: ArrayLength<T>, <N as ArrayLength<T>>::ArrayType: Copy,

source§

impl<T, O> Copy for BitDomain<'_, Const, T, O>
where T: BitStore, O: BitOrder,

source§

impl<T, O> Copy for bitvec::domain::Domain<'_, Const, T, O>
where T: BitStore, O: BitOrder,

source§

impl<T, O> Copy for PartialElement<'_, Const, T, O>
where T: BitStore, O: BitOrder,

source§

impl<T, S> Copy for Checkpoint<T, S>
where T: Copy,

source§

impl<T, Ty> Copy for WasmPtr<T, Ty>
where T: Copy,

source§

impl<T, U> Copy for gear_common::gas_provider::node::GasNodeId<T, U>
where T: Copy, U: Copy,

1.58.0 · source§

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

source§

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

source§

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

source§

impl<Tz> Copy for chrono::date::Date<Tz>
where Tz: TimeZone, <Tz as TimeZone>::Offset: Copy,

source§

impl<Tz> Copy for chrono::datetime::DateTime<Tz>
where Tz: TimeZone, <Tz as TimeZone>::Offset: Copy, NaiveDateTime: Copy,

source§

impl<U> Copy for NInt<U>
where U: Copy + Unsigned + NonZero,

source§

impl<U> Copy for PInt<U>
where U: Copy + Unsigned + NonZero,

source§

impl<U, B> Copy for UInt<U, B>
where U: Copy, B: Copy,

source§

impl<V, A> Copy for TArr<V, A>
where V: Copy, A: Copy,

source§

impl<X> Copy for rand::distributions::uniform::Uniform<X>

source§

impl<X> Copy for rand::distributions::uniform::Uniform<X>

source§

impl<X> Copy for rand::distributions::uniform::UniformFloat<X>
where X: Copy,

source§

impl<X> Copy for rand::distributions::uniform::UniformFloat<X>
where X: Copy,

source§

impl<X> Copy for rand::distributions::uniform::UniformInt<X>
where X: Copy,

source§

impl<X> Copy for rand::distributions::uniform::UniformInt<X>
where X: Copy,

source§

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

source§

impl<Yield, Return> Copy for CoroutineResult<Yield, Return>
where Yield: Copy, Return: Copy,

source§

impl<const CAP: usize> Copy for arrayvec::array_string::ArrayString<CAP>

source§

impl<const LIMBS: usize> Copy for DynResidue<LIMBS>

source§

impl<const LIMBS: usize> Copy for DynResidueParams<LIMBS>

source§

impl<const LIMBS: usize> Copy for Uint<LIMBS>

source§

impl<const N: usize> Copy for AlignedBytes<N>

source§

impl<const N: usize> Copy for ByteArray<N>

source§

impl<const SIZE: u32> Copy for Page<SIZE>

source§

impl<const SIZE: u32> Copy for PagesAmount<SIZE>