Trait gclient::ext::sp_core::sp_std::convert::From

1.0.0 · source ·
pub trait From<T>: Sized {
    // Required method
    fn from(value: T) -> Self;
}
Expand description

Used to do value-to-value conversions while consuming the input value. It is the reciprocal of Into.

One should always prefer implementing From over Into because implementing From automatically provides one with an implementation of Into thanks to the blanket implementation in the standard library.

Only implement Into when targeting a version prior to Rust 1.41 and converting to a type outside the current crate. From was not able to do these types of conversions in earlier versions because of Rust’s orphaning rules. See Into for more details.

Prefer using Into over using From when specifying trait bounds on a generic function. This way, types that directly implement Into can be used as arguments as well.

The From is also very useful when performing error handling. When constructing a function that is capable of failing, the return type will generally be of the form Result<T, E>. The From trait simplifies error handling by allowing a function to return a single error type that encapsulate multiple error types. See the “Examples” section and the book for more details.

Note: This trait must not fail. The From trait is intended for perfect conversions. If the conversion can fail or is not perfect, use TryFrom.

§Generic Implementations

  • From<T> for U implies Into<U> for T
  • From is reflexive, which means that From<T> for T is implemented

§When to implement From

While there’s no technical restrictions on which conversions can be done using a From implementation, the general expectation is that the conversions should typically be restricted as follows:

  • The conversion is infallible: if the conversion can fail, use TryFrom instead; don’t provide a From impl that panics.

  • The conversion is lossless: semantically, it should not lose or discard information. For example, i32: From<u16> exists, where the original value can be recovered using u16: TryFrom<i32>. And String: From<&str> exists, where you can get something equivalent to the original value via Deref. But From cannot be used to convert from u32 to u16, since that cannot succeed in a lossless way. (There’s some wiggle room here for information not considered semantically relevant. For example, Box<[T]>: From<Vec<T>> exists even though it might not preserve capacity, like how two vectors can be equal despite differing capacities.)

  • The conversion is value-preserving: the conceptual kind and meaning of the resulting value is the same, even though the Rust type and technical representation might be different. For example -1_i8 as u8 is lossless, since as casting back can recover the original value, but that conversion is not available via From because -1 and 255 are different conceptual values (despite being identical bit patterns technically). But f32: From<i16> is available because 1_i16 and 1.0_f32 are conceptually the same real number (despite having very different bit patterns technically). String: From<char> is available because they’re both text, but String: From<u32> is not available, since 1 (a number) and "1" (text) are too different. (Converting values to text is instead covered by the Display trait.)

  • The conversion is obvious: it’s the only reasonable conversion between the two types. Otherwise it’s better to have it be a named method or constructor, like how str::as_bytes is a method and how integers have methods like u32::from_ne_bytes, u32::from_le_bytes, and u32::from_be_bytes, none of which are From implementations. Whereas there’s only one reasonable way to wrap an Ipv6Addr into an IpAddr, thus IpAddr: From<Ipv6Addr> exists.

§Examples

String implements From<&str>:

An explicit conversion from a &str to a String is done as follows:

let string = "hello".to_string();
let other_string = String::from("hello");

assert_eq!(string, other_string);

While performing error handling it is often useful to implement From for your own error type. By converting underlying error types to our own custom error type that encapsulates the underlying error type, we can return a single error type without losing information on the underlying cause. The ‘?’ operator automatically converts the underlying error type to our custom error type with From::from.

use std::fs;
use std::io;
use std::num;

enum CliError {
    IoError(io::Error),
    ParseError(num::ParseIntError),
}

impl From<io::Error> for CliError {
    fn from(error: io::Error) -> Self {
        CliError::IoError(error)
    }
}

impl From<num::ParseIntError> for CliError {
    fn from(error: num::ParseIntError) -> Self {
        CliError::ParseError(error)
    }
}

fn open_and_parse_file(file_name: &str) -> Result<i32, CliError> {
    let mut contents = fs::read_to_string(&file_name)?;
    let num: i32 = contents.trim().parse()?;
    Ok(num)
}

Required Methods§

source

fn from(value: T) -> Self

Converts to this type from the input type.

Object Safety§

This trait is not object safe.

Implementors§

§

impl From<&&str> for WasmValue

§

impl From<&'static str> for DispatchError

§

impl From<&'static str> for RuntimeString

§

impl From<&'static str> for gclient::ext::sp_runtime::codec::Error

§

impl From<&'static str> for U256

§

impl From<&'static str> for U512

§

impl From<&'static str> for Body

§

impl From<&'static str> for Bytes

§

impl From<&'static str> for U128

§

impl From<&'static Tls12CipherSuite> for SupportedCipherSuite

§

impl From<&'static Tls13CipherSuite> for SupportedCipherSuite

§

impl From<&'static [u8]> for Body

§

impl From<&'static [u8]> for Bytes

§

impl From<&i8> for WasmValue

§

impl From<&i32> for WasmValue

source§

impl From<&str> for serde_json::value::Value

source§

impl From<&str> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

1.21.0 · source§

impl From<&str> for Rc<str>

source§

impl From<&str> for String

1.17.0 · source§

impl From<&str> for gclient::ext::sp_core::sp_std::prelude::Box<str>

1.6.0 · source§

impl From<&str> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error>

1.21.0 · source§

impl From<&str> for Arc<str>

§

impl From<&str> for Primitive

§

impl From<&str> for Value

§

impl From<&str> for Vec<u8>

§

impl From<&str> for WasmFieldName

§

impl From<&str> for WasmValue

§

impl From<&u32> for WasmValue

1.35.0 · source§

impl From<&String> for String

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Rc<CStr>

1.17.0 · source§

impl From<&CStr> for gclient::ext::sp_core::sp_std::prelude::Box<CStr>

1.24.0 · source§

impl From<&CStr> for Arc<CStr>

§

impl From<&CStr> for Box<CStr>

source§

impl From<&StreamResult> for Result<MZStatus, MZError>

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr>

1.17.0 · source§

impl From<&OsStr> for gclient::ext::sp_core::sp_std::prelude::Box<OsStr>

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr>

1.24.0 · source§

impl From<&Path> for Rc<Path>

1.17.0 · source§

impl From<&Path> for gclient::ext::sp_core::sp_std::prelude::Box<Path>

1.24.0 · source§

impl From<&Path> for Arc<Path>

§

impl From<&Attributes<'_>> for WasmEntryAttributes

source§

impl From<&ChaCha8Rng> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<&ChaCha12Rng> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<&ChaCha20Rng> for rand_chacha::chacha::ChaCha20Rng

§

impl From<&Event<'_>> for WasmEntryAttributes

§

impl From<&ExpandedSecretKey> for VerifyingKey

§

impl From<&FieldSet> for WasmFields

source§

impl From<&InnerNonce> for gear_core::reservation::ReservationNonce

§

impl From<&Level> for WasmLevel

§

impl From<&Metadata<'_>> for WasmMetadata

§

impl From<&NibbleVec> for (usize, SmallVec<[u8; 40]>)

§

impl From<&ObjectIdentifier> for ObjectIdentifier

§

impl From<&Signature> for Signature

§

impl From<&Signature> for [u8; 64]

§

impl From<&SigningKey> for VerifyingKey

§

impl From<&StreamResult> for Result<MZStatus, MZError>

§

impl From<&WasmMetadata> for &'static Metadata<'static>

§

impl From<&[u8; 32]> for SigningKey

§

impl From<&[u8; 64]> for Hash

§

impl From<&[u8; 64]> for Signature

source§

impl From<&[u8]> for gear_core::ids::CodeId

source§

impl From<&[u8]> for gear_core::ids::MessageId

source§

impl From<&[u8]> for gear_core::ids::ProgramId

source§

impl From<&[u8]> for ReservationId

§

impl From<&[u8]> for Bytes

1.44.0 · source§

impl From<&mut str> for String

source§

impl From<(&mut MessageContext, &mut PayloadSliceLock)> for UnlockPayloadBound

source§

impl From<(i64, i64)> for GasLeft

source§

impl From<(u32, u32)> for MemoryInterval

source§

impl From<(u64, u64)> for GasLeft

§

impl From<(u64, u64)> for Weight

source§

impl From<(Api, PairSigner<GearConfig, Pair>)> for Signer

source§

impl From<(Api, Pair)> for GearApi

§

impl From<(Vec<(usize, Error)>, Module)> for Error

§

impl From<(Vec<(usize, Error)>, Module)> for Error

§

impl From<([u8; 4], Vec<u8>)> for Justifications

source§

impl From<CodecError> for CodeError

source§

impl From<DataSectionError> for CodeError

source§

impl From<ExportError> for CodeError

source§

impl From<ImportError> for CodeError

source§

impl From<MemoryError> for CodeError

source§

impl From<SectionError> for CodeError

source§

impl From<StackEndError> for CodeError

source§

impl From<ChargeError> for AllocError

source§

impl From<ExecutionError> for ExtError

source§

impl From<MemoryError> for ExtError

source§

impl From<MessageError> for ExtError

source§

impl From<ReservationError> for ExtError

source§

impl From<ErrorReplyReason> for ReplyCode

source§

impl From<SimpleExecutionError> for ErrorReplyReason

source§

impl From<SimpleExecutionError> for SignalCode

source§

impl From<SimpleProgramCreationError> for ErrorReplyReason

source§

impl From<SuccessReplyReason> for ReplyCode

source§

impl From<Error> for gclient::Error

source§

impl From<TxError> for gsdk::result::Error

source§

impl From<Error> for gclient::Error

source§

impl From<DispatchStatus> for DispatchStatus

source§

impl From<ReplyCode> for ReplyCode

source§

impl From<RuntimeCall> for Value

§

impl From<ArithmeticError> for &'static str

§

impl From<ArithmeticError> for DispatchError

§

impl From<DispatchError> for &'static str

§

impl From<DispatchError> for Result<(), DispatchError>

§

impl From<RuntimeString> for String

§

impl From<StateVersion> for u8

§

impl From<TokenError> for &'static str

§

impl From<TokenError> for DispatchError

§

impl From<TransactionalError> for &'static str

§

impl From<TransactionalError> for DispatchError

§

impl From<HttpError> for u8

§

impl From<HttpError> for u32

§

impl From<HttpRequestStatus> for u32

§

impl From<StorageKind> for u8

§

impl From<StorageKind> for u32

§

impl From<InvalidTransaction> for &'static str

§

impl From<InvalidTransaction> for TransactionValidityError

§

impl From<InvalidTransaction> for Result<ValidTransaction, TransactionValidityError>

§

impl From<TransactionValidityError> for &'static str

§

impl From<UnknownTransaction> for &'static str

§

impl From<UnknownTransaction> for TransactionValidityError

§

impl From<UnknownTransaction> for Result<ValidTransaction, TransactionValidityError>

1.45.0 · source§

impl From<Cow<'_, str>> for gclient::ext::sp_core::sp_std::prelude::Box<str>

1.45.0 · source§

impl From<Cow<'_, CStr>> for gclient::ext::sp_core::sp_std::prelude::Box<CStr>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for gclient::ext::sp_core::sp_std::prelude::Box<OsStr>

1.45.0 · source§

impl From<Cow<'_, Path>> for gclient::ext::sp_core::sp_std::prelude::Box<Path>

§

impl From<Cow<'static, str>> for Body

§

impl From<Cow<'static, [u8]>> for Body

source§

impl From<TryReserveErrorKind> for TryReserveError

source§

impl From<PublicError> for gsdk::result::Error

§

impl From<Ss58AddressFormatRegistry> for Ss58AddressFormat

§

impl From<LogLevel> for log::Level

§

impl From<LogLevel> for u8

§

impl From<LogLevelFilter> for log::LevelFilter

§

impl From<LogLevelFilter> for u8

§

impl From<Result<u32, u32>> for ErrorWithHandle

§

impl From<Result<u32, u32>> for ErrorWithSignalCode

§

impl From<Result<u64, u32>> for ErrorWithGas

§

impl From<Result<(), u32>> for ErrorBytes

§

impl From<Result<[u8; 4], u32>> for ErrorWithReplyCode

1.34.0 · source§

impl From<Infallible> for TryFromIntError

1.36.0 · source§

impl From<Infallible> for TryFromSliceError

source§

impl From<Infallible> for http::error::Error

§

impl From<Infallible> for Error

§

impl From<Infallible> for ExtrinsicParamsError

source§

impl From<IpAddr> for webpki::subject_name::ip_address::IpAddr

§

impl From<IpAddr> for IpAddr

source§

impl From<SocketAddr> for socket2::sockaddr::SockAddr

§

impl From<SocketAddr> for SockAddr

§

impl From<Option<ExternRef>> for Val

§

impl From<Option<Func>> for Val

§

impl From<Option<Level>> for LevelFilter

§

impl From<Option<VMExternRef>> for TableElement

source§

impl From<VarError> for FromEnvError

1.14.0 · source§

impl From<ErrorKind> for std::io::error::Error

Intended for use for errors not exposed to the user, where allocating onto the heap (for normal construction via Error::new) is too costly.

source§

impl From<FromHexError> for gsdk::result::Error

source§

impl From<FromHexError> for gclient::Error

§

impl From<Level> for LogLevel

§

impl From<LevelFilter> for LogLevelFilter

source§

impl From<ErrorKind> for num_format::error::Error

source§

impl From<Locale> for CustomFormat

source§

impl From<Locale> for CustomFormatBuilder

source§

impl From<ParseError> for gclient::Error

source§

impl From<bool> for serde_json::value::Value

1.68.0 · source§

impl From<bool> for f32

1.68.0 · source§

impl From<bool> for f64

1.28.0 · source§

impl From<bool> for i8

1.28.0 · source§

impl From<bool> for i16

1.28.0 · source§

impl From<bool> for i32

1.28.0 · source§

impl From<bool> for i64

1.28.0 · source§

impl From<bool> for i128

1.28.0 · source§

impl From<bool> for isize

1.28.0 · source§

impl From<bool> for u8

1.28.0 · source§

impl From<bool> for u16

1.28.0 · source§

impl From<bool> for u32

1.28.0 · source§

impl From<bool> for u64

1.28.0 · source§

impl From<bool> for u128

1.28.0 · source§

impl From<bool> for usize

1.24.0 · source§

impl From<bool> for AtomicBool

source§

impl From<bool> for BigInt

source§

impl From<bool> for num_bigint::biguint::BigUint

§

impl From<bool> for Primitive

§

impl From<bool> for UntypedValue

§

impl From<bool> for Value

§

impl From<bool> for VarUint1

§

impl From<bool> for VarUint1

§

impl From<bool> for WasmValue

1.13.0 · source§

impl From<char> for u32

1.51.0 · source§

impl From<char> for u64

1.51.0 · source§

impl From<char> for u128

1.46.0 · source§

impl From<char> for String

§

impl From<char> for Literal

§

impl From<char> for Primitive

§

impl From<char> for Value

source§

impl From<f32> for serde_json::value::Value

1.6.0 · source§

impl From<f32> for f64

§

impl From<f32> for F32

§

impl From<f32> for UntypedValue

§

impl From<f32> for Val

source§

impl From<f64> for serde_json::value::Value

§

impl From<f64> for F64

§

impl From<f64> for UntypedValue

§

impl From<f64> for Val

source§

impl From<i8> for serde_json::value::Value

1.6.0 · source§

impl From<i8> for f32

1.6.0 · source§

impl From<i8> for f64

1.5.0 · source§

impl From<i8> for i16

1.5.0 · source§

impl From<i8> for i32

1.5.0 · source§

impl From<i8> for i64

1.26.0 · source§

impl From<i8> for i128

1.5.0 · source§

impl From<i8> for isize

§

impl From<i8> for U256

§

impl From<i8> for U512

1.34.0 · source§

impl From<i8> for AtomicI8

source§

impl From<i8> for BigInt

source§

impl From<i8> for Number

§

impl From<i8> for Primitive

§

impl From<i8> for U128

§

impl From<i8> for UntypedValue

§

impl From<i8> for Value

§

impl From<i8> for Value

§

impl From<i8> for VarInt7

§

impl From<i8> for VarInt7

§

impl From<i8> for WasmValue

source§

impl From<i16> for serde_json::value::Value

1.6.0 · source§

impl From<i16> for f32

1.6.0 · source§

impl From<i16> for f64

1.5.0 · source§

impl From<i16> for i32

1.5.0 · source§

impl From<i16> for i64

1.26.0 · source§

impl From<i16> for i128

1.26.0 · source§

impl From<i16> for isize

§

impl From<i16> for U256

§

impl From<i16> for U512

1.34.0 · source§

impl From<i16> for AtomicI16

source§

impl From<i16> for HeaderValue

source§

impl From<i16> for BigInt

source§

impl From<i16> for Number

§

impl From<i16> for Primitive

§

impl From<i16> for U128

§

impl From<i16> for UntypedValue

§

impl From<i16> for Value

§

impl From<i16> for Value

source§

impl From<i32> for serde_json::value::Value

1.6.0 · source§

impl From<i32> for f64

1.5.0 · source§

impl From<i32> for i64

1.26.0 · source§

impl From<i32> for i128

§

impl From<i32> for U256

§

impl From<i32> for U512

1.34.0 · source§

impl From<i32> for AtomicI32

source§

impl From<i32> for HeaderValue

source§

impl From<i32> for BigInt

source§

impl From<i32> for Number

source§

impl From<i32> for socket2::Domain

source§

impl From<i32> for socket2::Protocol

source§

impl From<i32> for socket2::Type

§

impl From<i32> for Domain

§

impl From<i32> for ErrorCode

§

impl From<i32> for ErrorCode

§

impl From<i32> for Primitive

§

impl From<i32> for Protocol

§

impl From<i32> for Type

§

impl From<i32> for U128

§

impl From<i32> for UntypedValue

§

impl From<i32> for Val

§

impl From<i32> for Value

§

impl From<i32> for Value

§

impl From<i32> for VarInt32

§

impl From<i32> for VarInt32

§

impl From<i32> for WasmValue

source§

impl From<i64> for serde_json::value::Value

1.26.0 · source§

impl From<i64> for i128

§

impl From<i64> for FixedI64

§

impl From<i64> for U256

§

impl From<i64> for U512

1.34.0 · source§

impl From<i64> for AtomicI64

source§

impl From<i64> for HeaderValue

source§

impl From<i64> for BigInt

source§

impl From<i64> for Number

§

impl From<i64> for Primitive

§

impl From<i64> for U128

§

impl From<i64> for UntypedValue

§

impl From<i64> for Val

§

impl From<i64> for Value

§

impl From<i64> for Value

§

impl From<i64> for VarInt64

§

impl From<i64> for VarInt64

§

impl From<i64> for WasmValue

§

impl From<i128> for FixedI128

§

impl From<i128> for U256

§

impl From<i128> for U512

source§

impl From<i128> for BigInt

§

impl From<i128> for Primitive

§

impl From<i128> for U128

§

impl From<i128> for Value

source§

impl From<isize> for serde_json::value::Value

§

impl From<isize> for U256

§

impl From<isize> for U512

1.23.0 · source§

impl From<isize> for AtomicIsize

source§

impl From<isize> for HeaderValue

source§

impl From<isize> for BigInt

source§

impl From<isize> for Number

§

impl From<isize> for Primitive

§

impl From<isize> for U128

§

impl From<isize> for Value

1.34.0 · source§

impl From<!> for Infallible

source§

impl From<!> for TryFromIntError

§

impl From<*mut VMCallerCheckedFuncRef> for TableElement

source§

impl From<u8> for serde_json::value::Value

1.13.0 · source§

impl From<u8> for char

Maps a byte in 0x00..=0xFF to a char whose code point has the same value, in U+0000..=U+00FF.

Unicode is designed such that this effectively decodes bytes with the character encoding that IANA calls ISO-8859-1. This encoding is compatible with ASCII.

Note that this is different from ISO/IEC 8859-1 a.k.a. ISO 8859-1 (with one less hyphen), which leaves some “blanks”, byte values that are not assigned to any character. ISO-8859-1 (the IANA one) assigns them to the C0 and C1 control codes.

Note that this is also different from Windows-1252 a.k.a. code page 1252, which is a superset ISO/IEC 8859-1 that assigns some (not all!) blanks to punctuation and various Latin characters.

To confuse things further, on the Web ascii, iso-8859-1, and windows-1252 are all aliases for a superset of Windows-1252 that fills the remaining blanks with corresponding C0 and C1 control codes.

1.6.0 · source§

impl From<u8> for f32

1.6.0 · source§

impl From<u8> for f64

1.5.0 · source§

impl From<u8> for i16

1.5.0 · source§

impl From<u8> for i32

1.5.0 · source§

impl From<u8> for i64

1.26.0 · source§

impl From<u8> for i128

1.26.0 · source§

impl From<u8> for isize

1.5.0 · source§

impl From<u8> for u16

1.5.0 · source§

impl From<u8> for u32

1.5.0 · source§

impl From<u8> for u64

1.26.0 · source§

impl From<u8> for u128

1.5.0 · source§

impl From<u8> for usize

§

impl From<u8> for gclient::ext::sp_runtime::biguint::BigUint

§

impl From<u8> for Ss58AddressFormat

§

impl From<u8> for U256

§

impl From<u8> for U512

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

source§

impl From<u8> for curve25519_dalek::scalar::Scalar

source§

impl From<u8> for curve25519_dalek::scalar::Scalar

source§

impl From<u8> for BigInt

source§

impl From<u8> for num_bigint::biguint::BigUint

source§

impl From<u8> for Number

source§

impl From<u8> for Choice

§

impl From<u8> for AlertDescription

§

impl From<u8> for AlertLevel

§

impl From<u8> for CertificateStatusType

§

impl From<u8> for ClientCertificateType

§

impl From<u8> for Compression

§

impl From<u8> for ContentType

§

impl From<u8> for ECCurveType

§

impl From<u8> for ECPointFormat

§

impl From<u8> for HandshakeType

§

impl From<u8> for HashAlgorithm

§

impl From<u8> for HeartbeatMessageType

§

impl From<u8> for HeartbeatMode

§

impl From<u8> for KeyUpdateRequest

§

impl From<u8> for Level

§

impl From<u8> for Literal

§

impl From<u8> for NumberOrHex

§

impl From<u8> for PSKKeyExchangeMode

§

impl From<u8> for PatternID

§

impl From<u8> for PatternID

§

impl From<u8> for Primitive

§

impl From<u8> for Scalar

§

impl From<u8> for ServerNameType

§

impl From<u8> for SignatureAlgorithm

§

impl From<u8> for SmallIndex

§

impl From<u8> for StateID

§

impl From<u8> for StateID

§

impl From<u8> for U128

§

impl From<u8> for Uint8

§

impl From<u8> for Uint8

§

impl From<u8> for UntypedValue

§

impl From<u8> for Value

§

impl From<u8> for Value

§

impl From<u8> for VarUint7

§

impl From<u8> for VarUint7

§

impl From<u8> for WasmValue

source§

impl From<u16> for serde_json::value::Value

1.6.0 · source§

impl From<u16> for f32

1.6.0 · source§

impl From<u16> for f64

1.5.0 · source§

impl From<u16> for i32

1.5.0 · source§

impl From<u16> for i64

1.26.0 · source§

impl From<u16> for i128

1.5.0 · source§

impl From<u16> for u32

1.5.0 · source§

impl From<u16> for u64

1.26.0 · source§

impl From<u16> for u128

1.26.0 · source§

impl From<u16> for usize

source§

impl From<u16> for gear_core::pages::Page<gear_core::::pages::GearPage::{constant#0}>

source§

impl From<u16> for gear_core::pages::Page<gear_core::::pages::WasmPage::{constant#0}>

source§

impl From<u16> for gear_core::pages::PagesAmount<gear_core::::pages::GearPagesAmount::{constant#0}>

source§

impl From<u16> for gear_core::pages::PagesAmount<gear_core::::pages::WasmPagesAmount::{constant#0}>

§

impl From<u16> for gclient::ext::sp_runtime::biguint::BigUint

§

impl From<u16> for Ss58AddressFormat

§

impl From<u16> for U256

§

impl From<u16> for U512

1.34.0 · source§

impl From<u16> for AtomicU16

source§

impl From<u16> for curve25519_dalek::scalar::Scalar

source§

impl From<u16> for curve25519_dalek::scalar::Scalar

source§

impl From<u16> for HeaderValue

source§

impl From<u16> for BigInt

source§

impl From<u16> for num_bigint::biguint::BigUint

source§

impl From<u16> for Number

§

impl From<u16> for CipherSuite

§

impl From<u16> for ExtensionType

§

impl From<u16> for NamedCurve

§

impl From<u16> for NamedGroup

§

impl From<u16> for NumberOrHex

§

impl From<u16> for Primitive

§

impl From<u16> for ProtocolVersion

§

impl From<u16> for Scalar

§

impl From<u16> for SignatureScheme

§

impl From<u16> for U128

§

impl From<u16> for UntypedValue

§

impl From<u16> for Value

§

impl From<u16> for Value

§

impl From<u32> for LogLevel

source§

impl From<u32> for serde_json::value::Value

1.6.0 · source§

impl From<u32> for f64

1.5.0 · source§

impl From<u32> for i64

1.26.0 · source§

impl From<u32> for i128

1.5.0 · source§

impl From<u32> for u64

1.26.0 · source§

impl From<u32> for u128

source§

impl From<u32> for BlocksAmount

source§

impl From<u32> for BytesAmount

source§

impl From<u32> for CallsAmount

source§

impl From<u32> for gear_core::percent::Percent

§

impl From<u32> for gclient::ext::sp_runtime::biguint::BigUint

§

impl From<u32> for KeyTypeId

§

impl From<u32> for U256

§

impl From<u32> for U512

1.34.0 · source§

impl From<u32> for AtomicU32

1.1.0 · source§

impl From<u32> for Ipv4Addr

source§

impl From<u32> for curve25519_dalek::scalar::Scalar

source§

impl From<u32> for curve25519_dalek::scalar::Scalar

source§

impl From<u32> for Reason

source§

impl From<u32> for HeaderValue

source§

impl From<u32> for BigInt

source§

impl From<u32> for num_bigint::biguint::BigUint

source§

impl From<u32> for Number

§

impl From<u32> for F32

§

impl From<u32> for Mode

§

impl From<u32> for Mode

§

impl From<u32> for NumberOrHex

§

impl From<u32> for Primitive

§

impl From<u32> for Scalar

§

impl From<u32> for U128

§

impl From<u32> for Uint32

§

impl From<u32> for Uint32

§

impl From<u32> for UntypedValue

§

impl From<u32> for Value

§

impl From<u32> for Value

§

impl From<u32> for VarUint32

§

impl From<u32> for VarUint32

§

impl From<u32> for WasmValue

source§

impl From<u64> for serde_json::value::Value

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for gear_core::ids::CodeId

source§

impl From<u64> for gear_core::ids::MessageId

source§

impl From<u64> for gear_core::ids::ProgramId

source§

impl From<u64> for ReservationId

§

impl From<u64> for gclient::ext::sp_runtime::biguint::BigUint

§

impl From<u64> for FixedU64

§

impl From<u64> for UintAuthorityId

§

impl From<u64> for U256

§

impl From<u64> for U512

1.34.0 · source§

impl From<u64> for AtomicU64

source§

impl From<u64> for curve25519_dalek::scalar::Scalar

source§

impl From<u64> for curve25519_dalek::scalar::Scalar

source§

impl From<u64> for HeaderValue

source§

impl From<u64> for BigInt

source§

impl From<u64> for num_bigint::biguint::BigUint

source§

impl From<u64> for Number

§

impl From<u64> for F64

§

impl From<u64> for NumberOrHex

§

impl From<u64> for Primitive

§

impl From<u64> for Scalar

§

impl From<u64> for U128

§

impl From<u64> for Uint64

§

impl From<u64> for Uint64

§

impl From<u64> for UntypedValue

§

impl From<u64> for Value

§

impl From<u64> for Value

§

impl From<u64> for VarUint64

§

impl From<u64> for VarUint64

§

impl From<u64> for WasmValue

§

impl From<u64> for Weight

§

impl From<u128> for gclient::ext::sp_runtime::biguint::BigUint

§

impl From<u128> for gclient::ext::sp_runtime::FixedU128

§

impl From<u128> for U256

§

impl From<u128> for U512

1.26.0 · source§

impl From<u128> for Ipv6Addr

source§

impl From<u128> for curve25519_dalek::scalar::Scalar

source§

impl From<u128> for curve25519_dalek::scalar::Scalar

source§

impl From<u128> for BigInt

source§

impl From<u128> for num_bigint::biguint::BigUint

§

impl From<u128> for NumberOrHex

§

impl From<u128> for Primitive

§

impl From<u128> for Scalar

§

impl From<u128> for U128

§

impl From<u128> for Val

§

impl From<u128> for Value

source§

impl From<()> for ExtError

source§

impl From<()> for ReplyCode

source§

impl From<()> for SignalCode

source§

impl From<()> for serde_json::value::Value

source§

impl From<usize> for serde_json::value::Value

§

impl From<usize> for U256

§

impl From<usize> for U512

1.23.0 · source§

impl From<usize> for AtomicUsize

source§

impl From<usize> for HeaderValue

source§

impl From<usize> for BigInt

source§

impl From<usize> for num_bigint::biguint::BigUint

source§

impl From<usize> for Number

§

impl From<usize> for Primitive

§

impl From<usize> for U128

§

impl From<usize> for Value

§

impl From<usize> for VarUint32

§

impl From<usize> for VarUint32

source§

impl From<RuntimeBufferSizeError> for &str

source§

impl From<CodeAndId> for InstrumentedCodeAndId

source§

impl From<BlocksAmount> for u32

source§

impl From<BytesAmount> for u32

source§

impl From<CallsAmount> for u32

source§

impl From<CodeId> for gclient::metadata::runtime_types::gear_core::ids::CodeId

source§

impl From<CodeId> for [u8; 32]

source§

impl From<MessageId> for gclient::metadata::runtime_types::gear_core::ids::MessageId

source§

impl From<MessageId> for [u8; 32]

source§

impl From<ProgramId> for gclient::metadata::runtime_types::gear_core::ids::ProgramId

source§

impl From<ProgramId> for [u8; 32]

source§

impl From<ReservationId> for [u8; 32]

source§

impl From<IncorrectAllocationDataError> for AllocError

source§

impl From<MemoryInterval> for (u32, u32)

source§

impl From<Dispatch> for (DispatchKind, Message)

source§

impl From<Dispatch> for StoredDelayedDispatch

source§

impl From<Dispatch> for StoredDispatch

source§

impl From<Message> for StoredMessage

source§

impl From<ReplyDetails> for MessageDetails

source§

impl From<SignalDetails> for MessageDetails

source§

impl From<IncomingDispatch> for (DispatchKind, IncomingMessage, Option<ContextStore>)

source§

impl From<StoredDelayedDispatch> for (DispatchKind, StoredMessage)

source§

impl From<StoredDelayedDispatch> for StoredDispatch

source§

impl From<StoredDispatch> for (DispatchKind, StoredMessage, Option<ContextStore>)

source§

impl From<PayloadSizeError> for &str

source§

impl From<UserMessage> for StoredMessage

source§

impl From<UserStoredMessage> for StoredMessage

source§

impl From<Percent> for Percent

source§

impl From<GasReservationSlot> for GasReservationState

source§

impl From<Api> for GearApi

source§

impl From<Signer> for GearApi

source§

impl From<CodeId> for gear_core::ids::CodeId

source§

impl From<MessageId> for gear_core::ids::MessageId

source§

impl From<ProgramId> for gear_core::ids::ProgramId

source§

impl From<ReservationId> for ReservationId

source§

impl From<ReplyDetails> for ReplyDetails

source§

impl From<UserMessage> for UserMessage

source§

impl From<UserStoredMessage> for UserStoredMessage

source§

impl From<GearApi> for Signer

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ecdsa::Pair

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::ecdsa::Public

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::ecdsa::Signature

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ecdsa::AppPair

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ecdsa::Public

§

impl From<Public> for MultiSigner

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::ecdsa::AppPublic

§

impl From<Signature> for MultiSignature

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::ecdsa::AppSignature

§

impl From<Signature> for [u8; 65]

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ed25519::Pair

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::ed25519::Public

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::ed25519::Signature

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ed25519::AppPair

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::ed25519::Public

§

impl From<Public> for MultiSigner

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::ed25519::AppPublic

§

impl From<Public> for gclient::ext::sp_runtime::AccountId32

§

impl From<Public> for H256

§

impl From<Public> for [u8; 32]

§

impl From<Signature> for MultiSignature

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::ed25519::AppSignature

§

impl From<Signature> for AnySignature

§

impl From<Signature> for H512

§

impl From<Signature> for [u8; 64]

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::sr25519::Pair

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::sr25519::Public

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::sr25519::Signature

source§

impl From<Pair> for PairSigner<GearConfig, Pair>

§

impl From<Pair> for gclient::ext::sp_runtime::app_crypto::sr25519::AppPair

§

impl From<Pair> for Keypair

§

impl From<Public> for MultiSigner

§

impl From<Public> for gclient::ext::sp_runtime::app_crypto::sr25519::AppPublic

§

impl From<Public> for gclient::ext::sp_runtime::AccountId32

§

impl From<Public> for H256

§

impl From<Public> for [u8; 32]

§

impl From<Signature> for MultiSignature

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::sr25519::AppSignature

§

impl From<Signature> for AnySignature

§

impl From<Signature> for H512

§

impl From<Signature> for [u8; 64]

§

impl From<Vec<&str>> for WasmFields

§

impl From<Vec<(&&str, Option<WasmValue>)>> for WasmValuesSet

§

impl From<Vec<(&&WasmFieldName, Option<WasmValue>)>> for WasmValuesSet

§

impl From<Vec<(WasmFieldName, Option<WasmValue>)>> for WasmValuesSet

§

impl From<Vec<u8>> for TrackedStorageKey

§

impl From<Vec<u8>> for gclient::ext::sp_core::Bytes

§

impl From<Vec<u8>> for BString

§

impl From<Vec<u8>> for Body

§

impl From<Vec<u8>> for Bytes

§

impl From<Vec<u8>> for Bytes

§

impl From<Vec<u8>> for Bytes

§

impl From<Vec<u8>> for Bytes

§

impl From<Vec<u8>> for DistinguishedName

§

impl From<Vec<u8>> for PresharedKeyBinder

§

impl From<Vec<u8>> for ProtocolName

§

impl From<Vec<u8>> for ResponderId

§

impl From<Vec<u8>> for Sct

§

impl From<Vec<u8>> for WasmFieldName

source§

impl From<Vec<u32>> for rand::seq::index::IndexVec

source§

impl From<Vec<u32>> for rand::seq::index::IndexVec

source§

impl From<Vec<usize>> for rand::seq::index::IndexVec

source§

impl From<Vec<usize>> for rand::seq::index::IndexVec

1.43.0 · source§

impl From<Vec<NonZeroU8>> for CString

§

impl From<Vec<BacktraceFrame>> for Backtrace

§

impl From<Vec<WasmFieldName>> for WasmFields

§

impl From<Compact<u8>> for u8

§

impl From<Compact<u16>> for u16

§

impl From<Compact<u32>> for u32

§

impl From<Compact<u64>> for u64

§

impl From<Compact<u128>> for u128

§

impl From<Compact<()>> for ()

source§

impl From<Compact<HoldConsideration>> for HoldConsideration

source§

impl From<Compact<Page2>> for Page2

source§

impl From<Compact<Page>> for gclient::metadata::runtime_types::gear_core::pages::Page

source§

impl From<Compact<PagesAmount>> for gclient::metadata::runtime_types::gear_core::pages::PagesAmount

source§

impl From<Compact<Percent>> for gclient::metadata::runtime_types::gear_core::percent::Percent

source§

impl From<Compact<MemoryInfix>> for MemoryInfix

source§

impl From<Compact<ReservationNonce>> for gclient::metadata::runtime_types::gear_core::reservation::ReservationNonce

source§

impl From<Compact<ExtraFlags>> for ExtraFlags

source§

impl From<Compact<Vote>> for Vote

source§

impl From<Compact<MemberRecord>> for MemberRecord

source§

impl From<Compact<FixedU128>> for gclient::metadata::runtime_types::sp_arithmetic::fixed_point::FixedU128

source§

impl From<Compact<PerU16>> for gclient::metadata::runtime_types::sp_arithmetic::per_things::PerU16

source§

impl From<Compact<Perbill>> for gclient::metadata::runtime_types::sp_arithmetic::per_things::Perbill

source§

impl From<Compact<Percent>> for gclient::metadata::runtime_types::sp_arithmetic::per_things::Percent

source§

impl From<Compact<Permill>> for gclient::metadata::runtime_types::sp_arithmetic::per_things::Permill

source§

impl From<Compact<Perquintill>> for gclient::metadata::runtime_types::sp_arithmetic::per_things::Perquintill

source§

impl From<Compact<Slot>> for Slot

§

impl From<Compact<FixedI64>> for FixedI64

§

impl From<Compact<FixedI128>> for FixedI128

§

impl From<Compact<FixedU64>> for FixedU64

§

impl From<Compact<FixedU128>> for gclient::ext::sp_runtime::FixedU128

§

impl From<Compact<PerU16>> for gclient::ext::sp_runtime::PerU16

§

impl From<Compact<Perbill>> for gclient::ext::sp_runtime::Perbill

§

impl From<Compact<Percent>> for gclient::ext::sp_runtime::Percent

§

impl From<Compact<Permill>> for gclient::ext::sp_runtime::Permill

§

impl From<Compact<Perquintill>> for gclient::ext::sp_runtime::Perquintill

§

impl From<Compact<OldWeight>> for OldWeight

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for gclient::Error

§

impl From<Error> for DecodeError

§

impl From<Error> for Error

§

impl From<HttpRequestId> for u32

§

impl From<Duration> for Duration

source§

impl From<Instant> for Uptime

§

impl From<Instant> for Instant

source§

impl From<SystemTime> for DateTime<Local>

source§

impl From<SystemTime> for DateTime<Utc>

§

impl From<SystemTime> for HttpDate

§

impl From<SystemTime> for Timestamp

§

impl From<SystemTimeError> for Error

§

impl From<MetaType> for PalletCallMetadata

§

impl From<MetaType> for PalletErrorMetadata

§

impl From<MetaType> for PalletEventMetadata

§

impl From<Registry> for PortableRegistry

§

impl From<AccountId32> for [u8; 32]

§

impl From<KeyTypeId> for u32

§

impl From<Rational128> for RationalInfinite

§

impl From<H256> for H160

§

impl From<H256> for [u8; 32]

§

impl From<UintAuthorityId> for u64

§

impl From<BadOrigin> for &'static str

§

impl From<BadOrigin> for DispatchError

§

impl From<LookupError> for &'static str

§

impl From<LookupError> for DispatchError

§

impl From<LookupError> for TransactionValidityError

§

impl From<ValidTransactionBuilder> for Result<ValidTransaction, TransactionValidityError>

§

impl From<ValidTransactionBuilder> for ValidTransaction

§

impl From<BTreeMap<Vec<u8>, Vec<u8>>> for BasicExternalities

1.7.0 · source§

impl From<CString> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

1.24.0 · source§

impl From<CString> for Rc<CStr>

1.20.0 · source§

impl From<CString> for gclient::ext::sp_core::sp_std::prelude::Box<CStr>

1.24.0 · source§

impl From<CString> for Arc<CStr>

source§

impl From<NulError> for std::io::error::Error

§

impl From<NulError> for Error

1.62.0 · source§

impl From<Rc<str>> for Rc<[u8]>

§

impl From<Utf8Error> for DecodeError

§

impl From<Utf8Error> for Error

§

impl From<Utf8Error> for Error

source§

impl From<String> for serde_json::value::Value

1.14.0 · source§

impl From<String> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

1.21.0 · source§

impl From<String> for Rc<str>

1.20.0 · source§

impl From<String> for gclient::ext::sp_core::sp_std::prelude::Box<str>

source§

impl From<String> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send + Sync>

1.6.0 · source§

impl From<String> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error>

1.21.0 · source§

impl From<String> for Arc<str>

source§

impl From<String> for OsString

source§

impl From<String> for PathBuf

§

impl From<String> for BString

§

impl From<String> for Body

§

impl From<String> for Bytes

§

impl From<String> for Color

§

impl From<String> for ColoredString

§

impl From<String> for Error

§

impl From<String> for ParseErrorKind

§

impl From<String> for Primitive

§

impl From<String> for Value

§

impl From<Ss58AddressFormat> for u16

§

impl From<Ss58AddressFormat> for String

§

impl From<VrfTranscript> for VrfSignData

§

impl From<H160> for H256

§

impl From<H160> for [u8; 20]

§

impl From<H512> for [u8; 64]

§

impl From<OpaqueMetadata> for gclient::ext::sp_core::Bytes

§

impl From<U256> for U512

§

impl From<U256> for NumberOrHex

§

impl From<U256> for [u8; 32]

§

impl From<U512> for [u8; 64]

source§

impl From<LayoutError> for TryReserveErrorKind

§

impl From<LayoutError> for CollectionAllocErr

1.31.0 · source§

impl From<NonZeroI8> for i8

1.41.0 · source§

impl From<NonZeroI8> for NonZeroI16

1.41.0 · source§

impl From<NonZeroI8> for NonZeroI32

1.41.0 · source§

impl From<NonZeroI8> for NonZeroI64

1.41.0 · source§

impl From<NonZeroI8> for NonZeroI128

1.41.0 · source§

impl From<NonZeroI8> for NonZeroIsize

1.31.0 · source§

impl From<NonZeroI16> for i16

1.41.0 · source§

impl From<NonZeroI16> for NonZeroI32

1.41.0 · source§

impl From<NonZeroI16> for NonZeroI64

1.41.0 · source§

impl From<NonZeroI16> for NonZeroI128

1.41.0 · source§

impl From<NonZeroI16> for NonZeroIsize

1.31.0 · source§

impl From<NonZeroI32> for i32

1.41.0 · source§

impl From<NonZeroI32> for NonZeroI64

1.41.0 · source§

impl From<NonZeroI32> for NonZeroI128

1.31.0 · source§

impl From<NonZeroI64> for i64

1.41.0 · source§

impl From<NonZeroI64> for NonZeroI128

1.31.0 · source§

impl From<NonZeroI128> for i128

1.31.0 · source§

impl From<NonZeroIsize> for isize

1.31.0 · source§

impl From<NonZeroU8> for u8

1.41.0 · source§

impl From<NonZeroU8> for NonZeroI16

1.41.0 · source§

impl From<NonZeroU8> for NonZeroI32

1.41.0 · source§

impl From<NonZeroU8> for NonZeroI64

1.41.0 · source§

impl From<NonZeroU8> for NonZeroI128

1.41.0 · source§

impl From<NonZeroU8> for NonZeroIsize

1.41.0 · source§

impl From<NonZeroU8> for NonZeroU16

1.41.0 · source§

impl From<NonZeroU8> for NonZeroU32

1.41.0 · source§

impl From<NonZeroU8> for NonZeroU64

1.41.0 · source§

impl From<NonZeroU8> for NonZeroU128

1.41.0 · source§

impl From<NonZeroU8> for NonZeroUsize

1.31.0 · source§

impl From<NonZeroU16> for u16

1.41.0 · source§

impl From<NonZeroU16> for NonZeroI32

1.41.0 · source§

impl From<NonZeroU16> for NonZeroI64

1.41.0 · source§

impl From<NonZeroU16> for NonZeroI128

1.41.0 · source§

impl From<NonZeroU16> for NonZeroU32

1.41.0 · source§

impl From<NonZeroU16> for NonZeroU64

1.41.0 · source§

impl From<NonZeroU16> for NonZeroU128

1.41.0 · source§

impl From<NonZeroU16> for NonZeroUsize

1.31.0 · source§

impl From<NonZeroU32> for u32

1.41.0 · source§

impl From<NonZeroU32> for NonZeroI64

1.41.0 · source§

impl From<NonZeroU32> for NonZeroI128

1.41.0 · source§

impl From<NonZeroU32> for NonZeroU64

1.41.0 · source§

impl From<NonZeroU32> for NonZeroU128

source§

impl From<NonZeroU32> for getrandom::error::Error

source§

impl From<NonZeroU32> for getrandom::error::Error

source§

impl From<NonZeroU32> for rand_core::error::Error

source§

impl From<NonZeroU32> for rand_core::error::Error

1.31.0 · source§

impl From<NonZeroU64> for u64

1.41.0 · source§

impl From<NonZeroU64> for NonZeroI128

1.41.0 · source§

impl From<NonZeroU64> for NonZeroU128

1.31.0 · source§

impl From<NonZeroU128> for u128

1.31.0 · source§

impl From<NonZeroUsize> for usize

§

impl From<Range<usize>> for Span

§

impl From<Range<usize>> for Span

1.18.0 · source§

impl From<Box<str>> for String

1.18.0 · source§

impl From<Box<CStr>> for CString

1.18.0 · source§

impl From<Box<OsStr>> for OsString

1.18.0 · source§

impl From<Box<Path>> for PathBuf

source§

impl From<Box<RawValue>> for gclient::ext::sp_core::sp_std::prelude::Box<str>

§

impl From<Box<BStr>> for gclient::ext::sp_core::sp_std::prelude::Box<[u8]>

§

impl From<Box<[u8]>> for gclient::ext::sp_core::sp_std::prelude::Box<BStr>

§

impl From<Box<[u8]>> for Bytes

§

impl From<Box<dyn DbExternalities>> for OffchainDbExt

§

impl From<Box<dyn Externalities>> for OffchainWorkerExt

§

impl From<Box<dyn TransactionPool + Send>> for TransactionPoolExt

source§

impl From<Box<dyn Error + Send + Sync>> for tracing_subscriber::filter::directive::ParseError

§

impl From<Box<dyn Error + Send + Sync>> for Error

§

impl From<Box<dyn ReadRuntimeVersion>> for ReadRuntimeVersionExt

§

impl From<Box<dyn CustomError>> for ErrorKind

§

impl From<Box<dyn CustomError>> for ErrorKind

§

impl From<Box<dyn Stream<Item = Result<Bytes, Box<dyn Error + Send + Sync>>> + Send>> for Body

§Optional

This function requires enabling the stream feature in your Cargo.toml.

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

1.62.0 · source§

impl From<Arc<str>> for Arc<[u8]>

§

impl From<Arc<ClientConfig>> for TlsConnector

§

impl From<Arc<ServerConfig>> for TlsAcceptor

§

impl From<Arc<dyn Keystore>> for KeystoreExt

source§

impl From<KeyRejected> for Unspecified

source§

impl From<Okm<'_, &'static Algorithm>> for HeaderProtectionKey

source§

impl From<Okm<'_, &'static Algorithm>> for UnboundKey

source§

impl From<Okm<'_, Algorithm>> for Prk

source§

impl From<Okm<'_, Algorithm>> for Salt

source§

impl From<Okm<'_, Algorithm>> for Key

§

impl From<Okm<'_, PayloadU8Len>> for PayloadU8

source§

impl From<EndOfInput> for Unspecified

§

impl From<EndOfInput> for Error

source§

impl From<DnsNameRef<'_>> for DnsName

Requires the alloc feature.

source§

impl From<TryFromSliceError> for Unspecified

source§

impl From<__m128> for Simd<f32, 4>

source§

impl From<__m128d> for Simd<f64, 2>

source§

impl From<__m128i> for Simd<i8, 16>

source§

impl From<__m128i> for Simd<i16, 8>

source§

impl From<__m128i> for Simd<i32, 4>

source§

impl From<__m128i> for Simd<i64, 2>

source§

impl From<__m128i> for Simd<isize, 2>

source§

impl From<__m128i> for Simd<u8, 16>

source§

impl From<__m128i> for Simd<u16, 8>

source§

impl From<__m128i> for Simd<u32, 4>

source§

impl From<__m128i> for Simd<u64, 2>

source§

impl From<__m128i> for Simd<usize, 2>

source§

impl From<__m256> for Simd<f32, 8>

source§

impl From<__m256d> for Simd<f64, 4>

source§

impl From<__m256i> for Simd<i8, 32>

source§

impl From<__m256i> for Simd<i16, 16>

source§

impl From<__m256i> for Simd<i32, 8>

source§

impl From<__m256i> for Simd<i64, 4>

source§

impl From<__m256i> for Simd<isize, 4>

source§

impl From<__m256i> for Simd<u8, 32>

source§

impl From<__m256i> for Simd<u16, 16>

source§

impl From<__m256i> for Simd<u32, 8>

source§

impl From<__m256i> for Simd<u64, 4>

source§

impl From<__m256i> for Simd<usize, 4>

source§

impl From<__m512> for Simd<f32, 16>

source§

impl From<__m512d> for Simd<f64, 8>

source§

impl From<__m512i> for Simd<i8, 64>

source§

impl From<__m512i> for Simd<i16, 32>

source§

impl From<__m512i> for Simd<i32, 16>

source§

impl From<__m512i> for Simd<i64, 8>

source§

impl From<__m512i> for Simd<isize, 8>

source§

impl From<__m512i> for Simd<u8, 64>

source§

impl From<__m512i> for Simd<u16, 32>

source§

impl From<__m512i> for Simd<u32, 16>

source§

impl From<__m512i> for Simd<u64, 8>

source§

impl From<__m512i> for Simd<usize, 8>

source§

impl From<Simd<f32, 4>> for __m128

source§

impl From<Simd<f32, 8>> for __m256

source§

impl From<Simd<f32, 16>> for __m512

source§

impl From<Simd<f64, 2>> for __m128d

source§

impl From<Simd<f64, 4>> for __m256d

source§

impl From<Simd<f64, 8>> for __m512d

source§

impl From<Simd<i8, 16>> for __m128i

source§

impl From<Simd<i8, 32>> for __m256i

source§

impl From<Simd<i8, 64>> for __m512i

source§

impl From<Simd<i16, 8>> for __m128i

source§

impl From<Simd<i16, 16>> for __m256i

source§

impl From<Simd<i16, 32>> for __m512i

source§

impl From<Simd<i32, 4>> for __m128i

source§

impl From<Simd<i32, 8>> for __m256i

source§

impl From<Simd<i32, 16>> for __m512i

source§

impl From<Simd<i64, 2>> for __m128i

source§

impl From<Simd<i64, 4>> for __m256i

source§

impl From<Simd<i64, 8>> for __m512i

source§

impl From<Simd<isize, 2>> for __m128i

source§

impl From<Simd<isize, 4>> for __m256i

source§

impl From<Simd<isize, 8>> for __m512i

source§

impl From<Simd<u8, 16>> for __m128i

source§

impl From<Simd<u8, 32>> for __m256i

source§

impl From<Simd<u8, 64>> for __m512i

source§

impl From<Simd<u16, 8>> for __m128i

source§

impl From<Simd<u16, 16>> for __m256i

source§

impl From<Simd<u16, 32>> for __m512i

source§

impl From<Simd<u32, 4>> for __m128i

source§

impl From<Simd<u32, 8>> for __m256i

source§

impl From<Simd<u32, 16>> for __m512i

source§

impl From<Simd<u64, 2>> for __m128i

source§

impl From<Simd<u64, 4>> for __m256i

source§

impl From<Simd<u64, 8>> for __m512i

source§

impl From<Simd<usize, 2>> for __m128i

source§

impl From<Simd<usize, 4>> for __m256i

source§

impl From<Simd<usize, 8>> for __m512i

§

impl From<Arguments<'_>> for WasmValue

1.16.0 · source§

impl From<Ipv4Addr> for core::net::ip_addr::IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

1.16.0 · source§

impl From<Ipv6Addr> for core::net::ip_addr::IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

source§

impl From<SocketAddrV4> for WSAddress

source§

impl From<SocketAddrV4> for socket2::sockaddr::SockAddr

§

impl From<SocketAddrV4> for SockAddr

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

impl From<SocketAddrV6> for socket2::sockaddr::SockAddr

§

impl From<SocketAddrV6> for SockAddr

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZeroUsize

source§

impl From<StreamResult> for Result<MZStatus, MZError>

1.24.0 · source§

impl From<OsString> for Rc<OsStr>

1.20.0 · source§

impl From<OsString> for gclient::ext::sp_core::sp_std::prelude::Box<OsStr>

1.24.0 · source§

impl From<OsString> for Arc<OsStr>

source§

impl From<OsString> for PathBuf

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for gsdk::testing::result::Error

source§

impl From<Error> for gclient::Error

§

impl From<Error> for gclient::ext::sp_runtime::codec::Error

source§

impl From<Error> for gclient::ext::sp_core::sp_std::prelude::Box<ErrorKind>

source§

impl From<Error> for getrandom::error::Error

§

impl From<Error> for AnyDelimiterCodecError

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for GetTimezoneError

§

impl From<Error> for LinesCodecError

§

impl From<Error> for WsHandshakeError

§

impl From<Error> for WsHandshakeError

1.74.0 · source§

impl From<Stderr> for Stdio

1.74.0 · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

source§

impl From<TcpListener> for socket2::socket::Socket

§

impl From<TcpListener> for Socket

1.63.0 · source§

impl From<TcpStream> for OwnedFd

source§

impl From<TcpStream> for socket2::socket::Socket

§

impl From<TcpStream> for Socket

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

source§

impl From<UdpSocket> for socket2::socket::Socket

§

impl From<UdpSocket> for Socket

1.63.0 · source§

impl From<OwnedFd> for File

1.63.0 · source§

impl From<OwnedFd> for TcpListener

1.63.0 · source§

impl From<OwnedFd> for TcpStream

1.63.0 · source§

impl From<OwnedFd> for UdpSocket

source§

impl From<OwnedFd> for PidFd

1.63.0 · source§

impl From<OwnedFd> for UnixDatagram

1.63.0 · source§

impl From<OwnedFd> for UnixListener

1.63.0 · source§

impl From<OwnedFd> for UnixStream

1.74.0 · source§

impl From<OwnedFd> for ChildStderr

Create a ChildStderr from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.74.0 · source§

impl From<OwnedFd> for ChildStdin

Create a ChildStdin from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.74.0 · source§

impl From<OwnedFd> for ChildStdout

Create a ChildStdout from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

1.63.0 · source§

impl From<OwnedFd> for Stdio

§

impl From<OwnedFd> for Socket

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

source§

impl From<UnixDatagram> for socket2::socket::Socket

§

impl From<UnixDatagram> for Socket

1.63.0 · source§

impl From<UnixListener> for OwnedFd

source§

impl From<UnixListener> for socket2::socket::Socket

§

impl From<UnixListener> for Socket

1.63.0 · source§

impl From<UnixStream> for OwnedFd

source§

impl From<UnixStream> for socket2::socket::Socket

§

impl From<UnixStream> for Socket

1.24.0 · source§

impl From<PathBuf> for Rc<Path>

1.20.0 · source§

impl From<PathBuf> for gclient::ext::sp_core::sp_std::prelude::Box<Path>

1.24.0 · source§

impl From<PathBuf> for Arc<Path>

1.14.0 · source§

impl From<PathBuf> for OsString

1.63.0 · source§

impl From<ChildStderr> for OwnedFd

1.20.0 · source§

impl From<ChildStderr> for Stdio

§

impl From<ChildStderr> for Receiver

§Notes

The underlying pipe is not set to non-blocking.

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

§

impl From<ChildStdin> for Sender

§Notes

The underlying pipe is not set to non-blocking.

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

§

impl From<ChildStdout> for Receiver

§Notes

The underlying pipe is not set to non-blocking.

source§

impl From<ExitStatusError> for ExitStatus

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for gclient::Error

source§

impl From<Error> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send + Sync>

source§

impl From<Error> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send>

source§

impl From<Error> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error>

§

impl From<Error> for CallError

§

impl From<Error> for Error

§

impl From<Error> for SubscriptionEmptyError

§

impl From<Error> for TrapReason

source§

impl From<DateTime<FixedOffset>> for DateTime<Local>

Convert a DateTime<FixedOffset> instance into a DateTime<Local> instance.

source§

impl From<DateTime<FixedOffset>> for DateTime<Utc>

Convert a DateTime<FixedOffset> instance into a DateTime<Utc> instance.

source§

impl From<DateTime<Local>> for DateTime<FixedOffset>

Convert a DateTime<Local> instance into a DateTime<FixedOffset> instance.

source§

impl From<DateTime<Local>> for DateTime<Utc>

Convert a DateTime<Local> instance into a DateTime<Utc> instance.

source§

impl From<DateTime<Utc>> for DateTime<FixedOffset>

Convert a DateTime<Utc> instance into a DateTime<FixedOffset> instance.

source§

impl From<DateTime<Utc>> for DateTime<Local>

Convert a DateTime<Utc> instance into a DateTime<Local> instance.

source§

impl From<NaiveDate> for NaiveDateTime

source§

impl From<NaiveDateTime> for NaiveDate

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for rand_core::error::Error

source§

impl From<Reason> for u32

source§

impl From<Reason> for h2::error::Error

source§

impl From<StreamId> for u32

source§

impl From<HeaderName> for HeaderValue

source§

impl From<InvalidHeaderName> for http::error::Error

source§

impl From<InvalidHeaderValue> for http::error::Error

source§

impl From<InvalidMethod> for http::error::Error

source§

impl From<InvalidStatusCode> for http::error::Error

source§

impl From<StatusCode> for u16

source§

impl From<Authority> for Uri

Convert an Authority into a Uri.

source§

impl From<PathAndQuery> for Uri

Convert a PathAndQuery into a Uri.

source§

impl From<InvalidUri> for http::error::Error

source§

impl From<InvalidUriParts> for http::error::Error

source§

impl From<Uri> for Parts

Convert a Uri into Parts

source§

impl From<BigUint> for BigInt

source§

impl From<CustomFormat> for CustomFormatBuilder

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for std::io::error::Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

source§

impl From<Map<String, Value>> for serde_json::value::Value

source§

impl From<Number> for serde_json::value::Value

source§

impl From<Socket> for TcpListener

source§

impl From<Socket> for TcpStream

source§

impl From<Socket> for UdpSocket

source§

impl From<Socket> for UnixDatagram

source§

impl From<Socket> for UnixListener

source§

impl From<Socket> for UnixStream

source§

impl From<Domain> for i32

source§

impl From<Protocol> for i32

source§

impl From<Type> for i32

source§

impl From<Choice> for bool

source§

impl From<ParseError> for FromEnvError

source§

impl From<Url> for String

String conversion.

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for rand_core::error::Error

source§

impl From<ChaCha8Core> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<ChaCha8Core> for rand_chacha::chacha::ChaCha8Rng

source§

impl From<ChaCha12Core> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<ChaCha12Core> for rand_chacha::chacha::ChaCha12Rng

source§

impl From<ChaCha20Core> for rand_chacha::chacha::ChaCha20Rng

source§

impl From<ChaCha20Core> for rand_chacha::chacha::ChaCha20Rng

source§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for std::io::error::Error

§

impl From<AffineStorage> for Affine

§

impl From<BString> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

source§

impl From<BigEndian<u32>> for u32

source§

impl From<BigEndian<u32>> for [u8; 4]

source§

impl From<BigEndian<u64>> for u64

source§

impl From<BigEndian<u64>> for [u8; 8]

source§

impl From<BinaryReaderError> for CodeError

§

impl From<BinaryReaderError> for WasmError

§

impl From<Bits11> for u16

§

impl From<Bits> for Value

§

impl From<BlockError> for Error

§

impl From<BrokenQuote> for GetTimezoneError

source§

impl From<ByteStr> for Bytes

§

impl From<Bytes> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl From<Bytes> for Body

§

impl From<Bytes> for BytesWeak

§

impl From<BytesMut> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl From<BytesMut> for Bytes

§

impl From<CallError> for Error

§

impl From<CallError> for SubscriptionEmptyError

§

impl From<CertRevocationListError> for Error

§

impl From<CertificateError> for AlertDescription

§

impl From<CertificateError> for Error

§

impl From<ClientConnection> for Connection

§

impl From<ColoredString> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error>

§

impl From<Colour> for Style

§

impl From<Composite<()>> for Value

§

impl From<Current> for Option<Id>

source§

impl From<Custom> for Bytes

source§

impl From<DataFlags> for u8

source§

impl From<DecString> for ArrayString<num_format::::strings::{impl#81}::{constant#0}>

source§

impl From<DecodeError> for gsdk::result::Error

§

impl From<DecodeError> for DecodeSliceError

§

impl From<DecodeError> for Error

§

impl From<DecodeError> for ErrorKind

§

impl From<DispatchError> for Error

§

impl From<Domain> for i32

§

impl From<ECQVCertSecret> for ECQVCertPublic

TODO: Serde serialization/deserialization

§

impl From<EdwardsPoint> for VerifyingKey

§

impl From<Elapsed> for std::io::error::Error

§

impl From<Elapsed> for std::io::error::Error

§

impl From<ErrPtr> for FallibleSyscallSignature

§

impl From<ErrPtr> for ParamType

source§

impl From<ErrString> for ArrayString<num_format::::strings::{impl#94}::{constant#0}>

§

impl From<Errno> for std::io::error::Error

§

impl From<Errno> for std::io::error::Error

§

impl From<Errno> for std::io::error::Error

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for gsdk::result::Error

source§

impl From<Error> for gclient::Error

§

impl From<Error> for String

§

impl From<Error> for std::io::error::Error

source§

impl From<Error> for h2::error::Error

§

impl From<Error> for CertRevocationListError

§

impl From<Error> for ConvertError

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for Error

§

impl From<Error> for ErrorObject<'static>

§

impl From<Error> for VirtualMemoryError

§

impl From<Error> for WsError

§

impl From<Error> for WsError

§

impl From<Error> for WsHandshakeError

§

impl From<Error> for WsHandshakeError

source§

impl From<ErrorKind> for InvalidUri

source§

impl From<ErrorKind> for InvalidUriParts

§

impl From<ErrorObject<'static>> for Error

§

impl From<Errors> for Result<(), Errors>

source§

impl From<Errors> for url::parser::ParseError

§

impl From<ExportFunction> for Export

§

impl From<ExportGlobal> for Export

§

impl From<ExportMemory> for Export

§

impl From<ExportTable> for Export

§

impl From<ExtendedPoint> for EdwardsPoint

§

impl From<ExtendedPoint> for EdwardsPoint

§

impl From<ExternRef> for Val

§

impl From<ExtrinsicParamsError> for Error

§

impl From<F32> for f32

§

impl From<F32> for u32

§

impl From<F32> for UntypedValue

§

impl From<F32> for Value

§

impl From<F64> for f64

§

impl From<F64> for u64

§

impl From<F64> for UntypedValue

§

impl From<F64> for Value

§

impl From<FieldStorage> for Field

§

impl From<Frame> for BacktraceFrame

§

impl From<FromDecStrErr> for FromStrRadixErr

§

impl From<FromHexError> for FromStrRadixErr

§

impl From<FromMetadataError> for DecodeError

§

impl From<Func> for Extern

§

impl From<Func> for Val

§

impl From<FuncIndex> for EntityIndex

§

impl From<FuncType> for ExternType

§

impl From<GetRandomFailed> for Error

§

impl From<Global> for Extern

§

impl From<GlobalIndex> for EntityIndex

§

impl From<GlobalType> for ExternType

§

impl From<H128> for [u8; 16]

§

impl From<H384> for [u8; 48]

§

impl From<H768> for [u8; 96]

source§

impl From<HeadersFlag> for u8

§

impl From<HttpDate> for SystemTime

source§

impl From<InfString> for ArrayString<num_format::::strings::{impl#107}::{constant#0}>

§

impl From<Instant> for gclient::ext::sp_runtime::scale_info::prelude::time::Instant

source§

impl From<InstrumentationError> for CodeError

§

impl From<InternalError> for Error

§

impl From<InternalSignature> for Signature

§

impl From<InvalidMessage> for Error

§

impl From<InvalidParityValue> for Error

§

impl From<InvalidRequestId> for Error

§

impl From<JoinError> for std::io::error::Error

§

impl From<KebabString> for String

§

impl From<KebabString> for String

§

impl From<KeyPair> for PublicKey

§

impl From<KeyPair> for SecretKey

§

impl From<Keypair> for gclient::ext::sp_runtime::app_crypto::sr25519::Pair

§

impl From<Kind> for Error

source§

impl From<Level> for Directive

§

impl From<Level> for LevelFilter

§

impl From<LevelFilter> for Option<Level>

source§

impl From<LevelFilter> for Directive

source§

impl From<LittleEndian<u32>> for u32

source§

impl From<LittleEndian<u32>> for [u8; 4]

source§

impl From<LittleEndian<u64>> for u64

source§

impl From<LittleEndian<u64>> for [u8; 8]

§

impl From<Memory> for Extern

§

impl From<MemoryIndex> for EntityIndex

§

impl From<MemoryType> for ExternType

§

impl From<MemoryType> for Memory

§

impl From<Message> for PlainMessage

§

impl From<Metadata> for Metadata

§

impl From<Metadata> for RuntimeMetadataPrefixed

§

impl From<Metadata> for RuntimeMetadataV14

§

impl From<Metadata> for RuntimeMetadataV15

source§

impl From<MetadataError> for gsdk::result::Error

§

impl From<MetadataError> for Error

source§

impl From<MinString> for ArrayString<num_format::::strings::{impl#120}::{constant#0}>

§

impl From<MiniSecretKey> for gclient::ext::sp_runtime::app_crypto::sr25519::Pair

§

impl From<Mnemonic> for String

§

impl From<Mode> for u32

§

impl From<Mode> for u32

source§

impl From<ModuleError> for ModuleError

§

impl From<ModuleScaffold> for Module

§

impl From<ModuleScaffold> for Module

§

impl From<MultiRemovalResults> for KillStorageResult

source§

impl From<NanString> for ArrayString<num_format::::strings::{impl#133}::{constant#0}>

§

impl From<NumberOrHex> for U256

§

impl From<OpCode> for u8

§

impl From<PackedIndex> for u32

§

impl From<Pages> for Bytes

§

impl From<Pages> for Bytes

§

impl From<ParamType> for ValueType

§

impl From<Parity> for i32

The conversion returns 0 for even parity and 1 for odd.

§

impl From<Parity> for u8

The conversion returns 0 for even parity and 1 for odd.

§

impl From<ParseBitSequenceError> for ParseErrorKind

§

impl From<ParseCharError> for ParseErrorKind

§

impl From<ParseComplexError> for ParseErrorKind

source§

impl From<ParseLevelFilterError> for tracing_subscriber::filter::directive::ParseError

§

impl From<ParseNumberError> for ParseErrorKind

§

impl From<ParseStringError> for ParseErrorKind

source§

impl From<ParserNumber> for Number

§

impl From<PeerIncompatible> for Error

§

impl From<PeerMisbehaved> for Error

source§

impl From<PlusString> for ArrayString<num_format::::strings::{impl#146}::{constant#0}>

§

impl From<Pointer> for u64

§

impl From<Protocol> for i32

§

impl From<Ptr> for RegularParamType

§

impl From<PublicKey> for PublicKey

Creates a new public key from a FFI public key

§

impl From<PublicKey> for XOnlyPublicKey

source§

impl From<PushPromiseFlag> for u8

§

impl From<RecoverableSignature> for gclient::ext::sp_runtime::app_crypto::ecdsa::Signature

§

impl From<RecoverableSignature> for RecoverableSignature

Creates a new recoverable signature from a FFI one.

§

impl From<RefType> for ValType

source§

impl From<Result> for Result<(), Unspecified>

§

impl From<RootArcs> for u8

§

impl From<RpcError> for Error

§

impl From<RuntimeMetadataPrefixed> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl From<RuntimeMetadataV14> for RuntimeMetadataPrefixed

§

impl From<RuntimeMetadataV15> for RuntimeMetadataPrefixed

§

impl From<SecretKey> for gclient::ext::sp_runtime::app_crypto::sr25519::Pair

§

impl From<SecretKey> for Keypair

§

impl From<SecretKey> for PublicKey

§

impl From<SecretKey> for Scalar

source§

impl From<SendError> for h2::error::Error

§

impl From<SendError> for Error

source§

impl From<SepString> for ArrayString<num_format::::strings::{impl#159}::{constant#0}>

§

impl From<SerdeHelper> for SigningKey

§

impl From<ServerConnection> for Connection

source§

impl From<SettingsFlags> for u8

§

impl From<SharedMemory> for Extern

§

impl From<Signature> for gclient::ext::sp_runtime::app_crypto::sr25519::Signature

§

impl From<Signature> for Signature

§

impl From<Signature> for Signature

Creates a new signature from a FFI signature

§

impl From<Signature> for [u8; 64]

§

impl From<Signature> for [u8; 64]

§

impl From<SigningKey> for [u8; 32]

§

impl From<SmallIndex> for PatternID

§

impl From<SmallIndex> for StateID

§

impl From<Socket> for TcpListener

§

impl From<Socket> for TcpStream

§

impl From<Socket> for UdpSocket

§

impl From<Socket> for OwnedFd

§

impl From<Socket> for UnixDatagram

§

impl From<Socket> for UnixListener

§

impl From<Socket> for UnixStream

§

impl From<Span> for Option<Id>

§

impl From<Span> for Range<usize>

§

impl From<Span> for Range<usize>

§

impl From<SpawnError> for std::io::error::Error

§

impl From<State> for usize

§

impl From<State> for usize

source§

impl From<State> for usize

§

impl From<StorageAddressError> for Error

source§

impl From<StreamId> for u32

source§

impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Blocks

source§

impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Events

§

impl From<StreamResult> for Result<MZStatus, MZError>

§

impl From<SubscriptionAcceptRejectError> for SubscriptionEmptyError

§

impl From<SubscriptionClosed> for ErrorObject<'static>

§

impl From<Table> for Extern

§

impl From<TableIndex> for EntityIndex

§

impl From<TableType> for ExternType

source§

impl From<Tag> for u8

§

impl From<Tag> for u8

source§

impl From<Tag> for u8

source§

impl From<Tag> for usize

§

impl From<Tag> for usize

source§

impl From<Tag> for usize

§

impl From<TagType> for Tag

§

impl From<Token> for usize

§

impl From<TokenRegistry> for Token

§

impl From<TransactionError> for Error

§

impl From<Trap> for Error

§

impl From<Trap> for ResumableError

§

impl From<Trap> for TrapReason

§

impl From<TrapCode> for Trap

§

impl From<TryFromError> for Error

source§

impl From<TxStatus<GearConfig, OnlineClient<GearConfig>>> for gsdk::result::Error

§

impl From<Type> for i32

§

impl From<U128> for U256

§

impl From<U128> for U512

§

impl From<U128> for [u8; 16]

§

impl From<Uint8> for u8

§

impl From<Uint8> for u8

§

impl From<Uint32> for u32

§

impl From<Uint32> for u32

§

impl From<Uint64> for u64

§

impl From<Uint64> for u64

§

impl From<UnknownOpCode> for Error

§

impl From<Unparsed> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl From<Unparsed> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl From<UntypedValue> for bool

§

impl From<UntypedValue> for f32

§

impl From<UntypedValue> for f64

§

impl From<UntypedValue> for i8

§

impl From<UntypedValue> for i16

§

impl From<UntypedValue> for i32

§

impl From<UntypedValue> for i64

§

impl From<UntypedValue> for u8

§

impl From<UntypedValue> for u16

§

impl From<UntypedValue> for u32

§

impl From<UntypedValue> for u64

§

impl From<UntypedValue> for F32

§

impl From<UntypedValue> for F64

source§

impl From<UserError> for h2::error::Error

§

impl From<VMExternRef> for TableElement

§

impl From<Value> for ReturnValue

§

impl From<Value> for UntypedValue

§

impl From<Value> for Value

§

impl From<Value> for Value

§

impl From<ValueType> for u8

§

impl From<ValueType> for StackValueType

§

impl From<ValueType> for ValueType

§

impl From<ValueType> for ValueType

§

impl From<VarInt7> for i8

§

impl From<VarInt7> for i8

§

impl From<VarInt32> for i32

§

impl From<VarInt32> for i32

§

impl From<VarInt64> for i64

§

impl From<VarInt64> for i64

§

impl From<VarUint1> for bool

§

impl From<VarUint1> for bool

§

impl From<VarUint7> for u8

§

impl From<VarUint7> for u8

§

impl From<VarUint32> for u32

§

impl From<VarUint32> for u32

§

impl From<VarUint32> for usize

§

impl From<VarUint32> for usize

§

impl From<VarUint64> for u64

§

impl From<VarUint64> for u64

§

impl From<Variant<()>> for Value

§

impl From<VerificationKey> for VerificationKeyBytes

§

impl From<VerificationKey> for [u8; 32]

§

impl From<VerificationKeyBytes> for [u8; 32]

§

impl From<WasmEntryAttributes> for Span

§

impl From<WasmError> for CompileError

§

impl From<WasmType> for ValType

source§

impl From<Window> for isize

§

impl From<Words> for Bytes

§

impl From<Words> for Bytes

§

impl From<XOnlyPublicKey> for XOnlyPublicKey

Creates a new Schnorr public key from a FFI x-only public key.

1.17.0 · source§

impl From<[u8; 4]> for core::net::ip_addr::IpAddr

1.9.0 · source§

impl From<[u8; 4]> for Ipv4Addr

1.17.0 · source§

impl From<[u8; 16]> for core::net::ip_addr::IpAddr

1.9.0 · source§

impl From<[u8; 16]> for Ipv6Addr

§

impl From<[u8; 16]> for H128

§

impl From<[u8; 16]> for U128

§

impl From<[u8; 20]> for H160

source§

impl From<[u8; 32]> for gear_core::ids::CodeId

source§

impl From<[u8; 32]> for gear_core::ids::MessageId

source§

impl From<[u8; 32]> for gear_core::ids::ProgramId

source§

impl From<[u8; 32]> for ReservationId

§

impl From<[u8; 32]> for gclient::ext::sp_runtime::AccountId32

§

impl From<[u8; 32]> for H256

§

impl From<[u8; 32]> for U256

§

impl From<[u8; 32]> for AccountId32

§

impl From<[u8; 32]> for Random

§

impl From<[u8; 32]> for SigningKey

§

impl From<[u8; 32]> for SigningKey

§

impl From<[u8; 32]> for VerificationKeyBytes

§

impl From<[u8; 48]> for H384

§

impl From<[u8; 64]> for H512

§

impl From<[u8; 64]> for U512

§

impl From<[u8; 64]> for Hash

§

impl From<[u8; 64]> for Signature

§

impl From<[u8; 64]> for Signature

§

impl From<[u8; 96]> for H768

1.17.0 · source§

impl From<[u16; 8]> for core::net::ip_addr::IpAddr

1.16.0 · source§

impl From<[u16; 8]> for Ipv6Addr

§

impl From<[u32; 4]> for vec128_storage

§

impl From<[u64; 4]> for vec256_storage

§

impl From<u24> for usize

§

impl From<u32x8> for __m256i

§

impl From<u64x4> for __m256i

§

impl From<vec128_storage> for [u32; 4]

§

impl From<vec128_storage> for [u64; 2]

§

impl From<vec128_storage> for [u128; 1]

§

impl From<vec256_storage> for [u32; 8]

§

impl From<vec256_storage> for [u64; 4]

§

impl From<vec256_storage> for [u128; 2]

§

impl From<vec512_storage> for [u32; 16]

§

impl From<vec512_storage> for [u64; 8]

§

impl From<vec512_storage> for [u128; 4]

source§

impl<'a> From<&'a IpAddr> for webpki::subject_name::ip_address::IpAddrRef<'a>

§

impl<'a> From<&'a str> for &'a BStr

source§

impl<'a> From<&'a str> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, str>

source§

impl<'a> From<&'a str> for h2::ext::Protocol

§

impl<'a> From<&'a str> for BString

§

impl<'a> From<&'a str> for BytesMut

§

impl<'a> From<&'a str> for Color

§

impl<'a> From<&'a str> for ColoredString

§

impl<'a> From<&'a str> for Error

§

impl<'a> From<&'a str> for Protocol

§

impl<'a> From<&'a Field<PortableForm>> for Field<'a>

1.28.0 · source§

impl<'a> From<&'a CString> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, CStr>

1.28.0 · source§

impl<'a> From<&'a String> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, str>

§

impl<'a> From<&'a U256> for U256

§

impl<'a> From<&'a U256> for U512

§

impl<'a> From<&'a U512> for U512

1.28.0 · source§

impl<'a> From<&'a CStr> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, CStr>

1.28.0 · source§

impl<'a> From<&'a OsStr> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, OsStr>

1.28.0 · source§

impl<'a> From<&'a OsString> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, OsStr>

1.6.0 · source§

impl<'a> From<&'a Path> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, Path>

1.28.0 · source§

impl<'a> From<&'a PathBuf> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, Path>

source§

impl<'a> From<&'a EdwardsBasepointTableRadix16> for EdwardsBasepointTableRadix32

source§

impl<'a> From<&'a EdwardsBasepointTableRadix16> for EdwardsBasepointTableRadix64

source§

impl<'a> From<&'a EdwardsBasepointTableRadix16> for EdwardsBasepointTableRadix128

source§

impl<'a> From<&'a EdwardsBasepointTableRadix16> for EdwardsBasepointTableRadix256

source§

impl<'a> From<&'a EdwardsBasepointTableRadix32> for EdwardsBasepointTableRadix16

source§

impl<'a> From<&'a EdwardsBasepointTableRadix32> for EdwardsBasepointTableRadix64

source§

impl<'a> From<&'a EdwardsBasepointTableRadix32> for EdwardsBasepointTableRadix128

source§

impl<'a> From<&'a EdwardsBasepointTableRadix32> for EdwardsBasepointTableRadix256

source§

impl<'a> From<&'a EdwardsBasepointTableRadix64> for EdwardsBasepointTableRadix16

source§

impl<'a> From<&'a EdwardsBasepointTableRadix64> for EdwardsBasepointTableRadix32

source§

impl<'a> From<&'a EdwardsBasepointTableRadix64> for EdwardsBasepointTableRadix128

source§

impl<'a> From<&'a EdwardsBasepointTableRadix64> for EdwardsBasepointTableRadix256

source§

impl<'a> From<&'a EdwardsBasepointTableRadix128> for EdwardsBasepointTableRadix16

source§

impl<'a> From<&'a EdwardsBasepointTableRadix128> for EdwardsBasepointTableRadix32

source§

impl<'a> From<&'a EdwardsBasepointTableRadix128> for EdwardsBasepointTableRadix64

source§

impl<'a> From<&'a EdwardsBasepointTableRadix128> for EdwardsBasepointTableRadix256

source§

impl<'a> From<&'a EdwardsBasepointTableRadix256> for EdwardsBasepointTableRadix16

source§

impl<'a> From<&'a EdwardsBasepointTableRadix256> for EdwardsBasepointTableRadix32

source§

impl<'a> From<&'a EdwardsBasepointTableRadix256> for EdwardsBasepointTableRadix64

source§

impl<'a> From<&'a EdwardsBasepointTableRadix256> for EdwardsBasepointTableRadix128

source§

impl<'a> From<&'a HeaderName> for HeaderName

source§

impl<'a> From<&'a HeaderValue> for HeaderValue

source§

impl<'a> From<&'a Method> for Method

source§

impl<'a> From<&'a StatusCode> for StatusCode

§

impl<'a> From<&'a BStr> for &'a [u8]

§

impl<'a> From<&'a BStr> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, BStr>

§

impl<'a> From<&'a BStr> for BString

§

impl<'a> From<&'a Current> for Option<&'a Id>

§

impl<'a> From<&'a Current> for Option<&'static Metadata<'static>>

§

impl<'a> From<&'a Current> for Option<Id>

§

impl<'a> From<&'a EnteredSpan> for Option<&'a Id>

§

impl<'a> From<&'a EnteredSpan> for Option<Id>

§

impl<'a> From<&'a Id> for Option<Id>

§

impl<'a> From<&'a IpAddr> for IpAddrRef<'a>

§

impl<'a> From<&'a KeyPair> for PublicKey

§

impl<'a> From<&'a KeyPair> for SecretKey

§

impl<'a> From<&'a SigningKey> for VerificationKey

§

impl<'a> From<&'a SigningKey> for VerificationKeyBytes

§

impl<'a> From<&'a Span> for Option<&'a Id>

§

impl<'a> From<&'a Span> for Option<Id>

§

impl<'a> From<&'a U128> for U128

§

impl<'a> From<&'a [u8; 16]> for H128

§

impl<'a> From<&'a [u8; 16]> for U128

§

impl<'a> From<&'a [u8; 20]> for H160

§

impl<'a> From<&'a [u8; 32]> for H256

§

impl<'a> From<&'a [u8; 32]> for U256

§

impl<'a> From<&'a [u8; 48]> for H384

§

impl<'a> From<&'a [u8; 64]> for H512

§

impl<'a> From<&'a [u8; 64]> for U512

§

impl<'a> From<&'a [u8; 96]> for H768

§

impl<'a> From<&'a [u8]> for &'a BStr

§

impl<'a> From<&'a [u8]> for U256

§

impl<'a> From<&'a [u8]> for U512

source§

impl<'a> From<&'a [u8]> for untrusted::Input<'a>

§

impl<'a> From<&'a [u8]> for BString

§

impl<'a> From<&'a [u8]> for BytesMut

§

impl<'a> From<&'a [u8]> for U128

§

impl<'a> From<&'a [Value]> for RuntimeArgs<'a>

§

impl<'a> From<&'a mut [u8; 16]> for H128

§

impl<'a> From<&'a mut [u8; 20]> for H160

§

impl<'a> From<&'a mut [u8; 32]> for H256

§

impl<'a> From<&'a mut [u8; 48]> for H384

§

impl<'a> From<&'a mut [u8; 64]> for H512

§

impl<'a> From<&'a mut [u8; 96]> for H768

§

impl<'a> From<&'a vec128_storage> for &'a [u32; 4]

source§

impl<'a> From<&str> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send + Sync + 'a>

source§

impl<'a> From<Cow<'a, str>> for serde_json::value::Value

1.14.0 · source§

impl<'a> From<Cow<'a, str>> for String

1.22.0 · source§

impl<'a> From<Cow<'a, str>> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error>

1.28.0 · source§

impl<'a> From<Cow<'a, CStr>> for CString

1.28.0 · source§

impl<'a> From<Cow<'a, OsStr>> for OsString

1.28.0 · source§

impl<'a> From<Cow<'a, Path>> for PathBuf

source§

impl<'a> From<IpAddrRef<'a>> for &'a str

source§

impl<'a> From<IpAddrRef<'a>> for &'a [u8]

source§

impl<'a> From<IpAddrRef<'a>> for webpki::subject_name::ip_address::IpAddr

source§

impl<'a> From<IpAddrRef<'a>> for webpki::subject_name::name::SubjectNameRef<'a>

§

impl<'a> From<u64> for SubscriptionId<'a>

§

impl<'a> From<u64> for SubscriptionId<'a>

1.28.0 · source§

impl<'a> From<CString> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, CStr>

source§

impl<'a> From<String> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, str>

source§

impl<'a> From<String> for LimitedStr<'a>

§

impl<'a> From<String> for SubscriptionId<'a>

§

impl<'a> From<String> for SubscriptionId<'a>

§

impl<'a> From<Box<dyn Future<Output = ()> + 'a>> for LocalFutureObj<'a, ()>

§

impl<'a> From<Box<dyn Future<Output = ()> + Send + 'a>> for FutureObj<'a, ()>

source§

impl<'a> From<DnsNameRef<'a>> for &'a str

source§

impl<'a> From<DnsNameRef<'a>> for webpki::subject_name::name::SubjectNameRef<'a>

§

impl<'a> From<Pin<Box<dyn Future<Output = ()> + 'a>>> for LocalFutureObj<'a, ()>

§

impl<'a> From<Pin<Box<dyn Future<Output = ()> + Send + 'a>>> for FutureObj<'a, ()>

1.28.0 · source§

impl<'a> From<OsString> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, OsStr>

1.6.0 · source§

impl<'a> From<PathBuf> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, Path>

§

impl<'a> From<BString> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, BStr>

§

impl<'a> From<CallError> for ErrorObject<'a>

source§

impl<'a> From<Cert<'a>> for webpki::trust_anchor::TrustAnchor<'a>

§

impl<'a> From<Cert<'a>> for TrustAnchor<'a>

§

impl<'a> From<DnsNameRef<'a>> for &'a str

§

impl<'a> From<DnsNameRef<'a>> for SubjectNameRef<'a>

§

impl<'a> From<ErrorCode> for ErrorObject<'a>

§

impl<'a> From<ErrorCode> for ErrorObject<'a>

§

impl<'a> From<ErrorCode> for ResponsePayload<'a, ()>

§

impl<'a> From<ErrorObject<'a>> for SubscriptionEmptyError

§

impl<'a> From<GeneralDnsNameRef<'a>> for &'a str

§

impl<'a> From<IpAddrRef<'a>> for &'a str

§

impl<'a> From<IpAddrRef<'a>> for &'a [u8]

§

impl<'a> From<IpAddrRef<'a>> for IpAddr

§

impl<'a> From<IpAddrRef<'a>> for SubjectNameRef<'a>

§

impl<'a> From<NibbleSlice<'a>> for (usize, SmallVec<[u8; 40]>)

§

impl<'a> From<NibbleSlice<'a>> for NibbleVec

§

impl<'a> From<PercentDecode<'a>> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, [u8]>

§

impl<'a> From<PercentEncode<'a>> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, str>

§

impl<'a> From<StrTokens<'a>> for &'a str

§

impl<'a> From<SubscriptionId<'a>> for serde_json::value::Value

§

impl<'a> From<SubscriptionId<'a>> for serde_json::value::Value

§

impl<'a> From<WildcardDnsNameRef<'a>> for &'a str

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send + Sync + 'a>

§

impl<'a, A> From<&'a [<A as Array>::Item]> for SmallVec<A>
where A: Array, <A as Array>::Item: Clone,

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Rc<B>
where B: ToOwned + ?Sized, Rc<B>: From<&'a B> + From<<B as ToOwned>::Owned>,

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Arc<B>
where B: ToOwned + ?Sized, Arc<B>: From<&'a B> + From<<B as ToOwned>::Owned>,

§

impl<'a, C> From<(&'a Memory, &'a mut C)> for MemoryWrapper<'a, C>

source§

impl<'a, E> From<E> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + 'a>
where E: Error + 'a,

source§

impl<'a, E> From<E> for gclient::ext::sp_core::sp_std::prelude::Box<dyn Error + Send + Sync + 'a>
where E: Error + Send + Sync + 'a,

§

impl<'a, F> From<Box<F>> for FutureObj<'a, ()>
where F: Future<Output = ()> + Send + 'a,

§

impl<'a, F> From<Box<F>> for LocalFutureObj<'a, ()>
where F: Future<Output = ()> + 'a,

§

impl<'a, F> From<Pin<Box<F>>> for FutureObj<'a, ()>
where F: Future<Output = ()> + Send + 'a,

§

impl<'a, F> From<Pin<Box<F>>> for LocalFutureObj<'a, ()>
where F: Future<Output = ()> + 'a,

§

impl<'a, H, B> From<&'a B> for ReadOnlyExternalities<'a, H, B>
where H: Hasher, B: 'a + Backend<H>,

§

impl<'a, I, S> From<I> for ANSIGenericString<'a, S>
where S: 'a + ToOwned + ?Sized, I: Into<Cow<'a, S>>, <S as ToOwned>::Owned: Debug,

§

impl<'a, Item> From<SliceTokens<'a, Item>> for &'a [Item]

§

impl<'a, L> From<Value<'a>> for Value<L>
where L: TrieLayout,

1.30.0 · source§

impl<'a, T> From<&'a Option<T>> for Option<&'a T>

§

impl<'a, T> From<&'a [T; 1]> for &'a GenericArray<T, UInt<UTerm, B1>>

§

impl<'a, T> From<&'a [T; 2]> for &'a GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

§

impl<'a, T> From<&'a [T; 3]> for &'a GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

§

impl<'a, T> From<&'a [T; 4]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 5]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 6]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 7]> for &'a GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 8]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 9]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 10]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 11]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 12]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 13]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 14]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 15]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 16]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 17]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 18]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 19]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 20]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 21]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 22]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 23]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 24]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 25]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 26]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 27]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 28]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 29]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 30]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 31]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 32]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 33]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 34]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 35]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 36]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 37]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 38]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 39]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 40]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 41]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 42]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 43]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 44]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 45]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 46]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 47]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 48]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 49]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 50]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 51]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 52]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 53]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 54]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 55]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 56]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 57]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 58]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 59]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 60]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 61]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a [T; 62]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 63]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a [T; 64]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 70]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 80]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 90]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a [T; 100]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 128]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 200]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 256]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 300]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 400]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 500]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 512]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 1000]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a [T; 1024]> for &'a GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

1.8.0 · source§

impl<'a, T> From<&'a [T]> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, [T]>
where T: Clone,

1.28.0 · source§

impl<'a, T> From<&'a Vec<T>> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, [T]>
where T: Clone,

§

impl<'a, T> From<&'a GenericArray<u8, <T as OutputSizeUser>::OutputSize>> for CtOutput<T>
where T: OutputSizeUser,

§

impl<'a, T> From<&'a OfflineClient<T>> for OfflineClient<T>
where T: Config,

1.30.0 · source§

impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>

§

impl<'a, T> From<&'a mut [T; 1]> for &'a mut GenericArray<T, UInt<UTerm, B1>>

§

impl<'a, T> From<&'a mut [T; 2]> for &'a mut GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 3]> for &'a mut GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 4]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 5]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 6]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 7]> for &'a mut GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 8]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 9]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 10]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 11]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 12]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 13]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 14]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 15]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 16]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 17]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 18]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 19]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 20]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 21]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 22]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 23]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 24]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 25]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 26]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 27]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 28]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 29]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 30]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 31]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 32]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 33]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 34]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 35]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 36]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 37]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 38]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 39]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 40]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 41]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 42]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 43]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 44]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 45]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 46]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 47]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 48]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 49]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 50]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 51]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 52]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 53]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 54]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 55]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 56]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 57]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 58]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 59]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 60]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 61]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

§

impl<'a, T> From<&'a mut [T; 62]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 63]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

§

impl<'a, T> From<&'a mut [T; 64]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 70]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 80]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 90]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

§

impl<'a, T> From<&'a mut [T; 100]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 128]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 200]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 256]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 300]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 400]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 500]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 512]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 1000]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<'a, T> From<&'a mut [T; 1024]> for &'a mut GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

1.14.0 · source§

impl<'a, T> From<Cow<'a, [T]>> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where [T]: ToOwned<Owned = Vec<T>>,

§

impl<'a, T> From<&'a T> for Compact<T>
where T: Copy,

§

impl<'a, T> From<&'a T> for CompactRef<'a, T>

§

impl<'a, T> From<&'a T> for Ptr<'a, T>
where T: 'a + ?Sized,

§

impl<'a, T> From<&'a T> for StoreContext<'a, <T as AsContext>::Data>
where T: AsContext,

§

impl<'a, T> From<&'a mut T> for StoreContext<'a, <T as AsContext>::Data>
where T: AsContext,

§

impl<'a, T> From<&'a mut T> for StoreContextMut<'a, <T as AsContext>::Data>
where T: AsContextMut,

1.8.0 · source§

impl<'a, T> From<Vec<T>> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, [T]>
where T: Clone,

§

impl<'a, T> From<FutureObj<'a, T>> for LocalFutureObj<'a, T>

§

impl<'a, T> From<StoreContextMut<'a, T>> for StoreContext<'a, T>

§

impl<'a, T> From<T> for Env<'a>
where T: Into<Cow<'a, str>>,

§

impl<'a, T, N> From<&'a [T]> for &'a GenericArray<T, N>
where N: ArrayLength<T>,

§

impl<'a, T, N> From<&'a [T]> for &'a GenericArray<T, N>
where N: ArrayLength<T>,

§

impl<'a, T, N> From<&'a mut [T]> for &'a mut GenericArray<T, N>
where N: ArrayLength<T>,

§

impl<'a, T, N> From<&'a mut [T]> for &'a mut GenericArray<T, N>
where N: ArrayLength<T>,

§

impl<'a, T, O> From<Cow<'a, BitSlice<T, O>>> for BitBox<T, O>
where T: BitStore, O: BitOrder,

§

impl<'a, T, O> From<Cow<'a, BitSlice<T, O>>> for BitVec<T, O>
where O: BitOrder, T: 'a + BitStore,

§

impl<'a, T, S> From<BoundedSlice<'a, T, S>> for &'a [T]

§

impl<'a, T, U> From<Cow<'a, T>> for Cow<'a, T, U>
where T: Beef + ?Sized, U: Capacity,

§

impl<'a, T, U> From<&'a T> for Ref<'a, T, U>
where T: EncodeLike<U>, U: Encode,

§

impl<'a, T, U> From<&'a T> for Cow<'a, T, U>
where T: Beef + ?Sized, U: Capacity,

§

impl<'a, T, U> From<Cow<'a, T, U>> for gclient::ext::sp_core::bounded::alloc::borrow::Cow<'a, T>
where T: Beef + ?Sized, U: Capacity,

§

impl<'a, const N: usize> From<&'a [u8; N]> for &'a BStr

§

impl<'a, const N: usize> From<&'a [u8; N]> for BString

§

impl<'context, T> From<OwnedFd> for Epoll<Owning<'context, T>>
where T: AsFd + Into<OwnedFd> + From<OwnedFd>,

§

impl<'context, T> From<Epoll<Owning<'context, T>>> for OwnedFd
where T: AsFd + Into<OwnedFd> + From<OwnedFd>,

source§

impl<'data> From<&'data mut [u8]> for BorrowedBuf<'data>

Create a new BorrowedBuf from a fully initialized slice.

source§

impl<'data> From<&'data mut [MaybeUninit<u8>]> for BorrowedBuf<'data>

Create a new BorrowedBuf from an uninitialized buffer.

Use set_init if part of the buffer is known to be already initialized.

§

impl<'h> From<Match<'h>> for &'h str

§

impl<'h> From<Match<'h>> for &'h [u8]

§

impl<'h> From<Match<'h>> for Range<usize>

§

impl<'h> From<Match<'h>> for Range<usize>

§

impl<'h, H> From<&'h H> for Input<'h>
where H: AsRef<[u8]> + ?Sized,

§

impl<'h, H> From<&'h H> for Input<'h>
where H: AsRef<[u8]> + ?Sized,

§

impl<'input, Endian> From<EndianSlice<'input, Endian>> for &'input [u8]
where Endian: Endianity,

§

impl<'msg, M> From<(VerificationKeyBytes, Signature, &'msg M)> for Item
where M: AsRef<[u8]> + ?Sized,

source§

impl<'s> From<&'s TxStatus<GearConfig, OnlineClient<GearConfig>>> for BacktraceStatus

source§

impl<'s, S> From<&'s S> for socket2::sockref::SockRef<'s>
where S: AsRawFd,

On Windows, a corresponding From<&impl AsRawSocket> implementation exists.

§

impl<'s, S> From<&'s S> for SockRef<'s>
where S: AsFd,

On Windows, a corresponding From<&impl AsSocket> implementation exists.

§

impl<'s, T> From<&'s mut [T]> for SliceVec<'s, T>

§

impl<'s, T, A> From<&'s mut A> for SliceVec<'s, T>
where A: AsMut<[T]>,

§

impl<A> From<&str> for Box<str, A>
where A: Allocator + Default,

§

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

1.19.0 · source§

impl<A> From<Box<str, A>> for gclient::ext::sp_core::sp_std::prelude::Box<[u8], A>
where A: Allocator,

source§

impl<A> From<A> for arrayvec::ArrayVec<A>
where A: Array,

Create an ArrayVec from an array.

use arrayvec::ArrayVec;

let mut array = ArrayVec::from([1, 2, 3]);
assert_eq!(array.len(), 3);
assert_eq!(array.capacity(), 3);
source§

impl<A> From<A> for arrayvec::ArrayVec<A>
where A: Array,

Create an ArrayVec from an array.

use arrayvec::ArrayVec;

let mut array = ArrayVec::from([1, 2, 3]);
assert_eq!(array.len(), 3);
assert_eq!(array.capacity(), 3);
§

impl<A> From<A> for ArrayVec<A>
where A: Array,

§

impl<A> From<A> for SmallVec<A>
where A: Array,

§

impl<A> From<A> for TinyVec<A>
where A: Array,

§

impl<A> From<ArrayVec<A>> for TinyVec<A>
where A: Array,

§

impl<A> From<Box<str, A>> for Box<[u8], A>
where A: Allocator,

§

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

§

impl<A, O> From<BitArray<A, O>> for BitBox<<A as BitView>::Store, O>
where A: BitViewSized, O: BitOrder,

§

impl<A, O> From<BitArray<A, O>> for BitVec<<A as BitView>::Store, O>
where O: BitOrder, A: BitViewSized,

§

impl<AccountId, AccountIndex> From<AccountId> for gclient::ext::sp_runtime::MultiAddress<AccountId, AccountIndex>

§

impl<AccountId, AccountIndex> From<AccountId> for MultiAddress<AccountId, AccountIndex>

§

impl<Address, Call, Signature, Extra> From<Vec<u8>> for UncheckedExtrinsic<Address, Call, Signature, Extra>

§

impl<Address, Call, Signature, Extra> From<UncheckedExtrinsic<Address, Call, Signature, Extra>> for OpaqueExtrinsic
where Address: Encode, Signature: Encode, Call: Encode, Extra: SignedExtension,

§

impl<Address, Call, Signature, Extra> From<UncheckedExtrinsic<Address, Call, Signature, Extra>> for gclient::ext::sp_runtime::app_crypto::Vec<u8>

§

impl<Balance> From<SmallVec<[WeightToFeeCoefficient<Balance>; 4]>> for FeePolynomial<Balance>

§

impl<C, I> From<(C, I)> for TlsAcceptor
where C: Into<Arc<ServerConfig>>, I: Into<AddrIncoming>,

§

impl<Context> From<RpcModule<Context>> for Methods

source§

impl<D> From<&'static str> for Full<D>
where D: Buf + From<&'static str>,

source§

impl<D> From<&'static [u8]> for Full<D>
where D: Buf + From<&'static [u8]>,

source§

impl<D> From<Vec<u8>> for Full<D>
where D: Buf + From<Vec<u8>>,

source§

impl<D> From<String> for Full<D>
where D: Buf + From<String>,

source§

impl<D> From<Bytes> for Full<D>
where D: Buf + From<Bytes>,

source§

impl<D, B> From<Cow<'static, B>> for Full<D>
where D: Buf + From<&'static B> + From<<B as ToOwned>::Owned>, B: ToOwned + ?Sized,

§

impl<Data> From<ConnectionCore<Data>> for ConnectionCommon<Data>

source§

impl<E> From<E> for Report<E>
where E: Error,

source§

impl<E> From<E> for anyhow::Error
where E: Error + Send + Sync + 'static,

§

impl<E> From<Rel32<E>> for Rela32<E>
where E: Endian,

§

impl<E> From<Rel32<E>> for Rela32<E>
where E: Endian,

§

impl<E> From<Rel64<E>> for Rela64<E>
where E: Endian,

§

impl<E> From<Rel64<E>> for Rela64<E>
where E: Endian,

§

impl<F> From<TypeDefPrimitive> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefPrimitive> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefArray<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefArray<F>> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefBitSequence<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefBitSequence<F>> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefCompact<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefCompact<F>> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefComposite<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefSequence<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefSequence<F>> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefTuple<F>> for TypeDef<F>
where F: Form,

§

impl<F> From<TypeDefTuple<F>> for gclient::ext::sp_runtime::scale_info::Type<F>
where F: Form,

§

impl<F> From<TypeDefVariant<F>> for TypeDef<F>
where F: Form,

source§

impl<F> From<F> for FilterFn<F>
where F: Fn(&Metadata<'_>) -> bool,

source§

impl<F, S> From<F> for DynFilterFn<S, F>
where F: Fn(&Metadata<'_>, &Context<'_, S>) -> bool,

§

impl<H> From<&StorageProof> for MemoryDB<H, HashKey<H>, Vec<u8>>
where H: Hasher,

§

impl<H> From<(Vec<(Option<ChildInfo>, Vec<(Vec<u8>, Option<Vec<u8>>)>)>, StateVersion)> for TrieBackend<MemoryDB<H, PrefixedKey<H>, Vec<u8>>, H>
where H: Hasher, <H as Hasher>::Out: Codec + Ord,

§

impl<H> From<(Storage, StateVersion)> for TestExternalities<H>
where H: Hasher, <H as Hasher>::Out: Ord + 'static + Codec,

§

impl<H> From<(Storage, StateVersion)> for TrieBackend<MemoryDB<H, PrefixedKey<H>, Vec<u8>>, H>
where H: Hasher, <H as Hasher>::Out: Codec + Ord,

§

impl<H> From<(BTreeMap<Vec<u8>, Vec<u8>>, StateVersion)> for TrieBackend<MemoryDB<H, PrefixedKey<H>, Vec<u8>>, H>
where H: Hasher, <H as Hasher>::Out: Codec + Ord,

§

impl<H> From<(HashMap<Option<ChildInfo>, BTreeMap<Vec<u8>, Vec<u8>>>, StateVersion)> for TrieBackend<MemoryDB<H, PrefixedKey<H>, Vec<u8>>, H>
where H: Hasher, <H as Hasher>::Out: Codec + Ord,

§

impl<H> From<(Bytes, H)> for CachedValue<H>

§

impl<H> From<Option<(Bytes, H)>> for CachedValue<H>

§

impl<H> From<Option<H>> for CachedValue<H>

§

impl<H> From<Error> for Error<H>

§

impl<H> From<Storage> for OverlayedChanges<H>
where H: Hasher,

§

impl<H> From<Storage> for TestExternalities<H>
where H: Hasher, <H as Hasher>::Out: Ord + 'static + Codec,

§

impl<H> From<Box<TrieError<H, Error<H>>>> for Error<H>

§

impl<H> From<H> for BlockRef<H>

§

impl<H> From<H> for CachedValue<H>

§

impl<H> From<H> for XoFTranscript<H>
where H: Input + ExtendableOutput + Clone,

§

impl<H> From<StorageProof> for MemoryDB<H, HashKey<H>, Vec<u8>>
where H: Hasher,

§

impl<H, C> From<(H, C)> for HttpsConnector<H>
where C: Into<Arc<ClientConfig>>,

§

impl<H, CodecError> From<Box<TrieError<H, CodecError>>> for Error<H, CodecError>

§

impl<Hash> From<BlockRef<Hash>> for BlockRef<Hash>
where Hash: BlockHash + 'static,

1.17.0 · source§

impl<I> From<(I, u16)> for SocketAddr
where I: Into<IpAddr>,

§

impl<I> From<I> for KeyValueStates
where I: IntoIterator<Item = (Vec<u8>, (Vec<(Vec<u8>, Vec<u8>)>, Vec<Vec<u8>>))>,

source§

impl<JobErr> From<(UnlockPayloadBound, Result<(), JobErr>)> for DropPayloadLockBound<JobErr>

§

impl<K, V> From<&Slice<K, V>> for gclient::ext::sp_core::sp_std::prelude::Box<Slice<K, V>>
where K: Copy, V: Copy,

§

impl<K, V> From<Vec<(K, V)>> for Composite<()>
where K: Into<String>, V: Into<Value>,

§

impl<K, V> From<Vec<(K, V)>> for Value
where K: Into<String>, V: Into<Value>,

§

impl<K, V> From<Vec<(K, V)>> for ValueDef<()>
where K: Into<String>, V: Into<Value>,

§

impl<K, V> From<HashMap<K, V, RandomState>> for AHashMap<K, V>

§

impl<K, V, A, const N: usize> From<[(K, V); N]> for HashMap<K, V, BuildHasherDefault<AHasher>, A>
where K: Eq + Hash, A: Default + Allocator + Clone,

§

impl<K, V, A, const N: usize> From<[(K, V); N]> for HashMap<K, V, BuildHasherDefault<AHasher>, A>
where K: Eq + Hash, A: Default + Allocator,

§

impl<K, V, A, const N: usize> From<[(K, V); N]> for HashMap<K, V, RandomState, A>
where K: Eq + Hash, A: Default + Allocator + Clone,

§

impl<K, V, S> From<BoundedBTreeMap<K, V, S>> for BTreeMap<K, V>
where K: Ord,

1.56.0 · source§

impl<K, V, const N: usize> From<[(K, V); N]> for BTreeMap<K, V>
where K: Ord,

1.56.0 · source§

impl<K, V, const N: usize> From<[(K, V); N]> for std::collections::hash::map::HashMap<K, V>
where K: Eq + Hash,

source§

impl<K, V, const N: usize> From<[(K, V); N]> for indexmap::map::IndexMap<K, V>
where K: Hash + Eq,

§

impl<K, V, const N: usize> From<[(K, V); N]> for AHashMap<K, V>
where K: Eq + Hash,

§

impl<K, V, const N: usize> From<[(K, V); N]> for IndexMap<K, V>
where K: Ord + Clone,

§

impl<K, V, const N: usize> From<[(K, V); N]> for IndexMap<K, V>
where K: Hash + Eq,

§

impl<L> From<&ValueOwned<<<L as TrieLayout>::Hash as Hasher>::Out>> for Value<L>
where L: TrieLayout,

§

impl<L> From<(Bytes, Option<u32>)> for Value<L>
where L: TrieLayout,

source§

impl<L, R> From<Result<R, L>> for Either<L, R>

Convert from Result to Either with Ok => Right and Err => Left.

source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

§

impl<M, T, O> From<Range<BitPtr<M, T, O>>> for BitPtrRange<M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

§

impl<M, T, O> From<BitPtrRange<M, T, O>> for Range<BitPtr<M, T, O>>
where M: Mutability, T: BitStore, O: BitOrder,

§

impl<N, D> From<(N, D)> for FixedI64

§

impl<N, D> From<(N, D)> for FixedI128

§

impl<N, D> From<(N, D)> for FixedU64

§

impl<N, D> From<(N, D)> for gclient::ext::sp_runtime::FixedU128

source§

impl<N, E, F, W> From<SubscriberBuilder<N, E, F, W>> for Dispatch
where N: for<'writer> FormatFields<'writer> + 'static, E: FormatEvent<Registry, N> + 'static, W: MakeWriter + 'static, F: Layer<Layered<Layer<Registry, N, E, W>, Registry>> + Send + Sync + 'static, Layer<Registry, N, E, W>: Layer<Registry> + Send + Sync + 'static,

§

impl<NI> From<u32x4x2_avx2<NI>> for vec256_storage

§

impl<NI> From<x2<u32x4x2_avx2<NI>, G0>> for vec512_storage
where NI: Copy,

§

impl<P> From<P> for FixedI64

§

impl<P> From<P> for FixedI128

§

impl<P> From<P> for FixedU64

§

impl<P> From<P> for gclient::ext::sp_runtime::FixedU128

§

impl<P> From<VMOffsetsFields<P>> for VMOffsets<P>
where P: PtrSize,

§

impl<R> From<R> for DebugAbbrev<R>

§

impl<R> From<R> for DebugAbbrev<R>

§

impl<R> From<R> for DebugAddr<R>

§

impl<R> From<R> for DebugAddr<R>

§

impl<R> From<R> for DebugAranges<R>

§

impl<R> From<R> for DebugAranges<R>

§

impl<R> From<R> for DebugCuIndex<R>

§

impl<R> From<R> for DebugCuIndex<R>

§

impl<R> From<R> for DebugFrame<R>
where R: Reader,

§

impl<R> From<R> for DebugFrame<R>
where R: Reader,

§

impl<R> From<R> for DebugInfo<R>

§

impl<R> From<R> for DebugInfo<R>

§

impl<R> From<R> for DebugLine<R>

§

impl<R> From<R> for DebugLine<R>

§

impl<R> From<R> for DebugLineStr<R>

§

impl<R> From<R> for DebugLineStr<R>

§

impl<R> From<R> for DebugLoc<R>

§

impl<R> From<R> for DebugLoc<R>

§

impl<R> From<R> for DebugLocLists<R>

§

impl<R> From<R> for DebugLocLists<R>

§

impl<R> From<R> for DebugPubNames<R>
where R: Reader,

§

impl<R> From<R> for DebugPubNames<R>
where R: Reader,

§

impl<R> From<R> for DebugPubTypes<R>
where R: Reader,

§

impl<R> From<R> for DebugPubTypes<R>
where R: Reader,

§

impl<R> From<R> for DebugRanges<R>

§

impl<R> From<R> for DebugRanges<R>

§

impl<R> From<R> for DebugRngLists<R>

§

impl<R> From<R> for DebugRngLists<R>

§

impl<R> From<R> for DebugStr<R>

§

impl<R> From<R> for DebugStr<R>

§

impl<R> From<R> for DebugStrOffsets<R>

§

impl<R> From<R> for DebugStrOffsets<R>

§

impl<R> From<R> for DebugTuIndex<R>

§

impl<R> From<R> for DebugTuIndex<R>

§

impl<R> From<R> for DebugTypes<R>

§

impl<R> From<R> for DebugTypes<R>

§

impl<R> From<R> for EhFrame<R>
where R: Reader,

§

impl<R> From<R> for EhFrame<R>
where R: Reader,

§

impl<R> From<R> for EhFrameHdr<R>
where R: Reader,

§

impl<R> From<R> for EhFrameHdr<R>
where R: Reader,

§

impl<R, G, T> From<T> for ReentrantMutex<R, G, T>
where R: RawMutex, G: GetThreadId,

§

impl<R, T> From<T> for Mutex<R, T>
where R: RawMutex,

§

impl<R, T> From<T> for RwLock<R, T>
where R: RawRwLock,

§

impl<RW> From<BufReader<BufWriter<RW>>> for BufStream<RW>

§

impl<RW> From<BufWriter<BufReader<RW>>> for BufStream<RW>

§

impl<S3, S4, NI> From<u32x4_sse2<S3, S4, NI>> for vec128_storage

§

impl<S3, S4, NI> From<u64x2_sse2<S3, S4, NI>> for vec128_storage

§

impl<S3, S4, NI> From<u128x1_sse2<S3, S4, NI>> for vec128_storage

source§

impl<S> From<S> for Secret<S>
where S: Zeroize,

source§

impl<S> From<S> for EnvFilter
where S: AsRef<str>,

§

impl<S> From<S> for Dispatch
where S: Subscriber + Send + Sync + 'static,

§

impl<T1, T2> From<Result<(T1, T2), u32>> for ErrorWithTwoHashes
where T1: Into<[u8; 32]>, T2: Into<[u8; 32]>,

source§

impl<T> From<&[T]> for serde_json::value::Value
where T: Clone + Into<Value>,

source§

impl<T> From<&[T]> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where T: Clone,

1.21.0 · source§

impl<T> From<&[T]> for Rc<[T]>
where T: Clone,

1.17.0 · source§

impl<T> From<&[T]> for gclient::ext::sp_core::sp_std::prelude::Box<[T]>
where T: Clone,

1.21.0 · source§

impl<T> From<&[T]> for Arc<[T]>
where T: Clone,

§

impl<T> From<&[T]> for Vec<T>
where T: Clone,

§

impl<T> From<&str> for ValueDef<T>

§

impl<T> From<&Slice<T>> for gclient::ext::sp_core::sp_std::prelude::Box<Slice<T>>
where T: Copy,

1.19.0 · source§

impl<T> From<&mut [T]> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where T: Clone,

§

impl<T> From<&mut [T]> for Vec<T>
where T: Clone,

§

impl<T> From<(<T as Form>::String, Option<<T as Form>::Type>)> for TypeParameter<T>
where T: Form,

§

impl<T> From<(Path<T>, Vec<TypeParameter<T>>, TypeDef<T>, Vec<<T as Form>::String>)> for gclient::ext::sp_runtime::scale_info::Type<T>
where T: Form,

§

impl<T> From<(T, Vec<T>)> for NonEmpty<T>

1.45.0 · source§

impl<T> From<Cow<'_, [T]>> for gclient::ext::sp_core::sp_std::prelude::Box<[T]>
where T: Clone,

§

impl<T> From<Result<T, u32>> for ErrorWithHash
where T: Into<[u8; 32]>,

§

impl<T> From<Option<Interval<T>>> for IntervalIterator<T>

source§

impl<T> From<Option<T>> for serde_json::value::Value
where T: Into<Value>,

source§

impl<T> From<Option<T>> for EitherWriter<T, Sink>

§

impl<T> From<Option<T>> for OptionBound<T>

§

impl<T> From<Option<T>> for OptionFuture<T>

§

impl<T> From<Option<T>> for PackedOption<T>
where T: ReservedValue,

1.71.0 · source§

impl<T> From<[T; 1]> for (T,)

§

impl<T> From<[T; 1]> for GenericArray<T, UInt<UTerm, B1>>

§

impl<T> From<[T; 1]> for GenericArray<T, UInt<UTerm, B1>>

1.71.0 · source§

impl<T> From<[T; 2]> for (T, T)

§

impl<T> From<[T; 2]> for GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

§

impl<T> From<[T; 2]> for GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 3]> for (T, T, T)

§

impl<T> From<[T; 3]> for GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

§

impl<T> From<[T; 3]> for GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 4]> for (T, T, T, T)

§

impl<T> From<[T; 4]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

§

impl<T> From<[T; 4]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

1.71.0 · source§

impl<T> From<[T; 5]> for (T, T, T, T, T)

§

impl<T> From<[T; 5]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

§

impl<T> From<[T; 5]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

1.71.0 · source§

impl<T> From<[T; 6]> for (T, T, T, T, T, T)

§

impl<T> From<[T; 6]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

§

impl<T> From<[T; 6]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 7]> for (T, T, T, T, T, T, T)

§

impl<T> From<[T; 7]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

§

impl<T> From<[T; 7]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 8]> for (T, T, T, T, T, T, T, T)

§

impl<T> From<[T; 8]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 8]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

1.71.0 · source§

impl<T> From<[T; 9]> for (T, T, T, T, T, T, T, T, T)

§

impl<T> From<[T; 9]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

§

impl<T> From<[T; 9]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

1.71.0 · source§

impl<T> From<[T; 10]> for (T, T, T, T, T, T, T, T, T, T)

§

impl<T> From<[T; 10]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 10]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

1.71.0 · source§

impl<T> From<[T; 11]> for (T, T, T, T, T, T, T, T, T, T, T)

§

impl<T> From<[T; 11]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

§

impl<T> From<[T; 11]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

1.71.0 · source§

impl<T> From<[T; 12]> for (T, T, T, T, T, T, T, T, T, T, T, T)

§

impl<T> From<[T; 12]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 12]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 13]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 13]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 14]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 14]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 15]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 15]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 16]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 16]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 17]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

§

impl<T> From<[T; 17]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

§

impl<T> From<[T; 18]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

§

impl<T> From<[T; 18]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

§

impl<T> From<[T; 19]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

§

impl<T> From<[T; 19]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

§

impl<T> From<[T; 20]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 20]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 21]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

§

impl<T> From<[T; 21]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

§

impl<T> From<[T; 22]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

§

impl<T> From<[T; 22]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

§

impl<T> From<[T; 23]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

§

impl<T> From<[T; 23]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

§

impl<T> From<[T; 24]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 24]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 25]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

§

impl<T> From<[T; 25]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

§

impl<T> From<[T; 26]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 26]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 27]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

§

impl<T> From<[T; 27]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

§

impl<T> From<[T; 28]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 28]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 29]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 29]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 30]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 30]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 31]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 31]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 32]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 32]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 33]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

§

impl<T> From<[T; 34]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

§

impl<T> From<[T; 35]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

§

impl<T> From<[T; 36]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 37]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

§

impl<T> From<[T; 38]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

§

impl<T> From<[T; 39]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

§

impl<T> From<[T; 40]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 41]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

§

impl<T> From<[T; 42]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 43]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

§

impl<T> From<[T; 44]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 45]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 46]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 47]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 48]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 49]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

§

impl<T> From<[T; 50]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

§

impl<T> From<[T; 51]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

§

impl<T> From<[T; 52]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 53]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

§

impl<T> From<[T; 54]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

§

impl<T> From<[T; 55]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

§

impl<T> From<[T; 56]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 57]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

§

impl<T> From<[T; 58]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 59]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

§

impl<T> From<[T; 60]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 61]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

§

impl<T> From<[T; 62]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

§

impl<T> From<[T; 63]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

§

impl<T> From<[T; 64]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 70]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

§

impl<T> From<[T; 80]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 90]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

§

impl<T> From<[T; 100]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 128]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 200]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 256]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 300]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

§

impl<T> From<[T; 400]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 500]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

§

impl<T> From<[T; 512]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<[T; 1000]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

§

impl<T> From<[T; 1024]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

§

impl<T> From<bool> for ValueDef<T>

§

impl<T> From<char> for ValueDef<T>

§

impl<T> From<i8> for ValueDef<T>

§

impl<T> From<i16> for ValueDef<T>

§

impl<T> From<i32> for ValueDef<T>

§

impl<T> From<i64> for ValueDef<T>

§

impl<T> From<i128> for ValueDef<T>

§

impl<T> From<isize> for ValueDef<T>

1.34.0 · source§

impl<T> From<!> for T

Stability note: This impl does not yet exist, but we are “reserving space” to add it in the future. See rust-lang/rust#64715 for details.

1.23.0 · source§

impl<T> From<*mut T> for AtomicPtr<T>

1.25.0 · source§

impl<T> From<&T> for NonNull<T>
where T: ?Sized,

source§

impl<T> From<&T> for OsString
where T: AsRef<OsStr> + ?Sized,

source§

impl<T> From<&T> for PathBuf
where T: AsRef<OsStr> + ?Sized,

§

impl<T> From<&T> for Address<Const, T>
where T: ?Sized,

1.25.0 · source§

impl<T> From<&mut T> for NonNull<T>
where T: ?Sized,

§

impl<T> From<&mut T> for Address<Mut, T>
where T: ?Sized,

1.71.0 · source§

impl<T> From<(T, T)> for [T; 2]

source§

impl<T> From<(T, T)> for Ratio<T>
where T: Clone + Integer,

1.71.0 · source§

impl<T> From<(T, T, T)> for [T; 3]

1.71.0 · source§

impl<T> From<(T, T, T, T)> for [T; 4]

1.71.0 · source§

impl<T> From<(T, T, T, T, T)> for [T; 5]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T)> for [T; 6]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T)> for [T; 7]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T)> for [T; 8]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T)> for [T; 9]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T)> for [T; 10]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T, T)> for [T; 11]

1.71.0 · source§

impl<T> From<(T, T, T, T, T, T, T, T, T, T, T, T)> for [T; 12]

1.71.0 · source§

impl<T> From<(T,)> for [T; 1]

§

impl<T> From<u8> for ValueDef<T>

§

impl<T> From<u16> for ValueDef<T>

§

impl<T> From<u32> for UntrackedSymbol<T>

§

impl<T> From<u32> for Pointer<T>
where T: PointerType,

§

impl<T> From<u32> for ValueDef<T>

source§

impl<T> From<u64> for CostOf<T>

§

impl<T> From<u64> for ValueDef<T>

§

impl<T> From<u128> for ValueDef<T>

§

impl<T> From<usize> for ValueDef<T>

source§

impl<T> From<CostOf<T>> for u64

§

impl<T> From<Vec<Field<T>>> for TypeDefComposite<T>
where T: Form,

§

impl<T> From<Vec<Variant<T>>> for TypeDefVariant<T>
where T: Form,

source§

impl<T> From<Vec<T>> for serde_json::value::Value
where T: Into<Value>,

§

impl<T> From<DispatchErrorWithPostInfo<T>> for &'static str
where T: Eq + PartialEq + Clone + Copy + Encode + Decode + Printable,

§

impl<T> From<String> for ValueDef<T>

§

impl<T> From<RangeFull> for Interval<T>
where T: Numerated + UpperBounded + LowerBounded,

§

impl<T> From<RangeFull> for IntervalIterator<T>
where T: Numerated + LowerBounded + UpperBounded,

§

impl<T> From<RangeToInclusive<T>> for Interval<T>
where T: Numerated + LowerBounded,

§

impl<T> From<RangeToInclusive<T>> for IntervalIterator<T>
where T: Numerated + LowerBounded,

1.24.0 · source§

impl<T> From<SendError<T>> for gclient::ext::sp_core::sp_std::sync::mpsc::TrySendError<T>

source§

impl<T> From<PoisonError<T>> for TryLockError<T>

§

impl<T> From<HashSet<T, RandomState>> for AHashSet<T>

source§

impl<T> From<Port<T>> for u16

source§

impl<T> From<CtOption<T>> for Option<T>

§

impl<T> From<AsyncFdTryNewError<T>> for std::io::error::Error

§

impl<T> From<BitPtrError<T>> for BitSpanError<T>
where T: BitStore,

§

impl<T> From<Bits> for ValueDef<T>

§

impl<T> From<Composite<T>> for ValueDef<T>

§

impl<T> From<DebugInfoOffset<T>> for UnitSectionOffset<T>

§

impl<T> From<DebugInfoOffset<T>> for UnitSectionOffset<T>

§

impl<T> From<DebugTypesOffset<T>> for UnitSectionOffset<T>

§

impl<T> From<DebugTypesOffset<T>> for UnitSectionOffset<T>

§

impl<T> From<GenericArray<u8, <T as OutputSizeUser>::OutputSize>> for CtOutput<T>
where T: OutputSizeUser,

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 1024]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 512]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>> for [T; 1000]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 256]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>> for [T; 300]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>> for [T; 400]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>> for [T; 500]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 128]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>> for [T; 200]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for [T; 64]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>> for [T; 70]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>> for [T; 80]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>> for [T; 90]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>> for [T; 100]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>> for [T; 32]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>> for [T; 33]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>> for [T; 34]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>> for [T; 35]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>> for [T; 36]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>> for [T; 37]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>> for [T; 38]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>> for [T; 39]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>> for [T; 40]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>> for [T; 41]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>> for [T; 42]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>> for [T; 43]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>> for [T; 44]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>> for [T; 45]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>> for [T; 46]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>> for [T; 47]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>> for [T; 48]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>> for [T; 49]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>> for [T; 50]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>> for [T; 51]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>> for [T; 52]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>> for [T; 53]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>> for [T; 54]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>> for [T; 55]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>> for [T; 56]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>> for [T; 57]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>> for [T; 58]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>> for [T; 59]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>> for [T; 60]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>> for [T; 61]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>> for [T; 62]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>> for [T; 63]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>> for [T; 16]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>> for [T; 17]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>> for [T; 18]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>> for [T; 19]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>> for [T; 20]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>> for [T; 21]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>> for [T; 22]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>> for [T; 23]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>> for [T; 24]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>> for [T; 25]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>> for [T; 26]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>> for [T; 27]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>> for [T; 28]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>> for [T; 29]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>> for [T; 30]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>> for [T; 31]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>> for [T; 8]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>> for [T; 9]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>> for [T; 10]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>> for [T; 11]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>> for [T; 12]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>> for [T; 13]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>> for [T; 14]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>> for [T; 15]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>> for [T; 4]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>> for [T; 5]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>> for [T; 6]

§

impl<T> From<GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>> for [T; 7]

§

impl<T> From<GenericArray<T, UInt<UInt<UTerm, B1>, B0>>> for [T; 2]

§

impl<T> From<GenericArray<T, UInt<UInt<UTerm, B1>, B1>>> for [T; 3]

§

impl<T> From<GenericArray<T, UInt<UTerm, B1>>> for [T; 1]

§

impl<T> From<GenericTransportError<T>> for Error
where T: Error + Send + Sync + 'static,

§

impl<T> From<Interval<T>> for (T, T)
where T: Numerated,

§

impl<T> From<Interval<T>> for RangeInclusive<T>
where T: Numerated,

§

impl<T> From<Interval<T>> for IntervalIterator<T>
where T: Numerated,

§

impl<T> From<MisalignError<T>> for BitPtrError<T>
where T: BitStore,

§

impl<T> From<MisalignError<T>> for BitSpanError<T>
where T: BitStore,

§

impl<T> From<NonEmpty<T>> for (T, Vec<T>)

§

impl<T> From<NonEmpty<T>> for gclient::ext::sp_runtime::app_crypto::Vec<T>

§

impl<T> From<NonEmpty<T>> for NonEmpty<T>

§

impl<T> From<NullPtrError> for BitPtrError<T>
where T: BitStore,

§

impl<T> From<Pointer<T>> for u32
where T: PointerType,

§

impl<T> From<Pointer<T>> for u64
where T: PointerType,

§

impl<T> From<Pointer<T>> for usize
where T: PointerType,

§

impl<T> From<Primitive> for ValueDef<T>

§

impl<T> From<Receiver<T>> for ReceiverStream<T>

§

impl<T> From<SendError<T>> for TrySendError<T>

§

impl<T> From<T> for DeriveJunction
where T: AsRef<str>,

1.12.0 · source§

impl<T> From<T> for Option<T>

1.36.0 · source§

impl<T> From<T> for Poll<T>

§

impl<T> From<T> for Compact<T>

§

impl<T> From<T> for Rational128
where T: Into<u128>,

1.6.0 · source§

impl<T> From<T> for Rc<T>

1.12.0 · source§

impl<T> From<T> for Cell<T>

1.70.0 · source§

impl<T> From<T> for gclient::ext::sp_core::sp_std::cell::OnceCell<T>

1.12.0 · source§

impl<T> From<T> for RefCell<T>

source§

impl<T> From<T> for SyncUnsafeCell<T>

1.12.0 · source§

impl<T> From<T> for UnsafeCell<T>

1.6.0 · source§

impl<T> From<T> for gclient::ext::sp_core::sp_std::prelude::Box<T>

1.6.0 · source§

impl<T> From<T> for Arc<T>

source§

impl<T> From<T> for Exclusive<T>

1.24.0 · source§

impl<T> From<T> for gclient::ext::sp_core::sp_std::sync::Mutex<T>

1.70.0 · source§

impl<T> From<T> for OnceLock<T>

1.24.0 · source§

impl<T> From<T> for gclient::ext::sp_core::sp_std::sync::RwLock<T>

source§

impl<T> From<T> for Ratio<T>
where T: Clone + Integer,

§

impl<T> From<T> for Box<T>

§

impl<T> From<T> for DebugFrameOffset<T>

§

impl<T> From<T> for DebugFrameOffset<T>

§

impl<T> From<T> for EhFrameOffset<T>

§

impl<T> From<T> for EhFrameOffset<T>

§

impl<T> From<T> for Interval<T>
where T: Numerated,

§

impl<T> From<T> for IntervalIterator<T>
where T: Numerated,

§

impl<T> From<T> for MaybeHttpsStream<T>

§

impl<T> From<T> for Message
where T: ThirtyTwoByteHash,

§

impl<T> From<T> for Mutex<T>

§

impl<T> From<T> for Mutex<T>

§

impl<T> From<T> for Mutex<T>

§

impl<T> From<T> for OnceCell<T>

§

impl<T> From<T> for OnceCell<T>

§

impl<T> From<T> for OnceCell<T>

§

impl<T> From<T> for OnceCell<T>

§

impl<T> From<T> for OptionBound<T>

§

impl<T> From<T> for PackedOption<T>
where T: ReservedValue,

§

impl<T> From<T> for RwLock<T>

§

impl<T> From<T> for RwLock<T>

§

impl<T> From<T> for Static<T>

§

impl<T> From<T> for StringError
where T: ToString,

source§

impl<T> From<T> for T

§

impl<T> From<TlsStream<T>> for MaybeHttpsStream<T>

§

impl<T> From<TlsStream<T>> for TlsStream<T>

§

impl<T> From<TlsStream<T>> for TlsStream<T>

§

impl<T> From<UnboundedReceiver<T>> for UnboundedReceiverStream<T>

§

impl<T> From<Variant<T>> for ValueDef<T>

§

impl<T, A> From<&[T]> for Box<[T], A>
where T: Copy, A: Allocator + Default,

§

impl<T, A> From<&[T]> for TinyVec<A>
where T: Clone + Default, A: Array<Item = T>,

§

impl<T, A> From<&mut [T]> for TinyVec<A>
where T: Clone + Default, A: Array<Item = T>,

1.5.0 · source§

impl<T, A> From<Vec<T, A>> for BinaryHeap<T, A>
where T: Ord, A: Allocator,

1.10.0 · source§

impl<T, A> From<Vec<T, A>> for VecDeque<T, A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Vec<T, A>> for Rc<[T], A>
where A: Allocator,

1.20.0 · source§

impl<T, A> From<Vec<T, A>> for gclient::ext::sp_core::sp_std::prelude::Box<[T], A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Vec<T, A>> for Arc<[T], A>
where A: Allocator + Clone,

1.5.0 · source§

impl<T, A> From<BinaryHeap<T, A>> for gclient::ext::sp_runtime::app_crypto::Vec<T, A>
where A: Allocator,

1.10.0 · source§

impl<T, A> From<VecDeque<T, A>> for gclient::ext::sp_runtime::app_crypto::Vec<T, A>
where A: Allocator,

1.18.0 · source§

impl<T, A> From<Box<[T], A>> for gclient::ext::sp_runtime::app_crypto::Vec<T, A>
where A: Allocator,

1.21.0 · source§

impl<T, A> From<Box<T, A>> for Rc<T, A>
where A: Allocator, T: ?Sized,

1.21.0 · source§

impl<T, A> From<Box<T, A>> for Arc<T, A>
where A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> From<Box<T, A>> for Pin<Box<T, A>>
where A: Allocator + 'static, T: ?Sized,

§

impl<T, A> From<Box<[T], A>> for Vec<T, A>
where A: Allocator,

§

impl<T, A> From<Box<T, A>> for Pin<Box<T, A>>
where A: Allocator + 'static, T: ?Sized,

§

impl<T, A> From<Vec<T, A>> for Box<[T], A>
where A: Allocator,

§

impl<T, A, const N: usize> From<[T; N]> for HashSet<T, BuildHasherDefault<AHasher>, A>
where T: Eq + Hash, A: Default + Allocator + Clone,

§

impl<T, A, const N: usize> From<[T; N]> for HashSet<T, BuildHasherDefault<AHasher>, A>
where T: Eq + Hash, A: Default + Allocator,

§

impl<T, A, const N: usize> From<[T; N]> for HashSet<T, RandomState, A>
where T: Eq + Hash, A: Default + Allocator + Clone,

§

impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A>
where A: Allocator,

§

impl<T, E> From<E> for DispatchErrorWithPostInfo<T>

§

impl<T, I> From<RangeFrom<I>> for IntervalIterator<T>
where T: Numerated + UpperBounded, I: Into<<T as Numerated>::Bound>,

§

impl<T, I> From<RangeTo<I>> for IntervalIterator<T>
where T: Numerated + LowerBounded + UpperBounded, I: Into<<T as Numerated>::Bound>,

§

impl<T, O> From<&BitSlice<T, O>> for BitBox<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<&BitSlice<T, O>> for BitVec<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<&mut BitSlice<T, O>> for BitVec<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<&T> for BitPtr<Const, T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<&mut T> for BitPtr<Mut, T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<Box<T>> for BitBox<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<BitBox<T, O>> for gclient::ext::sp_core::sp_std::prelude::Box<[T]>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<BitBox<T, O>> for BitVec<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<BitVec<T, O>> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where T: BitStore, O: BitOrder,

§

impl<T, O> From<BitVec<T, O>> for BitBox<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, S> From<BoundedBTreeSet<T, S>> for BTreeSet<T>
where T: Ord,

§

impl<T, S> From<BoundedVec<T, S>> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where S: Get<u32>,

§

impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>
where A: Allocator + Clone,

§

impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>
where A: Allocator + Clone,

§

impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>
where A: Allocator,

§

impl<T, U> From<Vec<T>> for Cow<'_, [T], U>
where T: Clone, U: Capacity,

source§

impl<T, const CAP: usize> From<[T; CAP]> for arrayvec::arrayvec::ArrayVec<T, CAP>

Create an ArrayVec from an array.

use arrayvec::ArrayVec;

let mut array = ArrayVec::from([1, 2, 3]);
assert_eq!(array.len(), 3);
assert_eq!(array.capacity(), 3);
1.74.0 · source§

impl<T, const N: usize> From<&[T; N]> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where T: Clone,

1.74.0 · source§

impl<T, const N: usize> From<&mut [T; N]> for gclient::ext::sp_runtime::app_crypto::Vec<T>
where T: Clone,

1.44.0 · source§

impl<T, const N: usize> From<[T; N]> for gclient::ext::sp_runtime::app_crypto::Vec<T>

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for BTreeSet<T>
where T: Ord,

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for BinaryHeap<T>
where T: Ord,

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for LinkedList<T>

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for VecDeque<T>

1.74.0 · source§

impl<T, const N: usize> From<[T; N]> for Rc<[T]>

1.45.0 · source§

impl<T, const N: usize> From<[T; N]> for gclient::ext::sp_core::sp_std::prelude::Box<[T]>

1.74.0 · source§

impl<T, const N: usize> From<[T; N]> for Arc<[T]>

source§

impl<T, const N: usize> From<[T; N]> for Simd<T, N>

1.56.0 · source§

impl<T, const N: usize> From<[T; N]> for std::collections::hash::set::HashSet<T>
where T: Eq + Hash,

source§

impl<T, const N: usize> From<[T; N]> for indexmap::set::IndexSet<T>
where T: Eq + Hash,

§

impl<T, const N: usize> From<[T; N]> for AHashSet<T>
where T: Eq + Hash,

§

impl<T, const N: usize> From<[T; N]> for Box<[T]>

§

impl<T, const N: usize> From<[T; N]> for IndexSet<T>
where T: Eq + Hash,

§

impl<T, const N: usize> From<[T; N]> for IndexSet<T>
where T: Ord + Clone,

§

impl<T, const N: usize> From<[T; N]> for Vec<T>

source§

impl<T, const N: usize> From<Mask<T, N>> for [bool; N]

source§

impl<T, const N: usize> From<Simd<T, N>> for [T; N]

source§

impl<T, const N: usize> From<Mask<T, N>> for Simd<T, N>

source§

impl<T, const N: usize> From<[bool; N]> for Mask<T, N>

source§

impl<Tz> From<DateTime<Tz>> for SystemTime
where Tz: TimeZone,

§

impl<U> From<String> for Cow<'_, str, U>
where U: Capacity,

§

impl<U> From<U> for Trap
where U: HostError,

§

impl<V> From<Vec<V>> for Composite<()>
where V: Into<Value>,

§

impl<V> From<Vec<V>> for Value
where V: Into<Value>,

§

impl<V> From<Vec<V>> for ValueDef<()>
where V: Into<Value>,

1.51.0 · source§

impl<W> From<Arc<W>> for RawWaker
where W: Wake + Send + Sync + 'static,

1.51.0 · source§

impl<W> From<Arc<W>> for Waker
where W: Wake + Send + Sync + 'static,

source§

impl<W> From<IntoInnerError<W>> for std::io::error::Error

§

impl<W> From<W> for DebugAbbrev<W>
where W: Writer,

§

impl<W> From<W> for DebugFrame<W>
where W: Writer,

§

impl<W> From<W> for DebugInfo<W>
where W: Writer,

§

impl<W> From<W> for DebugLine<W>
where W: Writer,

§

impl<W> From<W> for DebugLineStr<W>
where W: Writer,

§

impl<W> From<W> for DebugLoc<W>
where W: Writer,

§

impl<W> From<W> for DebugLocLists<W>
where W: Writer,

§

impl<W> From<W> for DebugRanges<W>
where W: Writer,

§

impl<W> From<W> for DebugRngLists<W>
where W: Writer,

§

impl<W> From<W> for DebugStr<W>
where W: Writer,

§

impl<W> From<W> for EhFrame<W>
where W: Writer,

§

impl<W> From<x4<W>> for vec512_storage
where W: Copy, vec128_storage: From<W>,

§

impl<W, G> From<x2<W, G>> for vec256_storage
where W: Copy, vec128_storage: From<W>,

source§

impl<X> From<Range<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<Range<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<RangeInclusive<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

source§

impl<X> From<RangeInclusive<X>> for rand::distributions::uniform::Uniform<X>
where X: SampleUniform,

§

impl<Xt> From<Xt> for ExtrinsicWrapper<Xt>

§

impl<Z> From<Z> for Zeroizing<Z>
where Z: Zeroize,

source§

impl<_0> From<Compact<BitFlags<_0>>> for BitFlags<_0>

§

impl<const N: usize> From<([RegularParamType; N], ErrPtr)> for FallibleSyscallSignature

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i8, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i16, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<i64, N>

source§

impl<const N: usize> From<Mask<i32, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<i64, N>> for Mask<isize, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i8, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i16, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i32, N>

source§

impl<const N: usize> From<Mask<isize, N>> for Mask<i64, N>

§

impl<const N: usize> From<[u8; N]> for BString

§

impl<const N: usize> From<[RegularParamType; N]> for InfallibleSyscallSignature

§

impl<const N: usize, const M: usize> From<([RegularParamType; N], [ValueType; M])> for SystemSyscallSignature

source§

impl<const SIZE: u32> From<Option<Page<SIZE>>> for gear_core::pages::PagesAmount<SIZE>

source§

impl<const SIZE: u32> From<Page<SIZE>> for u32

source§

impl<const SIZE: u32> From<Page<SIZE>> for gear_core::pages::PagesAmount<SIZE>

source§

impl<const SIZE: u32> From<PagesAmount<SIZE>> for u32