diff --git a/pr-3467/gclient/struct.EventListener.html b/pr-3467/gclient/struct.EventListener.html index 9adf6dd1ed8..09d8c679bd5 100644 --- a/pr-3467/gclient/struct.EventListener.html +++ b/pr-3467/gclient/struct.EventListener.html @@ -33,30 +33,30 @@

Examples

Self: 'async_trait, 'life0: 'async_trait,
Multiple events processing function. Read more
source§

fn message_processed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<DispatchStatus>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the message identified by message_id has been processed.
source§

fn message_processed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> -) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>>where + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> +) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the batch of messages identified by corresponding message_ids has been processed.
source§

fn reply_bytes_on<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId -) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>>where + message_id: MessageId +) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Get details of a reply to the message identified by message_id. Read more
source§

fn err_or_succeed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<Option<String>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the processing of a message identified by message_id resulted in an error or has been successful. Read more
source§

fn err_or_succeed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> -) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>>where + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> +) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether processing batch of messages identified by corresponding message_ids resulted in errors or has been successful. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for EventListener

§

impl Send for EventListener

§

impl !Sync for EventListener

§

impl Unpin for EventListener

§

impl !UnwindSafe for EventListener

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/pr-3467/gclient/struct.GearApi.html b/pr-3467/gclient/struct.GearApi.html index abaa82f5e99..6009079b9fc 100644 --- a/pr-3467/gclient/struct.GearApi.html +++ b/pr-3467/gclient/struct.GearApi.html @@ -1,19 +1,19 @@ GearApi in gclient - Rust

Struct gclient::GearApi

source ·
pub struct GearApi(/* private fields */);
Expand description

The API instance contains methods to access the node.

Implementations§

source§

impl GearApi

source

pub async fn original_code_at( &self, - code_id: CodeId, + code_id: CodeId, at_block_hash: Option<H256> ) -> Result<Vec<u8>>

Returns original wasm code for the given code_id at specified at_block_hash.

source

pub async fn program_at( &self, - program_id: ProgramId, + program_id: ProgramId, at_block_hash: Option<H256> ) -> Result<ActiveProgram<u32>>

Returns ActiveProgram for the given program_id at specified at_block_hash.

source

pub async fn transfer( &self, - destination: ProgramId, + destination: ProgramId, value: u128 ) -> Result<H256>

Transfer value to destination’s account.

Sends the @@ -22,12 +22,12 @@

This function returns a hash of the block with the transfer transaction.

source

pub async fn create_program_bytes( &self, - code_id: CodeId, + code_id: CodeId, salt: impl AsRef<[u8]>, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

Create a new program from a previously uploaded code identified by +) -> Result<(MessageId, ProgramId, H256)>

Create a new program from a previously uploaded code identified by CodeId and initialize it with a byte slice payload.

Sends the @@ -63,20 +63,20 @@

See also
source

pub async fn create_program_bytes_batch( &self, - args: impl IntoIterator<Item = (CodeId, impl AsRef<[u8]>, impl AsRef<[u8]>, u64, u128)> -) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Create a batch of programs.

+ args: impl IntoIterator<Item = (CodeId, impl AsRef<[u8]>, impl AsRef<[u8]>, u64, u128)> +) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Create a batch of programs.

A batch is a set of programs to be created within one function call. Every entry of the args iterator is a tuple of parameters used in the create_program_bytes function. It is useful when deploying a multi-program dApp.

source

pub async fn create_program( &self, - code_id: CodeId, + code_id: CodeId, salt: impl AsRef<[u8]>, payload: impl Encode, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

Same as create_program_bytes, but +) -> Result<(MessageId, ProgramId, H256)>

Same as create_program_bytes, but initializes a newly created program with an encoded payload.

See also
source

pub async fn migrate_program( &self, - src_program_id: ProgramId, + src_program_id: ProgramId, src_block_hash: Option<H256>, dest_node_api: &GearApi -) -> Result<ProgramId>

Migrates an active program identified by src_program_id onto another +) -> Result<ProgramId>

Migrates an active program identified by src_program_id onto another node identified by dest_node_api and returns the migrated program identifier. All source program data is taken at the time of src_block_hash if it is specified or the most recent one.

source

pub async fn save_program_memory_dump_at<P: AsRef<Path>>( &self, - program_id: ProgramId, + program_id: ProgramId, block_hash: Option<H256>, file_path: P ) -> Result

Save program (identified by program_id) memory dump to the file for @@ -104,10 +104,10 @@

See also
time of block_hash if presented or the most recent block.

source

pub async fn replace_program_memory<P: AsRef<Path>>( &self, - program_id: ProgramId, + program_id: ProgramId, file_path: P ) -> Result

Replace entire program memory with one saved earlier in gclient/gtest

-
source

pub async fn claim_value(&self, message_id: MessageId) -> Result<(u128, H256)>

Claim value from the mailbox message identified by message_id.

+
source

pub async fn claim_value(&self, message_id: MessageId) -> Result<(u128, H256)>

Claim value from the mailbox message identified by message_id.

Sends the pallet_gear::claim_value extrinsic.

@@ -120,7 +120,7 @@
See also
source

pub async fn claim_value_batch( &self, - args: impl IntoIterator<Item = MessageId> + Clone + args: impl IntoIterator<Item = MessageId> + Clone ) -> Result<(Vec<Result<u128>>, H256)>

Claim a batch of values from the mailbox.

A batch is a set of requests to be executed within one function call. Every entry of the args iterator is a message identifier used in the @@ -128,11 +128,11 @@

See also
processing multiple replies in the mailbox at once.

source

pub async fn send_message_bytes( &self, - destination: ProgramId, + destination: ProgramId, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128 -) -> Result<(MessageId, H256)>

Send a message containing a byte slice payload to the destination.

+) -> Result<(MessageId, H256)>

Send a message containing a byte slice payload to the destination.

The message also contains the maximum gas_limit that can be spent and the value to be transferred to the destination’s account.

Sends the @@ -149,8 +149,8 @@

See also
source

pub async fn send_message_bytes_batch( &self, - args: impl IntoIterator<Item = (ProgramId, impl AsRef<[u8]>, u64, u128)> -) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Send a batch of messages.

+ args: impl IntoIterator<Item = (ProgramId, impl AsRef<[u8]>, u64, u128)> +) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Send a batch of messages.

A batch is a set of messages to be sent within one function call. Every entry of the args iterator is a tuple of parameters used in the send_message_bytes function. It is useful @@ -158,19 +158,19 @@

See also
to one program.

source

pub async fn send_message( &self, - destination: ProgramId, + destination: ProgramId, payload: impl Encode, gas_limit: u64, value: u128 -) -> Result<(MessageId, H256)>

Same as send_message_bytes, but sends a +) -> Result<(MessageId, H256)>

Same as send_message_bytes, but sends a message with encoded payload.

source

pub async fn send_reply_bytes( &self, - reply_to_id: MessageId, + reply_to_id: MessageId, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128 -) -> Result<(MessageId, u128, H256)>

Send a reply containing a byte slice payload to the message identified +) -> Result<(MessageId, u128, H256)>

Send a reply containing a byte slice payload to the message identified by reply_to_id.

The reply also contains the maximum gas_limit that can be spent and the value to be transferred to the destination’s account.

@@ -188,8 +188,8 @@
See also
source

pub async fn send_reply_bytes_batch( &self, - args: impl IntoIterator<Item = (MessageId, impl AsRef<[u8]>, u64, u128)> + Clone -) -> Result<(Vec<Result<(MessageId, ProgramId, u128)>>, H256)>

Send a batch of replies.

+ args: impl IntoIterator<Item = (MessageId, impl AsRef<[u8]>, u64, u128)> + Clone +) -> Result<(Vec<Result<(MessageId, ProgramId, u128)>>, H256)>

Send a batch of replies.

A batch is a set of replies to be sent within one function call. Every entry of the args iterator is a tuple of parameters used in the send_reply_bytes function. It is useful when @@ -199,16 +199,16 @@

See also
program id is also returned in the resulting tuple.

source

pub async fn send_reply( &self, - reply_to_id: MessageId, + reply_to_id: MessageId, payload: impl Encode, gas_limit: u64, value: u128 -) -> Result<(MessageId, u128, H256)>

Same as send_reply_bytes, but sends a reply +) -> Result<(MessageId, u128, H256)>

Same as send_reply_bytes, but sends a reply with encoded payload.

source

pub async fn upload_code( &self, code: impl AsRef<[u8]> -) -> Result<(CodeId, H256)>

Upload Wasm code to be used for creating a new program.

+) -> Result<(CodeId, H256)>

Upload Wasm code to be used for creating a new program.

Sends the pallet_gear::upload_code extrinsic.

@@ -226,7 +226,7 @@
See also
source

pub async fn upload_code_batch( &self, args: impl IntoIterator<Item = impl AsRef<[u8]>> -) -> Result<(Vec<Result<CodeId>>, H256)>

Upload a batch of codes.

+) -> Result<(Vec<Result<CodeId>>, H256)>

Upload a batch of codes.

A batch is a set of codes to be uploaded within one function call. Every entry of the args iterator is a byte slice used in the upload_code function. It is useful when deploying @@ -234,7 +234,7 @@

See also
source

pub async fn upload_code_by_path( &self, path: impl AsRef<Path> -) -> Result<(CodeId, H256)>

Upload Wasm code from the file referenced by path to be used for +) -> Result<(CodeId, H256)>

Upload Wasm code from the file referenced by path to be used for creating a new program.

Same as upload_code, but reads the code from a file instead of using a byte vector.

@@ -247,7 +247,7 @@
See also
payload: impl AsRef<[u8]>, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

Upload a new program and initialize it with a byte slice payload.

+) -> Result<(MessageId, ProgramId, H256)>

Upload a new program and initialize it with a byte slice payload.

Sends the pallet_gear::upload_program extrinsic.

@@ -276,7 +276,7 @@
See also
source

pub async fn upload_program_bytes_batch( &self, args: impl IntoIterator<Item = (impl AsRef<[u8]>, impl AsRef<[u8]>, impl AsRef<[u8]>, u64, u128)> -) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Upload a batch of programs.

+) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)>

Upload a batch of programs.

A batch is a set of programs to be uploaded within one function call. Every entry of the args iterator is a tuple used in the upload_program_bytes function. It is @@ -288,7 +288,7 @@

See also
payload: impl AsRef<[u8]>, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

Upload a new program from the file referenced by path and initialize +) -> Result<(MessageId, ProgramId, H256)>

Upload a new program from the file referenced by path and initialize it with a byte slice payload.

Same as upload_program_bytes, but reads the program from a file instead of using a byte vector.

@@ -301,7 +301,7 @@
See also
payload: impl Encode, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

Same as upload_program_bytes, but +) -> Result<(MessageId, ProgramId, H256)>

Same as upload_program_bytes, but initializes a newly uploaded program with an encoded payload.

See also
    @@ -317,7 +317,7 @@
    See also
    payload: impl Encode, gas_limit: u64, value: u128 -) -> Result<(MessageId, ProgramId, H256)>

    Upload a new program from the file referenced by path and initialize +) -> Result<(MessageId, ProgramId, H256)>

    Upload a new program from the file referenced by path and initialize it with an encoded payload.

    Same as upload_program, but reads the program from a file instead of using a byte vector.

    @@ -358,11 +358,11 @@
    See also
source§

impl GearApi

source

pub async fn calculate_create_gas( &self, origin: Option<H256>, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool -) -> Result<GasInfo>

Execute an RPC to calculate the gas required to create a program from a +) -> Result<GasInfo>

Execute an RPC to calculate the gas required to create a program from a code and process an initialization message.

Actually sends the gear_calculateInitCreateGas RPC to the node. The function’s parameters are:

@@ -380,12 +380,12 @@
See also
source

pub async fn calculate_create_gas_at( &self, origin: Option<H256>, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256> -) -> Result<GasInfo>

Same as calculate_create_gas, but +) -> Result<GasInfo>

Same as calculate_create_gas, but calculates the gas at the block identified by its hash.

source

pub async fn calculate_upload_gas( &self, @@ -394,7 +394,7 @@

See also
payload: Vec<u8>, value: u128, allow_other_panics: bool -) -> Result<GasInfo>

Execute an RPC to calculate the gas required to upload a program and +) -> Result<GasInfo>

Execute an RPC to calculate the gas required to upload a program and process an initialization message.

Actually sends the gear_calculateInitUploadGas RPC to the node. The function’s parameters are:

@@ -417,16 +417,16 @@
See also
value: u128, allow_other_panics: bool, at: Option<H256> -) -> Result<GasInfo>

Same as calculate_upload_gas, but +) -> Result<GasInfo>

Same as calculate_upload_gas, but calculates the gas at the block identified by its hash.

source

pub async fn calculate_handle_gas( &self, origin: Option<H256>, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool -) -> Result<GasInfo>

Execute an RPC to calculate the gas required to handle a message.

+) -> Result<GasInfo>

Execute an RPC to calculate the gas required to handle a message.

Actually sends the gear_calculateHandleGas RPC to the node. The function’s parameters are:

source

pub async fn calculate_handle_gas_at( &self, origin: Option<H256>, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256> -) -> Result<GasInfo>

Same as calculate_handle_gas, but +) -> Result<GasInfo>

Same as calculate_handle_gas, but calculates the gas at the block identified by its hash.

source

pub async fn calculate_reply_gas( &self, origin: Option<H256>, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool -) -> Result<GasInfo>

Execute an RPC to calculate the gas required to reply to the received +) -> Result<GasInfo>

Execute an RPC to calculate the gas required to reply to the received message from the mailbox.

Actually sends the gear_calculateReplyGas RPC to the node. The function’s parameters are:

@@ -475,40 +475,40 @@
See also
source

pub async fn calculate_reply_gas_at( &self, origin: Option<H256>, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256> -) -> Result<GasInfo>

Same as calculate_reply_gas, but +) -> Result<GasInfo>

Same as calculate_reply_gas, but calculates the gas at the block identified by its hash.

source

pub async fn read_state_bytes( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8> ) -> Result<Vec<u8>>

Read the program’s state as a byte vector.

source

pub async fn read_state_bytes_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, at: Option<H256> ) -> Result<Vec<u8>>

Same as read_state_bytes, but reads the program’s state at the block identified by its hash.

source

pub async fn read_state<D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8> ) -> Result<D>

Read the program’s state as decoded data.

source

pub async fn read_state_at<D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, at: Option<H256> ) -> Result<D>

Same as read_state, but reads the program’s state at the block identified by its hash.

source

pub async fn read_state_bytes_using_wasm( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -516,7 +516,7 @@

See also
) -> Result<Vec<u8>>

Read the program’s state as a byte vector using a meta Wasm.

source

pub async fn read_state_bytes_using_wasm_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -525,7 +525,7 @@

See also
) -> Result<Vec<u8>>

Same as read_state_bytes_using_wasm, but reads the program’s state at the block identified by its hash.

source

pub async fn read_state_using_wasm<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -533,7 +533,7 @@

See also
) -> Result<D>

Read the program’s state as decoded data using a meta Wasm.

source

pub async fn read_state_using_wasm_at<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -543,7 +543,7 @@

See also
reads the program’s state at the block identified by its hash.

source

pub async fn read_state_bytes_using_wasm_by_path( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -552,7 +552,7 @@

See also
path.

source

pub async fn read_state_bytes_using_wasm_by_path_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -561,7 +561,7 @@

See also
) -> Result<Vec<u8>>

Same as read_state_using_wasm_by_path, but reads the program’s state at the block identified by its hash.

source

pub async fn read_state_using_wasm_by_path<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -570,17 +570,17 @@

See also
path.

source

pub async fn read_state_using_wasm_by_path_at<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, argument: Option<E>, at: Option<H256> ) -> Result<D>

Same as read_state_using_wasm_by_path, but reads the program’s state at the block identified by its hash.

-
source

pub async fn read_metahash(&self, program_id: ProgramId) -> Result<H256>

Read the program’s metahash.

+
source

pub async fn read_metahash(&self, program_id: ProgramId) -> Result<H256>

Read the program’s metahash.

source

pub async fn read_metahash_at( &self, - program_id: ProgramId, + program_id: ProgramId, at: Option<H256> ) -> Result<H256>

Same as read_metahash, but read the program’s metahash at the block identified by its hash.

@@ -611,24 +611,24 @@
See also
has grown from block to block or not.

source§

impl GearApi

source

pub async fn get_mailbox_message( &self, - message_id: MessageId -) -> Result<Option<(UserStoredMessage, Interval<u32>)>>

Get a message identified by message_id from the mailbox.

+ message_id: MessageId +) -> Result<Option<(UserStoredMessage, Interval<u32>)>>

Get a message identified by message_id from the mailbox.

source

pub async fn get_mailbox_account_message( &self, account_id: impl IntoAccountId32, - message_id: MessageId -) -> Result<Option<(UserStoredMessage, Interval<u32>)>>

Get a message identified by message_id from the account_id’s + message_id: MessageId +) -> Result<Option<(UserStoredMessage, Interval<u32>)>>

Get a message identified by message_id from the account_id’s mailbox.

source

pub async fn get_mailbox_account_messages( &self, account_id: impl IntoAccountId32, count: u32 -) -> Result<Vec<(UserStoredMessage, Interval<u32>)>>

Get up to count messages from the mailbox for +) -> Result<Vec<(UserStoredMessage, Interval<u32>)>>

Get up to count messages from the mailbox for the provided account_id.

source

pub async fn get_mailbox_messages( &self, count: u32 -) -> Result<Vec<(UserStoredMessage, Interval<u32>)>>

Get up to count messages from the mailbox.

+) -> Result<Vec<(UserStoredMessage, Interval<u32>)>>

Get up to count messages from the mailbox.

source

pub async fn total_balance( &self, account_id: impl IntoAccountId32 diff --git a/pr-3467/gclient/trait.EventProcessor.html b/pr-3467/gclient/trait.EventProcessor.html index 04aa049f191..eba7958d755 100644 --- a/pr-3467/gclient/trait.EventProcessor.html +++ b/pr-3467/gclient/trait.EventProcessor.html @@ -20,32 +20,32 @@ // Provided methods fn message_processed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<DispatchStatus>> + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait { ... } fn message_processed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> - ) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>> + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> + ) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait { ... } fn reply_bytes_on<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId - ) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>> + message_id: MessageId + ) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait { ... } fn err_or_succeed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<Option<String>>> + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait { ... } fn err_or_succeed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> - ) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>> + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> + ) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait { ... } }
Expand description

Events processing trait.

@@ -85,29 +85,29 @@
Examples
batch of results.

Provided Methods§

source

fn message_processed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<DispatchStatus>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the message identified by message_id has been processed.

source

fn message_processed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> -) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>>where + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> +) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, DispatchStatus)>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the batch of messages identified by corresponding message_ids has been processed.

source

fn reply_bytes_on<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId -) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>>where + message_id: MessageId +) -> Pin<Box<dyn Future<Output = Result<(MessageId, Result<Vec<u8>, String>, u128)>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Get details of a reply to the message identified by message_id.

If a reply has been received, this function returns its identifier -(MessageId), payload’s bytes (in case of zero status code) or an +([MessageId]), payload’s bytes (in case of zero status code) or an error message (otherwise), and an associated value.

source

fn err_or_succeed<'life0, 'async_trait>( &'life0 mut self, - message_id: MessageId + message_id: MessageId ) -> Pin<Box<dyn Future<Output = Result<Option<String>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether the processing of a message identified by message_id @@ -117,12 +117,12 @@

Examples
NotExecuted state.

source

fn err_or_succeed_batch<'life0, 'async_trait>( &'life0 mut self, - message_ids: impl 'async_trait + IntoIterator<Item = MessageId> -) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>>where + message_ids: impl 'async_trait + IntoIterator<Item = MessageId> +) -> Pin<Box<dyn Future<Output = Result<Vec<(MessageId, Option<String>)>>> + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Check whether processing batch of messages identified by corresponding message_ids resulted in errors or has been successful.

This function returns a vector of statuses with an associated message -identifier (MessageId). Each status can be an error message in case +identifier ([MessageId]). Each status can be an error message in case of an error.

Implementors§

source§

impl EventProcessor for EventListener

source§

impl<I: IntoIterator<Item = Event> + Clone> EventProcessor for I

\ No newline at end of file diff --git a/pr-3467/gear_core_processor/common/enum.ActorExecutionErrorReplyReason.html b/pr-3467/gear_core_processor/common/enum.ActorExecutionErrorReplyReason.html index 147e190e2f7..c2d22b9066b 100644 --- a/pr-3467/gear_core_processor/common/enum.ActorExecutionErrorReplyReason.html +++ b/pr-3467/gear_core_processor/common/enum.ActorExecutionErrorReplyReason.html @@ -2,12 +2,12 @@ PreChargeGasLimitExceeded(PreChargeGasOperation), PrepareMemory(ActorPrepareMemoryError), Environment, - Trap(TrapExplanation), + Trap(TrapExplanation), }
Expand description

Reason of execution error

Variants§

§

PreChargeGasLimitExceeded(PreChargeGasOperation)

Not enough gas to perform an operation during precharge.

§

PrepareMemory(ActorPrepareMemoryError)

Prepare memory error

§

Environment

Backend error

-
§

Trap(TrapExplanation)

Trap explanation

+
§

Trap(TrapExplanation)

Trap explanation

Implementations§

source§

impl ActorExecutionErrorReplyReason

source

pub fn as_simple(&self) -> SimpleExecutionError

Convert self into [gear_core_errors::SimpleExecutionError].

Trait Implementations§

source§

impl Debug for ActorExecutionErrorReplyReason

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Decode for ActorExecutionErrorReplyReason

source§

fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy diff --git a/pr-3467/gear_core_processor/common/enum.DispatchResultKind.html b/pr-3467/gear_core_processor/common/enum.DispatchResultKind.html index dd6e6b170ca..e0d36f46fe3 100644 --- a/pr-3467/gear_core_processor/common/enum.DispatchResultKind.html +++ b/pr-3467/gear_core_processor/common/enum.DispatchResultKind.html @@ -1,12 +1,12 @@ DispatchResultKind in gear_core_processor::common - Rust
pub enum DispatchResultKind {
     Success,
-    Trap(TrapExplanation),
+    Trap(TrapExplanation),
     Wait(Option<u32>, MessageWaitedType),
     Exit(ProgramId),
     GasAllowanceExceed,
 }
Expand description

Kind of the dispatch result.

Variants§

§

Success

Successful dispatch

-
§

Trap(TrapExplanation)

Trap dispatch.

+
§

Trap(TrapExplanation)

Trap dispatch.

§

Wait(Option<u32>, MessageWaitedType)

Wait dispatch.

§

Exit(ProgramId)

Exit dispatch.

§

GasAllowanceExceed

Gas allowance exceed.

diff --git a/pr-3467/gear_core_processor/common/enum.SystemExecutionError.html b/pr-3467/gear_core_processor/common/enum.SystemExecutionError.html index 9250b1dd579..89af4939db6 100644 --- a/pr-3467/gear_core_processor/common/enum.SystemExecutionError.html +++ b/pr-3467/gear_core_processor/common/enum.SystemExecutionError.html @@ -1,14 +1,14 @@ SystemExecutionError in gear_core_processor::common - Rust
pub enum SystemExecutionError {
     PrepareMemory(SystemPrepareMemoryError),
-    Environment(SystemEnvironmentError),
-    UndefinedTerminationReason(SystemTerminationReason),
+    Environment(SystemEnvironmentError),
+    UndefinedTerminationReason(SystemTerminationReason),
     IntoExtInfo(MemoryError),
 }
Expand description

System execution error

Variants§

§

PrepareMemory(SystemPrepareMemoryError)

Prepare memory error

-
§

Environment(SystemEnvironmentError)

Environment error

-
§

UndefinedTerminationReason(SystemTerminationReason)

Termination reason

+
§

Environment(SystemEnvironmentError)

Environment error

+
§

UndefinedTerminationReason(SystemTerminationReason)

Termination reason

§

IntoExtInfo(MemoryError)

Error during into_ext_info() call

-

Trait Implementations§

source§

impl Debug for SystemExecutionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SystemExecutionError

source§

fn fmt(&self, _derive_more_display_formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<SystemExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>

source§

fn from(err: SystemExecutionError) -> Self

Converts to this type from the input type.
source§

impl From<SystemTerminationReason> for SystemExecutionError

source§

fn from(original: SystemTerminationReason) -> SystemExecutionError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for SystemExecutionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SystemExecutionError

source§

fn fmt(&self, _derive_more_display_formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<SystemExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>

source§

fn from(err: SystemExecutionError) -> Self

Converts to this type from the input type.
source§

impl From<SystemTerminationReason> for SystemExecutionError

source§

fn from(original: SystemTerminationReason) -> SystemExecutionError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gear_core_processor/enum.AllocExtError.html b/pr-3467/gear_core_processor/enum.AllocExtError.html index d460ee1dfe2..42d9d5e95b5 100644 --- a/pr-3467/gear_core_processor/enum.AllocExtError.html +++ b/pr-3467/gear_core_processor/enum.AllocExtError.html @@ -4,7 +4,7 @@ }
Expand description

Ext’s memory management (calls to allocate and free) error.

Variants§

§

Charge(ChargeError)

Charge error

§

Alloc(AllocError)

Allocation error

-

Trait Implementations§

source§

impl BackendAllocSyscallError for AllocExtError

source§

impl Clone for AllocExtError

source§

fn clone(&self) -> AllocExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AllocExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AllocExtError

source§

fn fmt(&self, _derive_more_display_formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<AllocError> for AllocExtError

source§

fn from(original: AllocError) -> AllocExtError

Converts to this type from the input type.
source§

impl From<ChargeError> for AllocExtError

source§

fn from(original: ChargeError) -> AllocExtError

Converts to this type from the input type.
source§

impl PartialEq<AllocExtError> for AllocExtError

source§

fn eq(&self, other: &AllocExtError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl BackendAllocSyscallError for AllocExtError

§

type ExtError = UnrecoverableExtError

source§

fn into_backend_error(self) -> Result<Self::ExtError, Self>

source§

impl Clone for AllocExtError

source§

fn clone(&self) -> AllocExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AllocExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AllocExtError

source§

fn fmt(&self, _derive_more_display_formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<AllocError> for AllocExtError

source§

fn from(original: AllocError) -> AllocExtError

Converts to this type from the input type.
source§

impl From<ChargeError> for AllocExtError

source§

fn from(original: ChargeError) -> AllocExtError

Converts to this type from the input type.
source§

impl PartialEq<AllocExtError> for AllocExtError

source§

fn eq(&self, other: &AllocExtError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for AllocExtError

source§

impl StructuralEq for AllocExtError

source§

impl StructuralPartialEq for AllocExtError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( diff --git a/pr-3467/gear_core_processor/enum.FallibleExtError.html b/pr-3467/gear_core_processor/enum.FallibleExtError.html index 67ab5c0ffda..c077ed12373 100644 --- a/pr-3467/gear_core_processor/enum.FallibleExtError.html +++ b/pr-3467/gear_core_processor/enum.FallibleExtError.html @@ -6,7 +6,7 @@

Variants§

§

Core(ExtError)

Basic error

§

ForbiddenFunction

An error occurs in attempt to call forbidden sys-call.

§

Charge(ChargeError)

Charge error

-

Trait Implementations§

source§

impl Clone for FallibleExtError

source§

fn clone(&self) -> FallibleExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FallibleExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<()> for FallibleExtError

source§

fn from(original: ()) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<ChargeError> for FallibleExtError

source§

fn from(original: ChargeError) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<ExecutionError> for FallibleExtError

source§

fn from(err: FallibleExecutionError) -> Self

Converts to this type from the input type.
source§

impl From<ExtError> for FallibleExtError

source§

fn from(original: FallibleExtErrorCore) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<FallibleExtError> for RunFallibleError

source§

fn from(err: FallibleExtError) -> Self

Converts to this type from the input type.
source§

impl From<MessageError> for FallibleExtError

source§

fn from(err: MessageError) -> Self

Converts to this type from the input type.
source§

impl From<ProgramRentError> for FallibleExtError

source§

fn from(err: ProgramRentError) -> Self

Converts to this type from the input type.
source§

impl From<ReservationError> for FallibleExtError

source§

fn from(err: ReservationError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<FallibleExtError> for FallibleExtError

source§

fn eq(&self, other: &FallibleExtError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for FallibleExtError

source§

fn clone(&self) -> FallibleExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FallibleExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<()> for FallibleExtError

source§

fn from(original: ()) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<ChargeError> for FallibleExtError

source§

fn from(original: ChargeError) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<ExecutionError> for FallibleExtError

source§

fn from(err: FallibleExecutionError) -> Self

Converts to this type from the input type.
source§

impl From<ExtError> for FallibleExtError

source§

fn from(original: FallibleExtErrorCore) -> FallibleExtError

Converts to this type from the input type.
source§

impl From<FallibleExtError> for RunFallibleError

source§

fn from(err: FallibleExtError) -> Self

Converts to this type from the input type.
source§

impl From<MessageError> for FallibleExtError

source§

fn from(err: MessageError) -> Self

Converts to this type from the input type.
source§

impl From<ProgramRentError> for FallibleExtError

source§

fn from(err: ProgramRentError) -> Self

Converts to this type from the input type.
source§

impl From<ReservationError> for FallibleExtError

source§

fn from(err: ReservationError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<FallibleExtError> for FallibleExtError

source§

fn eq(&self, other: &FallibleExtError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for FallibleExtError

source§

impl StructuralEq for FallibleExtError

source§

impl StructuralPartialEq for FallibleExtError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( diff --git a/pr-3467/gear_core_processor/enum.UnrecoverableExtError.html b/pr-3467/gear_core_processor/enum.UnrecoverableExtError.html index f2e4842fc87..2bde08b737e 100644 --- a/pr-3467/gear_core_processor/enum.UnrecoverableExtError.html +++ b/pr-3467/gear_core_processor/enum.UnrecoverableExtError.html @@ -1,10 +1,10 @@ UnrecoverableExtError in gear_core_processor - Rust
pub enum UnrecoverableExtError {
-    Core(UnrecoverableExtError),
+    Core(UnrecoverableExtError),
     Charge(ChargeError),
 }
Expand description

Infallible API error.

-

Variants§

§

Core(UnrecoverableExtError)

Basic error

+

Variants§

§

Core(UnrecoverableExtError)

Basic error

§

Charge(ChargeError)

Charge error

-

Trait Implementations§

source§

impl BackendSyscallError for UnrecoverableExtError

source§

impl Clone for UnrecoverableExtError

source§

fn clone(&self) -> UnrecoverableExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UnrecoverableExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<ChargeError> for UnrecoverableExtError

source§

fn from(original: ChargeError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableExecutionError> for UnrecoverableExtError

source§

fn from(err: UnrecoverableExecutionError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableExtError> for UnrecoverableExtError

source§

fn from(original: UnrecoverableExtErrorCore) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableWaitError> for UnrecoverableExtError

source§

fn from(err: UnrecoverableWaitError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl PartialEq<UnrecoverableExtError> for UnrecoverableExtError

source§

fn eq(&self, other: &UnrecoverableExtError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl BackendSyscallError for UnrecoverableExtError

source§

fn into_termination_reason(self) -> UndefinedTerminationReason

source§

fn into_run_fallible_error(self) -> RunFallibleError

source§

impl Clone for UnrecoverableExtError

source§

fn clone(&self) -> UnrecoverableExtError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UnrecoverableExtError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<ChargeError> for UnrecoverableExtError

source§

fn from(original: ChargeError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableExecutionError> for UnrecoverableExtError

source§

fn from(err: UnrecoverableExecutionError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableExtError> for UnrecoverableExtError

source§

fn from(original: UnrecoverableExtErrorCore) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl From<UnrecoverableWaitError> for UnrecoverableExtError

source§

fn from(err: UnrecoverableWaitError) -> UnrecoverableExtError

Converts to this type from the input type.
source§

impl PartialEq<UnrecoverableExtError> for UnrecoverableExtError

source§

fn eq(&self, other: &UnrecoverableExtError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for UnrecoverableExtError

source§

impl StructuralEq for UnrecoverableExtError

source§

impl StructuralPartialEq for UnrecoverableExtError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( diff --git a/pr-3467/gear_core_processor/fn.execute_wasm.html b/pr-3467/gear_core_processor/fn.execute_wasm.html index d4bfca4f5d4..c53d1f25fa9 100644 --- a/pr-3467/gear_core_processor/fn.execute_wasm.html +++ b/pr-3467/gear_core_processor/fn.execute_wasm.html @@ -5,8 +5,8 @@ settings: ExecutionSettings, msg_ctx_settings: ContextSettings ) -> Result<DispatchResult, ExecutionError>where - Ext: ProcessorExternalities + BackendExternalities + 'static, - <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError,
Expand description

Execute wasm with dispatch and return dispatch result.

+ Ext: ProcessorExternalities + BackendExternalities + 'static, + <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError,
Expand description

Execute wasm with dispatch and return dispatch result.

\ No newline at end of file diff --git a/pr-3467/gear_core_processor/fn.process.html b/pr-3467/gear_core_processor/fn.process.html index 5ca09726c0c..b0d024c2c33 100644 --- a/pr-3467/gear_core_processor/fn.process.html +++ b/pr-3467/gear_core_processor/fn.process.html @@ -3,8 +3,8 @@ execution_context: ProcessExecutionContext, random_data: (Vec<u8>, u32) ) -> Result<Vec<JournalNote>, SystemExecutionError>where - Ext: ProcessorExternalities + BackendExternalities + 'static, - <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError,
Expand description

Process program & dispatch for it and return journal for updates.

+ Ext: ProcessorExternalities + BackendExternalities + 'static, + <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError,
Expand description

Process program & dispatch for it and return journal for updates.

\ No newline at end of file diff --git a/pr-3467/gear_core_processor/informational/fn.execute_for_reply.html b/pr-3467/gear_core_processor/informational/fn.execute_for_reply.html index 5946ae4edae..aeb1a77e9a2 100644 --- a/pr-3467/gear_core_processor/informational/fn.execute_for_reply.html +++ b/pr-3467/gear_core_processor/informational/fn.execute_for_reply.html @@ -7,9 +7,9 @@ gas_limit: u64, block_info: BlockInfo ) -> Result<Vec<u8>, String>where - Ext: ProcessorExternalities + BackendExternalities + 'static, - <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError, + Ext: ProcessorExternalities + BackendExternalities + 'static, + <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError, EP: WasmEntryPoint,
Expand description

!!! FOR TESTING / INFORMATIONAL USAGE ONLY

\ No newline at end of file diff --git a/pr-3467/gear_core_processor/struct.Ext.html b/pr-3467/gear_core_processor/struct.Ext.html index 86db86021c7..0a130e52da7 100644 --- a/pr-3467/gear_core_processor/struct.Ext.html +++ b/pr-3467/gear_core_processor/struct.Ext.html @@ -5,7 +5,7 @@ }
Expand description

Structure providing externalities for running host functions.

Fields§

§context: ProcessorContext

Processor context.

§current_counter: CounterType

Actual gas counter type within wasm module’s global.

-

Trait Implementations§

source§

impl BackendExternalities for Ext

Trait Implementations§

source§

impl BackendExternalities for Ext

source§

fn gas_amount(&self) -> GasAmount

source§

fn pre_process_memory_accesses( reads: &[MemoryInterval], writes: &[MemoryInterval], gas_counter: &mut u64 diff --git a/pr-3467/gsdk/gp/trait.Decode.html b/pr-3467/gsdk/gp/trait.Decode.html index 8eaf6631a02..2e62847fdcc 100644 --- a/pr-3467/gsdk/gp/trait.Decode.html +++ b/pr-3467/gsdk/gp/trait.Decode.html @@ -33,149 +33,149 @@

Safety

If it returns Some(size) then all possible values of this type have the given size (in bytes) when encoded.

NOTE: A type with a fixed encoded size may return None.

-

Implementations on Foreign Types§

source§

impl<T, E, const N: usize> Decode for LimitedVec<T, E, N>where +

Implementations on Foreign Types§

§

impl<T, E, const N: usize> Decode for LimitedVec<T, E, N>where Vec<T, Global>: Decode, - PhantomData<E>: Decode,

source§

fn decode<__CodecInputEdqy>( + PhantomData<E>: Decode,

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<LimitedVec<T, E, N>, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for CounterType

source§

fn decode<__CodecInputEdqy>( +) -> Result<LimitedVec<T, E, N>, Error>where + __CodecInputEdqy: Input,

§

impl Decode for CounterType

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<CounterType, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ReservationNonce

source§

fn decode<__CodecInputEdqy>( +) -> Result<CounterType, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ReservationNonce

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReservationNonce, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MessageId

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReservationNonce, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MessageId

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MessageId, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for InitPacket

source§

fn decode<__CodecInputEdqy>( +) -> Result<MessageId, Error>where + __CodecInputEdqy: Input,

§

impl Decode for InitPacket

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<InitPacket, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ContextSettings

source§

fn decode<__CodecInputEdqy>( +) -> Result<InitPacket, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ContextSettings

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ContextSettings, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for StoredDispatch

source§

fn decode<__CodecInputEdqy>( +) -> Result<ContextSettings, Error>where + __CodecInputEdqy: Input,

§

impl Decode for StoredDispatch

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<StoredDispatch, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for IncomingMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<StoredDispatch, Error>where + __CodecInputEdqy: Input,

§

impl Decode for IncomingMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<IncomingMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for HostFnWeights

source§

fn decode<__CodecInputEdqy>( +) -> Result<IncomingMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for HostFnWeights

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<HostFnWeights, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MessageWaitedType

source§

fn decode<__CodecInputEdqy>( +) -> Result<HostFnWeights, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MessageWaitedType

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MessageWaitedType, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for RuntimeBufferSizeError

source§

fn decode<__CodecInputEdqy>( +) -> Result<MessageWaitedType, Error>where + __CodecInputEdqy: Input,

§

impl Decode for RuntimeBufferSizeError

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<RuntimeBufferSizeError, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for Dispatch

source§

fn decode<__CodecInputEdqy>( +) -> Result<RuntimeBufferSizeError, Error>where + __CodecInputEdqy: Input,

§

impl Decode for Dispatch

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<Dispatch, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for GasLeft

source§

fn decode<__CodecInputEdqy>( +) -> Result<Dispatch, Error>where + __CodecInputEdqy: Input,

§

impl Decode for GasLeft

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<GasLeft, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for UserMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<GasLeft, Error>where + __CodecInputEdqy: Input,

§

impl Decode for UserMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<UserMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for WasmPage

source§

fn decode<__CodecInputEdqy>( +) -> Result<UserMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for WasmPage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<WasmPage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for GearPage

source§

fn decode<__CodecInputEdqy>( +) -> Result<WasmPage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for GearPage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<GearPage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for CodeId

source§

fn decode<__CodecInputEdqy>( +) -> Result<GearPage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for CodeId

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<CodeId, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MemoryInfix

source§

fn decode<__CodecInputEdqy>( +) -> Result<CodeId, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MemoryInfix

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MemoryInfix, Error>where - __CodecInputEdqy: Input,

source§

impl<P> Decode for CostPerPage<P>where - P: PageU32Size, - PhantomData<P>: Decode,

source§

fn decode<__CodecInputEdqy>( +) -> Result<MemoryInfix, Error>where + __CodecInputEdqy: Input,

§

impl<P> Decode for CostPerPage<P>where + P: PageU32Size, + PhantomData<P>: Decode,

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<CostPerPage<P>, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MemoryInterval

source§

fn decode<__CodecInputEdqy>( +) -> Result<CostPerPage<P>, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MemoryInterval

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MemoryInterval, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for Message

source§

fn decode<__CodecInputEdqy>( +) -> Result<MemoryInterval, Error>where + __CodecInputEdqy: Input,

§

impl Decode for Message

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<Message, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for PayloadSizeError

source§

fn decode<__CodecInputEdqy>( +) -> Result<Message, Error>where + __CodecInputEdqy: Input,

§

impl Decode for PayloadSizeError

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<PayloadSizeError, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ContextOutcome

source§

fn decode<__CodecInputEdqy>( +) -> Result<PayloadSizeError, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ContextOutcome

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ContextOutcome, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for SignalDetails

source§

fn decode<__CodecInputEdqy>( +) -> Result<ContextOutcome, Error>where + __CodecInputEdqy: Input,

§

impl Decode for SignalDetails

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SignalDetails, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ReplyPacket

source§

fn decode<__CodecInputEdqy>( +) -> Result<SignalDetails, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ReplyPacket

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReplyPacket, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ReplyMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReplyPacket, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ReplyMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReplyMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for IncomingDispatch

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReplyMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for IncomingDispatch

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<IncomingDispatch, Error>where - __CodecInputEdqy: Input,

source§

impl<'a> Decode for LimitedStr<'a>

source§

fn decode<__CodecInputEdqy>( +) -> Result<IncomingDispatch, Error>where + __CodecInputEdqy: Input,

§

impl<'a> Decode for LimitedStr<'a>

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<LimitedStr<'a>, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for HandlePacket

source§

fn decode<__CodecInputEdqy>( +) -> Result<LimitedStr<'a>, Error>where + __CodecInputEdqy: Input,

§

impl Decode for HandlePacket

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<HandlePacket, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for UserStoredMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<HandlePacket, Error>where + __CodecInputEdqy: Input,

§

impl Decode for UserStoredMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<UserStoredMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for InstrumentedCode

source§

fn decode<__CodecInputEdqy>( +) -> Result<UserStoredMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for InstrumentedCode

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<InstrumentedCode, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for GasReservationSlot

source§

fn decode<__CodecInputEdqy>( +) -> Result<InstrumentedCode, Error>where + __CodecInputEdqy: Input,

§

impl Decode for GasReservationSlot

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<GasReservationSlot, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for SignalMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<GasReservationSlot, Error>where + __CodecInputEdqy: Input,

§

impl Decode for SignalMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SignalMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for StoredMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<SignalMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for StoredMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<StoredMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for HandleMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<StoredMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for HandleMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<HandleMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for Percent

source§

fn decode<__CodecInputEdqy>( +) -> Result<HandleMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for Percent

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<Percent, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for DispatchKind

source§

fn decode<__CodecInputEdqy>( +) -> Result<Percent, Error>where + __CodecInputEdqy: Input,

§

impl Decode for DispatchKind

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<DispatchKind, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ReplyDetails

source§

fn decode<__CodecInputEdqy>( +) -> Result<DispatchKind, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ReplyDetails

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReplyDetails, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for Program

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReplyDetails, Error>where + __CodecInputEdqy: Input,

§

impl Decode for Program

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<Program, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MessageContext

source§

fn decode<__CodecInputEdqy>( +) -> Result<Program, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MessageContext

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MessageContext, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for PageBuf

source§

fn decode<I>(input: &mut I) -> Result<PageBuf, Error>where - I: Input,

source§

impl Decode for ContextStore

source§

fn decode<__CodecInputEdqy>( +) -> Result<MessageContext, Error>where + __CodecInputEdqy: Input,

§

impl Decode for PageBuf

§

fn decode<I>(input: &mut I) -> Result<PageBuf, Error>where + I: Input,

§

impl Decode for ContextStore

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ContextStore, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for InstrumentedCodeAndId

source§

fn decode<__CodecInputEdqy>( +) -> Result<ContextStore, Error>where + __CodecInputEdqy: Input,

§

impl Decode for InstrumentedCodeAndId

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<InstrumentedCodeAndId, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ReservationId

source§

fn decode<__CodecInputEdqy>( +) -> Result<InstrumentedCodeAndId, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ReservationId

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReservationId, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for InitMessage

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReservationId, Error>where + __CodecInputEdqy: Input,

§

impl Decode for InitMessage

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<InitMessage, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ProgramId

source§

fn decode<__CodecInputEdqy>( +) -> Result<InitMessage, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ProgramId

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ProgramId, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for MessageDetails

source§

fn decode<__CodecInputEdqy>( +) -> Result<ProgramId, Error>where + __CodecInputEdqy: Input,

§

impl Decode for MessageDetails

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<MessageDetails, Error>where +) -> Result<MessageDetails, Error>where __CodecInputEdqy: Input,

§

impl<T> Decode for TypeDef<T>where T: Form, TypeDefComposite<T>: Decode, @@ -541,25 +541,25 @@
Safety
INPUT: Input,

§

impl Decode for NonZeroI32

§

fn decode<I>(input: &mut I) -> Result<NonZeroI32, Error>where I: Input,

§

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

§

fn decode<I>(input: &mut I) -> Result<Option<T>, Error>where - I: Input,

source§

impl Decode for ReplyCode

source§

fn decode<__CodecInputEdqy>( + I: Input,

§

impl Decode for ReplyCode

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ReplyCode, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ExtError

source§

fn decode<I>(input: &mut I) -> Result<ExtError, Error>where - I: Input,

source§

impl Decode for SimpleProgramCreationError

source§

fn decode<__CodecInputEdqy>( +) -> Result<ReplyCode, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ExtError

§

fn decode<I>(input: &mut I) -> Result<ExtError, Error>where + I: Input,

§

impl Decode for SimpleProgramCreationError

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SimpleProgramCreationError, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for SuccessReplyReason

source§

fn decode<__CodecInputEdqy>( +) -> Result<SimpleProgramCreationError, Error>where + __CodecInputEdqy: Input,

§

impl Decode for SuccessReplyReason

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SuccessReplyReason, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for ErrorReplyReason

source§

fn decode<__CodecInputEdqy>( +) -> Result<SuccessReplyReason, Error>where + __CodecInputEdqy: Input,

§

impl Decode for ErrorReplyReason

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<ErrorReplyReason, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for SimpleExecutionError

source§

fn decode<__CodecInputEdqy>( +) -> Result<ErrorReplyReason, Error>where + __CodecInputEdqy: Input,

§

impl Decode for SimpleExecutionError

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SimpleExecutionError, Error>where - __CodecInputEdqy: Input,

source§

impl Decode for SignalCode

source§

fn decode<__CodecInputEdqy>( +) -> Result<SimpleExecutionError, Error>where + __CodecInputEdqy: Input,

§

impl Decode for SignalCode

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy -) -> Result<SignalCode, Error>where +) -> Result<SignalCode, Error>where __CodecInputEdqy: Input,

§

impl<AccountId, AccountIndex> Decode for MultiAddress<AccountId, AccountIndex>where AccountId: Decode, AccountIndex: HasCompact,

§

fn decode<__CodecInputEdqy>( @@ -1092,7 +1092,7 @@

Safety
__CodecInputEdqy: Input,
§

impl Decode for RuntimeDbWeight

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<RuntimeDbWeight, Error>where - __CodecInputEdqy: Input,

Implementors§

source§

impl Decode for gsdk::Program

source§

impl Decode for gsdk::metadata::errors::BagsList

source§

impl Decode for gsdk::metadata::errors::Balances

source§

impl Decode for gsdk::metadata::errors::ConvictionVoting

source§

impl Decode for gsdk::metadata::errors::Gear

source§

impl Decode for gsdk::metadata::errors::GearDebug

source§

impl Decode for gsdk::metadata::errors::GearStakingRewards

source§

impl Decode for gsdk::metadata::errors::Grandpa

source§

impl Decode for gsdk::metadata::errors::Identity

source§

impl Decode for gsdk::metadata::errors::ImOnline

source§

impl Decode for gsdk::metadata::errors::Preimage

source§

impl Decode for gsdk::metadata::errors::RanckedCollective

source§

impl Decode for gsdk::metadata::errors::Referenda

source§

impl Decode for gsdk::metadata::errors::Scheduler

source§

impl Decode for gsdk::metadata::errors::Session

source§

impl Decode for gsdk::metadata::errors::Staking

source§

impl Decode for gsdk::metadata::errors::Sudo

source§

impl Decode for gsdk::metadata::errors::System

source§

impl Decode for gsdk::metadata::errors::Treasury

source§

impl Decode for gsdk::metadata::errors::Utility

source§

impl Decode for gsdk::metadata::errors::Vesting

source§

impl Decode for gsdk::metadata::errors::Whitelist

source§

impl Decode for DispatchClass

source§

impl Decode for Pays

source§

impl Decode for BalanceStatus

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::Phase

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::gear_common::ProgramState

source§

impl Decode for DispatchStatus

source§

impl Decode for MessageEntry

source§

impl Decode for MessageWaitedRuntimeReason

source§

impl Decode for MessageWaitedSystemReason

source§

impl Decode for MessageWokenRuntimeReason

source§

impl Decode for MessageWokenSystemReason

source§

impl Decode for UserMessageReadRuntimeReason

source§

impl Decode for UserMessageReadSystemReason

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::MessageDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::DispatchKind

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::ErrorReplyReason

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::ReplyCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SignalCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleExecutionError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleProgramCreationError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SuccessReplyReason

source§

impl Decode for gsdk::metadata::runtime_types::pallet_babe::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_babe::pallet::Error

source§

impl Decode for ListError

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Event

source§

impl Decode for Reasons

source§

impl Decode for gsdk::metadata::runtime_types::pallet_balances::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_balances::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Event

source§

impl Decode for Conviction

source§

impl Decode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Event

source§

impl Decode for ElectionCompute

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_bank::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::ProgramState

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_gas::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_messenger::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_program::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_scheduler::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_identity::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_identity::pallet::Event

source§

impl Decode for Data

source§

impl Decode for IdentityField

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Event

source§

impl Decode for ClaimPermission

source§

impl Decode for PoolState

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Call

source§

impl Decode for DefensiveError

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_offences::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Event

source§

impl Decode for VoteRecord

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Event

source§

impl Decode for Call2

source§

impl Decode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Call

source§

impl Decode for Error2

source§

impl Decode for Event2

source§

impl Decode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Event

source§

impl Decode for Curve

source§

impl Decode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_session::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_session::pallet::Event

source§

impl Decode for Forcing

source§

impl Decode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_timestamp::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_transaction_payment::Releases

source§

impl Decode for gsdk::metadata::runtime_types::pallet_transaction_payment::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_utility::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_utility::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::Releases

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::ArithmeticError

source§

impl Decode for NextConfigDescriptor

source§

impl Decode for PreDigest

source§

impl Decode for AllowedSlots

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::Void

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::DispatchError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::MultiSignature

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::TokenError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::TransactionalError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::DigestItem

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::era::Era

source§

impl Decode for OriginCaller

source§

impl Decode for ProxyType

source§

impl Decode for RuntimeCall

source§

impl Decode for RuntimeError

source§

impl Decode for RuntimeEvent

source§

impl Decode for Origin

source§

impl Decode for DispatchInfo

source§

impl Decode for PostDispatchInfo

source§

impl Decode for PalletId

source§

impl Decode for CheckGenesis

source§

impl Decode for CheckMortality

source§

impl Decode for CheckNonZeroSender

source§

impl Decode for CheckNonce

source§

impl Decode for CheckSpecVersion

source§

impl Decode for CheckTxVersion

source§

impl Decode for CheckWeight

source§

impl Decode for BlockLength

source§

impl Decode for BlockWeights

source§

impl Decode for WeightsPerClass

source§

impl Decode for LastRuntimeUpgradeInfo

source§

impl Decode for ChildrenRefs

source§

impl Decode for CodeMetadata

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::code::InstrumentedCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::CodeId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::MessageId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::ProgramId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::ReservationId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::memory::PageBuf

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::ReplyDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::SignalDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::context::ContextStore

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredDispatch

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::PayloadSizeError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::user::UserMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::user::UserStoredMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::pages::GearPage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::pages::WasmPage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::percent::Percent

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::program::MemoryInfix

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::reservation::GasReservationSlot

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::reservation::ReservationNonce

source§

impl Decode for Bag

source§

impl Decode for Node

source§

impl Decode for Vote

source§

impl Decode for ReadySolution

source§

impl Decode for SolutionOrSnapshotSize

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::schedule::HostFnWeights

source§

impl Decode for InstructionWeights

source§

impl Decode for Limits

source§

impl Decode for MemoryWeights

source§

impl Decode for Schedule

source§

impl Decode for DebugData

source§

impl Decode for ProgramDetails

source§

impl Decode for ProgramInfo

source§

impl Decode for StakingBlackList

source§

impl Decode for IdentityInfo

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Signature

source§

impl Decode for BoundedOpaqueNetworkState

source§

impl Decode for BondedPoolInner

source§

impl Decode for Commission

source§

impl Decode for PoolMember

source§

impl Decode for RewardPool

source§

impl Decode for SubPools

source§

impl Decode for UnbondPool

source§

impl Decode for MemberRecord

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::Tally

source§

impl Decode for SlashingSpans

source§

impl Decode for ActiveEraInfo

source§

impl Decode for Nominations

source§

impl Decode for StakingLedger

source§

impl Decode for ValidatorPrefs

source§

impl Decode for ChargeTransactionPayment

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedI64

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedU128

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::PerU16

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perbill

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Percent

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Permill

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perquintill

source§

impl Decode for gsdk::metadata::runtime_types::sp_authority_discovery::app::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_babe::app::Public

source§

impl Decode for PrimaryPreDigest

source§

impl Decode for SecondaryPlainPreDigest

source§

impl Decode for SecondaryVRFPreDigest

source§

impl Decode for BabeEpochConfiguration

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Signature

source§

impl Decode for Slot

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::crypto::KeyTypeId

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ecdsa::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ed25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ed25519::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueMultiaddr

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueNetworkState

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::sr25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::sr25519::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::OpaquePeerId

source§

impl Decode for ElectionScore

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::Digest

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::ModuleError

source§

impl Decode for BlakeTwo256

source§

impl Decode for MembershipProof

source§

impl Decode for RuntimeVersion

source§

impl Decode for gsdk::metadata::runtime_types::sp_weights::RuntimeDbWeight

source§

impl Decode for gsdk::metadata::runtime_types::sp_weights::weight_v2::Weight

source§

impl Decode for NposSolution16

source§

impl Decode for Runtime

source§

impl Decode for SessionKeys

source§

impl Decode for GasInfo

§

impl Decode for Compact<u8>

§

impl Decode for Compact<u16>

§

impl Decode for Compact<u32>

§

impl Decode for Compact<u64>

§

impl Decode for Compact<u128>

§

impl Decode for Compact<()>

§

impl Decode for OptionBool

§

impl<T> Decode for Compact<T>where + __CodecInputEdqy: Input,

Implementors§

source§

impl Decode for gsdk::Program

source§

impl Decode for gsdk::metadata::errors::BagsList

source§

impl Decode for gsdk::metadata::errors::Balances

source§

impl Decode for gsdk::metadata::errors::ConvictionVoting

source§

impl Decode for gsdk::metadata::errors::Gear

source§

impl Decode for gsdk::metadata::errors::GearDebug

source§

impl Decode for gsdk::metadata::errors::GearStakingRewards

source§

impl Decode for gsdk::metadata::errors::Grandpa

source§

impl Decode for gsdk::metadata::errors::Identity

source§

impl Decode for gsdk::metadata::errors::ImOnline

source§

impl Decode for gsdk::metadata::errors::Preimage

source§

impl Decode for gsdk::metadata::errors::RanckedCollective

source§

impl Decode for gsdk::metadata::errors::Referenda

source§

impl Decode for gsdk::metadata::errors::Scheduler

source§

impl Decode for gsdk::metadata::errors::Session

source§

impl Decode for gsdk::metadata::errors::Staking

source§

impl Decode for gsdk::metadata::errors::Sudo

source§

impl Decode for gsdk::metadata::errors::System

source§

impl Decode for gsdk::metadata::errors::Treasury

source§

impl Decode for gsdk::metadata::errors::Utility

source§

impl Decode for gsdk::metadata::errors::Vesting

source§

impl Decode for gsdk::metadata::errors::Whitelist

source§

impl Decode for DispatchClass

source§

impl Decode for Pays

source§

impl Decode for BalanceStatus

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::Phase

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::frame_system::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::gear_common::ProgramState

source§

impl Decode for DispatchStatus

source§

impl Decode for MessageEntry

source§

impl Decode for MessageWaitedRuntimeReason

source§

impl Decode for MessageWaitedSystemReason

source§

impl Decode for MessageWokenRuntimeReason

source§

impl Decode for MessageWokenSystemReason

source§

impl Decode for UserMessageReadRuntimeReason

source§

impl Decode for UserMessageReadSystemReason

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::MessageDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::DispatchKind

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::ErrorReplyReason

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::ReplyCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SignalCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleExecutionError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleProgramCreationError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core_errors::simple::SuccessReplyReason

source§

impl Decode for gsdk::metadata::runtime_types::pallet_babe::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_babe::pallet::Error

source§

impl Decode for ListError

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Event

source§

impl Decode for Reasons

source§

impl Decode for gsdk::metadata::runtime_types::pallet_balances::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_balances::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Event

source§

impl Decode for Conviction

source§

impl Decode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Event

source§

impl Decode for ElectionCompute

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_bank::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::ProgramState

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_gas::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_messenger::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_program::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_scheduler::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_identity::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_identity::pallet::Event

source§

impl Decode for Data

source§

impl Decode for IdentityField

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Event

source§

impl Decode for ClaimPermission

source§

impl Decode for PoolState

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Call

source§

impl Decode for DefensiveError

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_offences::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Error

source§

impl Decode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Event

source§

impl Decode for VoteRecord

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Event

source§

impl Decode for Call2

source§

impl Decode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Call

source§

impl Decode for Error2

source§

impl Decode for Event2

source§

impl Decode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Event

source§

impl Decode for Curve

source§

impl Decode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_session::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_session::pallet::Event

source§

impl Decode for Forcing

source§

impl Decode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_timestamp::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_transaction_payment::Releases

source§

impl Decode for gsdk::metadata::runtime_types::pallet_transaction_payment::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_utility::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_utility::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::Releases

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Call

source§

impl Decode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Event

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::ArithmeticError

source§

impl Decode for NextConfigDescriptor

source§

impl Decode for PreDigest

source§

impl Decode for AllowedSlots

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::Void

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::DispatchError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::MultiSignature

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::TokenError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::TransactionalError

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::DigestItem

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::era::Era

source§

impl Decode for OriginCaller

source§

impl Decode for ProxyType

source§

impl Decode for RuntimeCall

source§

impl Decode for RuntimeError

source§

impl Decode for RuntimeEvent

source§

impl Decode for Origin

source§

impl Decode for DispatchInfo

source§

impl Decode for PostDispatchInfo

source§

impl Decode for PalletId

source§

impl Decode for CheckGenesis

source§

impl Decode for CheckMortality

source§

impl Decode for CheckNonZeroSender

source§

impl Decode for CheckNonce

source§

impl Decode for CheckSpecVersion

source§

impl Decode for CheckTxVersion

source§

impl Decode for CheckWeight

source§

impl Decode for BlockLength

source§

impl Decode for BlockWeights

source§

impl Decode for WeightsPerClass

source§

impl Decode for LastRuntimeUpgradeInfo

source§

impl Decode for ChildrenRefs

source§

impl Decode for CodeMetadata

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::code::InstrumentedCode

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::CodeId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::MessageId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::ProgramId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::ids::ReservationId

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::memory::PageBuf

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::ReplyDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::common::SignalDetails

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::context::ContextStore

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredDispatch

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::PayloadSizeError

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::user::UserMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::message::user::UserStoredMessage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::pages::GearPage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::pages::WasmPage

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::percent::Percent

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::program::MemoryInfix

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::reservation::GasReservationSlot

source§

impl Decode for gsdk::metadata::runtime_types::gear_core::reservation::ReservationNonce

source§

impl Decode for Bag

source§

impl Decode for Node

source§

impl Decode for Vote

source§

impl Decode for ReadySolution

source§

impl Decode for SolutionOrSnapshotSize

source§

impl Decode for gsdk::metadata::runtime_types::pallet_gear::schedule::HostFnWeights

source§

impl Decode for InstructionWeights

source§

impl Decode for Limits

source§

impl Decode for MemoryWeights

source§

impl Decode for Schedule

source§

impl Decode for DebugData

source§

impl Decode for ProgramDetails

source§

impl Decode for ProgramInfo

source§

impl Decode for StakingBlackList

source§

impl Decode for IdentityInfo

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Signature

source§

impl Decode for BoundedOpaqueNetworkState

source§

impl Decode for BondedPoolInner

source§

impl Decode for Commission

source§

impl Decode for PoolMember

source§

impl Decode for RewardPool

source§

impl Decode for SubPools

source§

impl Decode for UnbondPool

source§

impl Decode for MemberRecord

source§

impl Decode for gsdk::metadata::runtime_types::pallet_ranked_collective::Tally

source§

impl Decode for SlashingSpans

source§

impl Decode for ActiveEraInfo

source§

impl Decode for Nominations

source§

impl Decode for StakingLedger

source§

impl Decode for ValidatorPrefs

source§

impl Decode for ChargeTransactionPayment

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedI64

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedU128

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::PerU16

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perbill

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Percent

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Permill

source§

impl Decode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perquintill

source§

impl Decode for gsdk::metadata::runtime_types::sp_authority_discovery::app::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_babe::app::Public

source§

impl Decode for PrimaryPreDigest

source§

impl Decode for SecondaryPlainPreDigest

source§

impl Decode for SecondaryVRFPreDigest

source§

impl Decode for BabeEpochConfiguration

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Signature

source§

impl Decode for Slot

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::crypto::KeyTypeId

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ecdsa::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ed25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::ed25519::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueMultiaddr

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueNetworkState

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::sr25519::Public

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::sr25519::Signature

source§

impl Decode for gsdk::metadata::runtime_types::sp_core::OpaquePeerId

source§

impl Decode for ElectionScore

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::Digest

source§

impl Decode for gsdk::metadata::runtime_types::sp_runtime::ModuleError

source§

impl Decode for BlakeTwo256

source§

impl Decode for MembershipProof

source§

impl Decode for RuntimeVersion

source§

impl Decode for gsdk::metadata::runtime_types::sp_weights::RuntimeDbWeight

source§

impl Decode for gsdk::metadata::runtime_types::sp_weights::weight_v2::Weight

source§

impl Decode for NposSolution16

source§

impl Decode for Runtime

source§

impl Decode for SessionKeys

§

impl Decode for GasInfo

§

impl Decode for Compact<u8>

§

impl Decode for Compact<u16>

§

impl Decode for Compact<u32>

§

impl Decode for Compact<u64>

§

impl Decode for Compact<u128>

§

impl Decode for Compact<()>

§

impl Decode for OptionBool

§

impl<T> Decode for Compact<T>where T: CompactAs, Compact<<T as CompactAs>::As>: Decode,

§

impl<T, X> Decode for Xwhere T: Decode + Into<X>, diff --git a/pr-3467/gsdk/gp/trait.Encode.html b/pr-3467/gsdk/gp/trait.Encode.html index 56a9094e4b9..5582db996e3 100644 --- a/pr-3467/gsdk/gp/trait.Encode.html +++ b/pr-3467/gsdk/gp/trait.Encode.html @@ -23,205 +23,205 @@
Note

This works by using a special [Output] that only tracks the size. So, there are no allocations inside the output. However, this can not prevent allocations that some types are doing inside their own encoding.

-

Implementations on Foreign Types§

source§

impl Encode for HandleMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( +

Implementations on Foreign Types§

§

impl Encode for HandleMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for InstrumentedCode

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for InstrumentedCode

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ProgramId

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ProgramId

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for StoredMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for StoredMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for DispatchKind

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for DispatchKind

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MessageContext

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MessageContext

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MemoryInterval

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MemoryInterval

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for PayloadSizeError

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for PayloadSizeError

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ReservationId

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ReservationId

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for PageBuf

source§

fn size_hint(&self) -> usize

source§

fn encode_to<W>(&self, dest: &mut W)where - W: Output + ?Sized,

source§

impl Encode for SignalMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for PageBuf

§

fn size_hint(&self) -> usize

§

fn encode_to<W>(&self, dest: &mut W)where + W: Output + ?Sized,

§

impl Encode for SignalMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for RuntimeBufferSizeError

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for RuntimeBufferSizeError

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for HostFnWeights

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for HostFnWeights

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for IncomingDispatch

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for IncomingDispatch

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for GasLeft

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for GasLeft

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for SignalDetails

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for SignalDetails

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ReservationNonce

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ReservationNonce

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl<'a> Encode for LimitedStr<'a>

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl<'a> Encode for LimitedStr<'a>

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for Dispatch

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for Dispatch

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MessageId

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MessageId

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for StoredDispatch

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for StoredDispatch

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for CounterType

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for CounterType

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MessageDetails

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MessageDetails

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl<T, E, const N: usize> Encode for LimitedVec<T, E, N>where + __CodecOutputEdqy: Output + ?Sized,

§

impl<T, E, const N: usize> Encode for LimitedVec<T, E, N>where Vec<T, Global>: Encode, - PhantomData<E>: Encode,

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + PhantomData<E>: Encode,

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for IncomingMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for IncomingMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MessageWaitedType

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MessageWaitedType

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ContextOutcome

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ContextOutcome

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for HandlePacket

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for HandlePacket

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for InstrumentedCodeAndId

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for InstrumentedCodeAndId

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for Program

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for Program

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for WasmPage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for WasmPage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for ReplyPacket

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for ReplyPacket

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for Percent

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for Percent

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for ReplyMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for ReplyMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for InitMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for InitMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for Message

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for Message

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ReplyDetails

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ReplyDetails

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for InitPacket

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for InitPacket

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for UserStoredMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for UserStoredMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for GasReservationSlot

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for GasReservationSlot

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for GearPage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for GearPage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for ContextStore

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for ContextStore

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl<P> Encode for CostPerPage<P>where - P: PageU32Size, - PhantomData<P>: Encode,

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl<P> Encode for CostPerPage<P>where + P: PageU32Size, + PhantomData<P>: Encode,

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for UserMessage

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for UserMessage

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for MemoryInfix

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for MemoryInfix

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

source§

impl Encode for ContextSettings

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + F: FnOnce(&[u8]) -> R,

§

impl Encode for ContextSettings

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for CodeId

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for CodeId

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

fn encode(&self) -> Vec<u8, Global>

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere + __CodecOutputEdqy: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,

§

impl<T> Encode for UntrackedSymbol<T>where PhantomData<fn() -> T>: Encode,

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, @@ -588,27 +588,27 @@

Note
T: Output + ?Sized,
§

impl Encode for NonZeroU8

§

fn size_hint(&self) -> usize

§

fn encode_to<W>(&self, dest: &mut W)where W: Output + ?Sized,

§

fn encode(&self) -> Vec<u8, Global>

§

fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,

§

impl<T> Encode for PhantomData<T>

§

fn encode_to<W>(&self, _dest: &mut W)where - W: Output + ?Sized,

source§

impl Encode for ReplyCode

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + W: Output + ?Sized,

§

impl Encode for ReplyCode

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ExtError

source§

fn encode(&self) -> Vec<u8, Global>

source§

impl Encode for SimpleProgramCreationError

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ExtError

§

fn encode(&self) -> Vec<u8, Global>

§

impl Encode for SimpleProgramCreationError

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for SignalCode

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for SignalCode

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for ErrorReplyReason

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for ErrorReplyReason

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for SimpleExecutionError

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for SimpleExecutionError

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

source§

impl Encode for SuccessReplyReason

source§

fn size_hint(&self) -> usize

source§

fn encode_to<__CodecOutputEdqy>( + __CodecOutputEdqy: Output + ?Sized,

§

impl Encode for SuccessReplyReason

§

fn size_hint(&self) -> usize

§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where @@ -1356,7 +1356,7 @@
Note
&self, __codec_dest_edqy: &mut __CodecOutputEdqy )where - __CodecOutputEdqy: Output + ?Sized,

Implementors§

source§

impl Encode for gsdk::metadata::errors::BagsList

source§

impl Encode for gsdk::metadata::errors::Balances

source§

impl Encode for gsdk::metadata::errors::ConvictionVoting

source§

impl Encode for gsdk::metadata::errors::Gear

source§

impl Encode for gsdk::metadata::errors::GearDebug

source§

impl Encode for gsdk::metadata::errors::GearStakingRewards

source§

impl Encode for gsdk::metadata::errors::Grandpa

source§

impl Encode for gsdk::metadata::errors::Identity

source§

impl Encode for gsdk::metadata::errors::ImOnline

source§

impl Encode for gsdk::metadata::errors::Preimage

source§

impl Encode for gsdk::metadata::errors::RanckedCollective

source§

impl Encode for gsdk::metadata::errors::Referenda

source§

impl Encode for gsdk::metadata::errors::Scheduler

source§

impl Encode for gsdk::metadata::errors::Session

source§

impl Encode for gsdk::metadata::errors::Staking

source§

impl Encode for gsdk::metadata::errors::Sudo

source§

impl Encode for gsdk::metadata::errors::System

source§

impl Encode for gsdk::metadata::errors::Treasury

source§

impl Encode for gsdk::metadata::errors::Utility

source§

impl Encode for gsdk::metadata::errors::Vesting

source§

impl Encode for gsdk::metadata::errors::Whitelist

source§

impl Encode for DispatchClass

source§

impl Encode for Pays

source§

impl Encode for BalanceStatus

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::Phase

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::gear_common::ProgramState

source§

impl Encode for DispatchStatus

source§

impl Encode for MessageEntry

source§

impl Encode for MessageWaitedRuntimeReason

source§

impl Encode for MessageWaitedSystemReason

source§

impl Encode for MessageWokenRuntimeReason

source§

impl Encode for MessageWokenSystemReason

source§

impl Encode for UserMessageReadRuntimeReason

source§

impl Encode for UserMessageReadSystemReason

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::MessageDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::DispatchKind

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::ErrorReplyReason

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::ReplyCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SignalCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleExecutionError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleProgramCreationError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SuccessReplyReason

source§

impl Encode for gsdk::metadata::runtime_types::pallet_babe::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_babe::pallet::Error

source§

impl Encode for ListError

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Event

source§

impl Encode for Reasons

source§

impl Encode for gsdk::metadata::runtime_types::pallet_balances::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_balances::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Event

source§

impl Encode for Conviction

source§

impl Encode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Event

source§

impl Encode for ElectionCompute

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_bank::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::ProgramState

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_gas::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_messenger::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_program::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_scheduler::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_identity::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_identity::pallet::Event

source§

impl Encode for Data

source§

impl Encode for IdentityField

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Event

source§

impl Encode for ClaimPermission

source§

impl Encode for PoolState

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Call

source§

impl Encode for DefensiveError

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_offences::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Event

source§

impl Encode for VoteRecord

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Event

source§

impl Encode for Call2

source§

impl Encode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Call

source§

impl Encode for Error2

source§

impl Encode for Event2

source§

impl Encode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Event

source§

impl Encode for Curve

source§

impl Encode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_session::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_session::pallet::Event

source§

impl Encode for Forcing

source§

impl Encode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_timestamp::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_transaction_payment::Releases

source§

impl Encode for gsdk::metadata::runtime_types::pallet_transaction_payment::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_utility::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_utility::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::Releases

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::ArithmeticError

source§

impl Encode for NextConfigDescriptor

source§

impl Encode for PreDigest

source§

impl Encode for AllowedSlots

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::Void

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::DispatchError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::MultiSignature

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::TokenError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::TransactionalError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::DigestItem

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::era::Era

source§

impl Encode for OriginCaller

source§

impl Encode for ProxyType

source§

impl Encode for RuntimeCall

source§

impl Encode for RuntimeError

source§

impl Encode for RuntimeEvent

source§

impl Encode for Origin

source§

impl Encode for DispatchInfo

source§

impl Encode for PostDispatchInfo

source§

impl Encode for PalletId

source§

impl Encode for CheckGenesis

source§

impl Encode for CheckMortality

source§

impl Encode for CheckNonZeroSender

source§

impl Encode for CheckNonce

source§

impl Encode for CheckSpecVersion

source§

impl Encode for CheckTxVersion

source§

impl Encode for CheckWeight

source§

impl Encode for BlockLength

source§

impl Encode for BlockWeights

source§

impl Encode for WeightsPerClass

source§

impl Encode for LastRuntimeUpgradeInfo

source§

impl Encode for ChildrenRefs

source§

impl Encode for CodeMetadata

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::code::InstrumentedCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::CodeId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::MessageId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::ProgramId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::ReservationId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::memory::PageBuf

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::ReplyDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::SignalDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::context::ContextStore

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredDispatch

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::PayloadSizeError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::user::UserMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::user::UserStoredMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::pages::GearPage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::pages::WasmPage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::percent::Percent

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::program::MemoryInfix

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::reservation::GasReservationSlot

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::reservation::ReservationNonce

source§

impl Encode for Bag

source§

impl Encode for Node

source§

impl Encode for Vote

source§

impl Encode for ReadySolution

source§

impl Encode for SolutionOrSnapshotSize

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::schedule::HostFnWeights

source§

impl Encode for InstructionWeights

source§

impl Encode for Limits

source§

impl Encode for MemoryWeights

source§

impl Encode for Schedule

source§

impl Encode for DebugData

source§

impl Encode for ProgramDetails

source§

impl Encode for ProgramInfo

source§

impl Encode for StakingBlackList

source§

impl Encode for IdentityInfo

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Signature

source§

impl Encode for BoundedOpaqueNetworkState

source§

impl Encode for BondedPoolInner

source§

impl Encode for Commission

source§

impl Encode for PoolMember

source§

impl Encode for RewardPool

source§

impl Encode for SubPools

source§

impl Encode for UnbondPool

source§

impl Encode for MemberRecord

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::Tally

source§

impl Encode for SlashingSpans

source§

impl Encode for ActiveEraInfo

source§

impl Encode for Nominations

source§

impl Encode for StakingLedger

source§

impl Encode for ValidatorPrefs

source§

impl Encode for ChargeTransactionPayment

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedI64

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedU128

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::PerU16

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perbill

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Percent

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Permill

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perquintill

source§

impl Encode for gsdk::metadata::runtime_types::sp_authority_discovery::app::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_babe::app::Public

source§

impl Encode for PrimaryPreDigest

source§

impl Encode for SecondaryPlainPreDigest

source§

impl Encode for SecondaryVRFPreDigest

source§

impl Encode for BabeEpochConfiguration

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Signature

source§

impl Encode for Slot

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::crypto::KeyTypeId

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ecdsa::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ed25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ed25519::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueMultiaddr

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueNetworkState

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::sr25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::sr25519::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::OpaquePeerId

source§

impl Encode for ElectionScore

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::Digest

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::ModuleError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::traits::BlakeTwo256

source§

impl Encode for MembershipProof

source§

impl Encode for RuntimeVersion

source§

impl Encode for gsdk::metadata::runtime_types::sp_weights::RuntimeDbWeight

source§

impl Encode for gsdk::metadata::runtime_types::sp_weights::weight_v2::Weight

source§

impl Encode for NposSolution16

source§

impl Encode for Runtime

source§

impl Encode for SessionKeys

source§

impl Encode for GasInfo

§

impl Encode for OptionBool

§

impl<'a> Encode for CompactRef<'a, u8>

§

impl<'a> Encode for CompactRef<'a, u16>

§

impl<'a> Encode for CompactRef<'a, u32>

§

impl<'a> Encode for CompactRef<'a, u64>

§

impl<'a> Encode for CompactRef<'a, u128>

§

impl<'a> Encode for CompactRef<'a, ()>

§

impl<'a, T> Encode for CompactRef<'a, T>where + __CodecOutputEdqy: Output + ?Sized,

Implementors§

source§

impl Encode for gsdk::metadata::errors::BagsList

source§

impl Encode for gsdk::metadata::errors::Balances

source§

impl Encode for gsdk::metadata::errors::ConvictionVoting

source§

impl Encode for gsdk::metadata::errors::Gear

source§

impl Encode for gsdk::metadata::errors::GearDebug

source§

impl Encode for gsdk::metadata::errors::GearStakingRewards

source§

impl Encode for gsdk::metadata::errors::Grandpa

source§

impl Encode for gsdk::metadata::errors::Identity

source§

impl Encode for gsdk::metadata::errors::ImOnline

source§

impl Encode for gsdk::metadata::errors::Preimage

source§

impl Encode for gsdk::metadata::errors::RanckedCollective

source§

impl Encode for gsdk::metadata::errors::Referenda

source§

impl Encode for gsdk::metadata::errors::Scheduler

source§

impl Encode for gsdk::metadata::errors::Session

source§

impl Encode for gsdk::metadata::errors::Staking

source§

impl Encode for gsdk::metadata::errors::Sudo

source§

impl Encode for gsdk::metadata::errors::System

source§

impl Encode for gsdk::metadata::errors::Treasury

source§

impl Encode for gsdk::metadata::errors::Utility

source§

impl Encode for gsdk::metadata::errors::Vesting

source§

impl Encode for gsdk::metadata::errors::Whitelist

source§

impl Encode for DispatchClass

source§

impl Encode for Pays

source§

impl Encode for BalanceStatus

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::Phase

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::frame_system::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::gear_common::ProgramState

source§

impl Encode for DispatchStatus

source§

impl Encode for MessageEntry

source§

impl Encode for MessageWaitedRuntimeReason

source§

impl Encode for MessageWaitedSystemReason

source§

impl Encode for MessageWokenRuntimeReason

source§

impl Encode for MessageWokenSystemReason

source§

impl Encode for UserMessageReadRuntimeReason

source§

impl Encode for UserMessageReadSystemReason

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::MessageDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::DispatchKind

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::ErrorReplyReason

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::ReplyCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SignalCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleExecutionError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SimpleProgramCreationError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core_errors::simple::SuccessReplyReason

source§

impl Encode for gsdk::metadata::runtime_types::pallet_babe::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_babe::pallet::Error

source§

impl Encode for ListError

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bags_list::pallet::Event

source§

impl Encode for Reasons

source§

impl Encode for gsdk::metadata::runtime_types::pallet_balances::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_balances::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_bounties::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_child_bounties::pallet::Event

source§

impl Encode for Conviction

source§

impl Encode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_conviction_voting::pallet::Event

source§

impl Encode for ElectionCompute

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_election_provider_multi_phase::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_bank::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_debug::pallet::ProgramState

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_gas::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_messenger::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_program::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_scheduler::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_staking_rewards::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear_voucher::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_grandpa::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_identity::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_identity::pallet::Event

source§

impl Encode for Data

source§

impl Encode for IdentityField

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_multisig::pallet::Event

source§

impl Encode for ClaimPermission

source§

impl Encode for PoolState

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Call

source§

impl Encode for DefensiveError

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_nomination_pools::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_offences::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_preimage::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Error

source§

impl Encode for gsdk::metadata::runtime_types::pallet_proxy::pallet::Event

source§

impl Encode for VoteRecord

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::pallet::Event

source§

impl Encode for Call2

source§

impl Encode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Call

source§

impl Encode for Error2

source§

impl Encode for Event2

source§

impl Encode for gsdk::metadata::runtime_types::pallet_referenda::pallet::Event

source§

impl Encode for Curve

source§

impl Encode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_scheduler::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_session::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_session::pallet::Event

source§

impl Encode for Forcing

source§

impl Encode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_staking::pallet::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_sudo::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_timestamp::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_transaction_payment::Releases

source§

impl Encode for gsdk::metadata::runtime_types::pallet_transaction_payment::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_treasury::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_utility::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_utility::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::Releases

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_vesting::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Call

source§

impl Encode for gsdk::metadata::runtime_types::pallet_whitelist::pallet::Event

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::ArithmeticError

source§

impl Encode for NextConfigDescriptor

source§

impl Encode for PreDigest

source§

impl Encode for AllowedSlots

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::Void

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::DispatchError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::MultiSignature

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::TokenError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::TransactionalError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::DigestItem

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::era::Era

source§

impl Encode for OriginCaller

source§

impl Encode for ProxyType

source§

impl Encode for RuntimeCall

source§

impl Encode for RuntimeError

source§

impl Encode for RuntimeEvent

source§

impl Encode for Origin

source§

impl Encode for DispatchInfo

source§

impl Encode for PostDispatchInfo

source§

impl Encode for PalletId

source§

impl Encode for CheckGenesis

source§

impl Encode for CheckMortality

source§

impl Encode for CheckNonZeroSender

source§

impl Encode for CheckNonce

source§

impl Encode for CheckSpecVersion

source§

impl Encode for CheckTxVersion

source§

impl Encode for CheckWeight

source§

impl Encode for BlockLength

source§

impl Encode for BlockWeights

source§

impl Encode for WeightsPerClass

source§

impl Encode for LastRuntimeUpgradeInfo

source§

impl Encode for ChildrenRefs

source§

impl Encode for CodeMetadata

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::code::InstrumentedCode

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::CodeId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::MessageId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::ProgramId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::ids::ReservationId

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::memory::PageBuf

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::ReplyDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::common::SignalDetails

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::context::ContextStore

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredDispatch

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::stored::StoredMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::PayloadSizeError

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::user::UserMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::message::user::UserStoredMessage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::pages::GearPage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::pages::WasmPage

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::percent::Percent

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::program::MemoryInfix

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::reservation::GasReservationSlot

source§

impl Encode for gsdk::metadata::runtime_types::gear_core::reservation::ReservationNonce

source§

impl Encode for Bag

source§

impl Encode for Node

source§

impl Encode for Vote

source§

impl Encode for ReadySolution

source§

impl Encode for SolutionOrSnapshotSize

source§

impl Encode for gsdk::metadata::runtime_types::pallet_gear::schedule::HostFnWeights

source§

impl Encode for InstructionWeights

source§

impl Encode for Limits

source§

impl Encode for MemoryWeights

source§

impl Encode for Schedule

source§

impl Encode for DebugData

source§

impl Encode for ProgramDetails

source§

impl Encode for ProgramInfo

source§

impl Encode for StakingBlackList

source§

impl Encode for IdentityInfo

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::pallet_im_online::sr25519::app_sr25519::Signature

source§

impl Encode for BoundedOpaqueNetworkState

source§

impl Encode for BondedPoolInner

source§

impl Encode for Commission

source§

impl Encode for PoolMember

source§

impl Encode for RewardPool

source§

impl Encode for SubPools

source§

impl Encode for UnbondPool

source§

impl Encode for MemberRecord

source§

impl Encode for gsdk::metadata::runtime_types::pallet_ranked_collective::Tally

source§

impl Encode for SlashingSpans

source§

impl Encode for ActiveEraInfo

source§

impl Encode for Nominations

source§

impl Encode for StakingLedger

source§

impl Encode for ValidatorPrefs

source§

impl Encode for ChargeTransactionPayment

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedI64

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::fixed_point::FixedU128

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::PerU16

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perbill

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Percent

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Permill

source§

impl Encode for gsdk::metadata::runtime_types::sp_arithmetic::per_things::Perquintill

source§

impl Encode for gsdk::metadata::runtime_types::sp_authority_discovery::app::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_babe::app::Public

source§

impl Encode for PrimaryPreDigest

source§

impl Encode for SecondaryPlainPreDigest

source§

impl Encode for SecondaryVRFPreDigest

source§

impl Encode for BabeEpochConfiguration

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_consensus_grandpa::app::Signature

source§

impl Encode for Slot

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::crypto::KeyTypeId

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ecdsa::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ed25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::ed25519::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueMultiaddr

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::offchain::OpaqueNetworkState

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::sr25519::Public

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::sr25519::Signature

source§

impl Encode for gsdk::metadata::runtime_types::sp_core::OpaquePeerId

source§

impl Encode for ElectionScore

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::generic::digest::Digest

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::ModuleError

source§

impl Encode for gsdk::metadata::runtime_types::sp_runtime::traits::BlakeTwo256

source§

impl Encode for MembershipProof

source§

impl Encode for RuntimeVersion

source§

impl Encode for gsdk::metadata::runtime_types::sp_weights::RuntimeDbWeight

source§

impl Encode for gsdk::metadata::runtime_types::sp_weights::weight_v2::Weight

source§

impl Encode for NposSolution16

source§

impl Encode for Runtime

source§

impl Encode for SessionKeys

§

impl Encode for GasInfo

§

impl Encode for OptionBool

§

impl<'a> Encode for CompactRef<'a, u8>

§

impl<'a> Encode for CompactRef<'a, u16>

§

impl<'a> Encode for CompactRef<'a, u32>

§

impl<'a> Encode for CompactRef<'a, u64>

§

impl<'a> Encode for CompactRef<'a, u128>

§

impl<'a> Encode for CompactRef<'a, ()>

§

impl<'a, T> Encode for CompactRef<'a, T>where T: CompactAs, CompactRef<'b, <T as CompactAs>::As>: for<'b> Encode,

§

impl<T> Encode for Compact<T>where CompactRef<'a, T>: for<'a> Encode,

§

impl<T, X> Encode for Xwhere diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_common/gas_provider/node/enum.GasNodeId.html b/pr-3467/gsdk/metadata/runtime_types/gear_common/gas_provider/node/enum.GasNodeId.html index 2ade7874110..4e9c5b84da2 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_common/gas_provider/node/enum.GasNodeId.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_common/gas_provider/node/enum.GasNodeId.html @@ -16,7 +16,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl<_0, _1> IntoVisitor for GasNodeId<_0, _1>where + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl<_0, _1> IntoVisitor for GasNodeId<_0, _1>where _0: IntoVisitor, Error: From<<<_0 as IntoVisitor>::Visitor as Visitor>::Error> + From<<<_1 as IntoVisitor>::Visitor as Visitor>::Error>, _1: IntoVisitor,

§

type Visitor = Visitor<_0, _1>

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl<M: Copy, R: Copy> Copy for GasNodeId<M, R>

source§

impl<_0, _1> EncodeLike<GasNodeId<_0, _1>> for GasNodeId<_0, _1>where diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.CodeId.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.CodeId.html index ab8e4e879d1..79a528d7fe8 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.CodeId.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.CodeId.html @@ -12,7 +12,7 @@ ) -> Result<Self, Error>

Given some bytes and some fields denoting their structure, attempt to decode.
source§

impl Encode for CodeId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for CodeId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<CodeId> for CodeId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +)
Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for CodeId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<CodeId> for CodeId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for CodeId

source§

impl EncodeLike<CodeId> for CodeId

Auto Trait Implementations§

§

impl RefUnwindSafe for CodeId

§

impl Send for CodeId

§

impl Sync for CodeId

§

impl Unpin for CodeId

§

impl UnwindSafe for CodeId

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.MessageId.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.MessageId.html index 8f01658a229..6c065b5cbd7 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.MessageId.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.MessageId.html @@ -12,7 +12,7 @@ ) -> Result<Self, Error>

Given some bytes and some fields denoting their structure, attempt to decode.
source§

impl Encode for MessageId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for MessageId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<MessageId> for MessageId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +)
Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for MessageId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<MessageId> for MessageId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for MessageId

source§

impl EncodeLike<MessageId> for MessageId

Auto Trait Implementations§

§

impl RefUnwindSafe for MessageId

§

impl Send for MessageId

§

impl Sync for MessageId

§

impl Unpin for MessageId

§

impl UnwindSafe for MessageId

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ProgramId.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ProgramId.html index b6785fbaed6..11b5f2ecb48 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ProgramId.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ProgramId.html @@ -12,7 +12,7 @@ ) -> Result<Self, Error>

Given some bytes and some fields denoting their structure, attempt to decode.
source§

impl Encode for ProgramId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ProgramId> for ProgramId

source§

fn from(other: ProgramId) -> Self

Converts to this type from the input type.
source§

impl From<ProgramId> for ProgramId

source§

fn from(other: ProgramId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ProgramId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ProgramId> for ProgramId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +)
Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ProgramId> for ProgramId

source§

fn from(other: ProgramId) -> Self

Converts to this type from the input type.
source§

impl From<ProgramId> for ProgramId

source§

fn from(other: ProgramId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ProgramId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ProgramId> for ProgramId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ProgramId

source§

impl EncodeLike<ProgramId> for ProgramId

Auto Trait Implementations§

§

impl RefUnwindSafe for ProgramId

§

impl Send for ProgramId

§

impl Sync for ProgramId

§

impl Unpin for ProgramId

§

impl UnwindSafe for ProgramId

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ReservationId.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ReservationId.html index 09e1141baf4..05bfc5d45e3 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ReservationId.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/ids/struct.ReservationId.html @@ -12,7 +12,7 @@ ) -> Result<Self, Error>

Given some bytes and some fields denoting their structure, attempt to decode.
source§

impl Encode for ReservationId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReservationId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ReservationId> for ReservationId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +)
Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReservationId

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ReservationId> for ReservationId

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ReservationId

source§

impl EncodeLike<ReservationId> for ReservationId

Auto Trait Implementations§

§

impl RefUnwindSafe for ReservationId

§

impl Send for ReservationId

§

impl Sync for ReservationId

§

impl Unpin for ReservationId

§

impl UnwindSafe for ReservationId

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/common/struct.ReplyDetails.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/common/struct.ReplyDetails.html index 7f9d5644d4c..8cc8739ee64 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/common/struct.ReplyDetails.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/common/struct.ReplyDetails.html @@ -16,7 +16,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ReplyDetails> for ReplyDetails

source§

fn from(other: ReplyDetails) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReplyDetails

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<ReplyDetails> for ReplyDetails

Auto Trait Implementations§

§

impl RefUnwindSafe for ReplyDetails

§

impl Send for ReplyDetails

§

impl Sync for ReplyDetails

§

impl Unpin for ReplyDetails

§

impl UnwindSafe for ReplyDetails

Blanket Implementations§

source§

impl<T> Any for Twhere + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ReplyDetails> for ReplyDetails

source§

fn from(other: ReplyDetails) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReplyDetails

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<ReplyDetails> for ReplyDetails

Auto Trait Implementations§

§

impl RefUnwindSafe for ReplyDetails

§

impl Send for ReplyDetails

§

impl Sync for ReplyDetails

§

impl Unpin for ReplyDetails

§

impl UnwindSafe for ReplyDetails

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedConversion for T

§

fn checked_from<T>(t: T) -> Option<Self>where diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserMessage.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserMessage.html index 85cd8cdd6a6..4949e91fc7f 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserMessage.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserMessage.html @@ -20,7 +20,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<UserMessage> for UserMessage

source§

fn from(other: UserMessage) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for UserMessage

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<UserMessage> for UserMessage

Auto Trait Implementations§

§

impl RefUnwindSafe for UserMessage

§

impl Send for UserMessage

§

impl Sync for UserMessage

§

impl Unpin for UserMessage

§

impl UnwindSafe for UserMessage

Blanket Implementations§

source§

impl<T> Any for Twhere + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<UserMessage> for UserMessage

source§

fn from(other: UserMessage) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for UserMessage

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<UserMessage> for UserMessage

Auto Trait Implementations§

§

impl RefUnwindSafe for UserMessage

§

impl Send for UserMessage

§

impl Sync for UserMessage

§

impl Unpin for UserMessage

§

impl UnwindSafe for UserMessage

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedConversion for T

§

fn checked_from<T>(t: T) -> Option<Self>where diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserStoredMessage.html b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserStoredMessage.html index 623a8b38ef7..427c605c3f3 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserStoredMessage.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core/message/user/struct.UserStoredMessage.html @@ -19,7 +19,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<UserStoredMessage> for UserStoredMessage

source§

fn from(other: UserStoredMessage) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for UserStoredMessage

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<UserStoredMessage> for UserStoredMessage

Auto Trait Implementations§

§

impl RefUnwindSafe for UserStoredMessage

§

impl Send for UserStoredMessage

§

impl Sync for UserStoredMessage

§

impl Unpin for UserStoredMessage

§

impl UnwindSafe for UserStoredMessage

Blanket Implementations§

source§

impl<T> Any for Twhere + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<UserStoredMessage> for UserStoredMessage

source§

fn from(other: UserStoredMessage) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for UserStoredMessage

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl EncodeLike<UserStoredMessage> for UserStoredMessage

Auto Trait Implementations§

§

impl RefUnwindSafe for UserStoredMessage

§

impl Send for UserStoredMessage

§

impl Sync for UserStoredMessage

§

impl Unpin for UserStoredMessage

§

impl UnwindSafe for UserStoredMessage

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedConversion for T

§

fn checked_from<T>(t: T) -> Option<Self>where diff --git a/pr-3467/gsdk/metadata/runtime_types/gear_core_errors/simple/enum.ReplyCode.html b/pr-3467/gsdk/metadata/runtime_types/gear_core_errors/simple/enum.ReplyCode.html index 1caacb49c7c..4684db5fdee 100644 --- a/pr-3467/gsdk/metadata/runtime_types/gear_core_errors/simple/enum.ReplyCode.html +++ b/pr-3467/gsdk/metadata/runtime_types/gear_core_errors/simple/enum.ReplyCode.html @@ -13,7 +13,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ReplyCode> for ReplyCode

source§

fn from(value: ReplyCode) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReplyCode

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ReplyCode> for ReplyCode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used + F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<ReplyCode> for ReplyCode

source§

fn from(value: ReplyCode) -> Self

Converts to this type from the input type.
source§

impl IntoVisitor for ReplyCode

§

type Visitor = Visitor

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl PartialEq<ReplyCode> for ReplyCode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl EncodeLike<ReplyCode> for ReplyCode

Auto Trait Implementations§

§

impl RefUnwindSafe for ReplyCode

§

impl Send for ReplyCode

§

impl Sync for ReplyCode

§

impl Unpin for ReplyCode

§

impl UnwindSafe for ReplyCode

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gsdk/struct.Api.html b/pr-3467/gsdk/struct.Api.html index e13863291ed..d1542361938 100644 --- a/pr-3467/gsdk/struct.Api.html +++ b/pr-3467/gsdk/struct.Api.html @@ -43,7 +43,7 @@

source§

impl Api

source

pub async fn calculate_create_gas( &self, origin: H256, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -61,7 +61,7 @@

source

pub async fn calculate_handle_gas( &self, origin: H256, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -70,7 +70,7 @@

source

pub async fn calculate_reply_gas( &self, origin: H256, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -151,7 +151,7 @@

Example
let bn = api.number().await?; } -
source

pub async fn program_pages(&self, pid: ProgramId) -> Result<GearPages>

Get program pages from program id.

+
source

pub async fn program_pages(&self, pid: ProgramId) -> Result<GearPages>

Get program pages from program id.

source§

impl Api

source

pub async fn info_at( &self, address: &str, @@ -200,40 +200,40 @@

Example
) -> Result<BlockNumber>

Get gear block number.

source§

impl Api

source

pub async fn original_code_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: impl Into<Option<H256>> ) -> Result<Vec<u8>>

Get original code by its CodeId at specified block.

-
source

pub async fn original_code_storage(&self, code_id: CodeId) -> Result<Vec<u8>>

Get original code by its CodeId.

+
source

pub async fn original_code_storage(&self, code_id: CodeId) -> Result<Vec<u8>>

Get original code by its CodeId.

source

pub async fn code_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: impl Into<Option<H256>> ) -> Result<InstrumentedCode>

Get InstrumentedCode by its `CodeId at specified block.

-
source

pub async fn code_storage(&self, code_id: CodeId) -> Result<InstrumentedCode>

Get InstrumentedCode by its `CodeId.

+
source

pub async fn code_storage(&self, code_id: CodeId) -> Result<InstrumentedCode>

Get InstrumentedCode by its `CodeId.

source

pub async fn code_len_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: impl Into<Option<H256>> ) -> Result<u32>

Get InstrumentedCode length by its CodeId at specified block.

-
source

pub async fn code_len_storage(&self, code_id: CodeId) -> Result<u32>

Get InstrumentedCode length by its CodeId.

+
source

pub async fn code_len_storage(&self, code_id: CodeId) -> Result<u32>

Get InstrumentedCode length by its CodeId.

source

pub async fn gprog_at( &self, - program_id: ProgramId, + program_id: ProgramId, block_hash: impl Into<Option<H256>> ) -> Result<ActiveProgram<BlockNumber>>

Get active program from program id at specified block.

source

pub async fn gprog( &self, - program_id: ProgramId + program_id: ProgramId ) -> Result<ActiveProgram<BlockNumber>>

Get active program from program id.

source

pub async fn gpages_at( &self, - program_id: ProgramId, + program_id: ProgramId, program: &ActiveProgram<BlockNumber>, block_hash: impl Into<Option<H256>> ) -> Result<GearPages>

Get pages of active program at specified block.

source

pub async fn gpages( &self, - program_id: ProgramId, + program_id: ProgramId, program: &ActiveProgram<BlockNumber> ) -> Result<GearPages>

Get pages of active program.

source§

impl Api

source

pub async fn get_mailbox_account_message( diff --git a/pr-3467/gsdk/struct.GasInfo.html b/pr-3467/gsdk/struct.GasInfo.html index 0e11c54dfe3..3b9998e326e 100644 --- a/pr-3467/gsdk/struct.GasInfo.html +++ b/pr-3467/gsdk/struct.GasInfo.html @@ -1,4 +1,4 @@ -GasInfo in gsdk - Rust

Struct gsdk::GasInfo

source ·
pub struct GasInfo {
+GasInfo in gsdk - Rust

Struct gsdk::GasInfo

pub struct GasInfo {
     pub min_limit: u64,
     pub reserved: u64,
     pub burned: u64,
@@ -14,7 +14,7 @@
 
§waited: bool

Was the message placed into waitlist at the end of calculating.

This flag shows, that min_limit makes sense and have some guarantees only before insertion into waitlist.

-

Trait Implementations§

source§

impl Clone for GasInfo

source§

fn clone(&self) -> GasInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GasInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Decode for GasInfo

source§

fn decode<__CodecInputEdqy>( +

Trait Implementations§

§

impl Clone for GasInfo

§

fn clone(&self) -> GasInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for GasInfo

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Decode for GasInfo

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<GasInfo, Error>where __CodecInputEdqy: Input,

Attempt to deserialise the value from input.
§

fn decode_into<I>( @@ -22,21 +22,21 @@ dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>where I: Input,

Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
§

fn skip<I>(input: &mut I) -> Result<(), Error>where - I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl<'de> Deserialize<'de> for GasInfo

source§

fn deserialize<__D>( + I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
§

impl<'de> Deserialize<'de> for GasInfo

§

fn deserialize<__D>( __deserializer: __D ) -> Result<GasInfo, <__D as Deserializer<'de>>::Error>where - __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Encode for GasInfo

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy>( + __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Encode for GasInfo

§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where __CodecOutputEdqy: Output + ?Sized,

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl PartialEq<GasInfo> for GasInfo

source§

fn eq(&self, other: &GasInfo) -> bool

This method tests for self and other values to be equal, and is used + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
§

impl PartialEq<GasInfo> for GasInfo

§

fn eq(&self, other: &GasInfo) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Serialize for GasInfo

source§

fn serialize<__S>( +sufficient, and should not be overridden without very good reason.

§

impl Serialize for GasInfo

§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where - __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TypeInfo for GasInfo

§

type Identity = GasInfo

The type identifying for which type info is provided. Read more
source§

fn type_info() -> Type<MetaForm>

Returns the static type identifier for Self.
source§

impl EncodeLike<GasInfo> for GasInfo

source§

impl Eq for GasInfo

source§

impl StructuralEq for GasInfo

source§

impl StructuralPartialEq for GasInfo

Auto Trait Implementations§

§

impl RefUnwindSafe for GasInfo

§

impl Send for GasInfo

§

impl Sync for GasInfo

§

impl Unpin for GasInfo

§

impl UnwindSafe for GasInfo

Blanket Implementations§

source§

impl<T> Any for Twhere + __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl TypeInfo for GasInfo

§

type Identity = GasInfo

The type identifying for which type info is provided. Read more
§

fn type_info() -> Type<MetaForm>

Returns the static type identifier for Self.
§

impl EncodeLike<GasInfo> for GasInfo

§

impl Eq for GasInfo

§

impl StructuralEq for GasInfo

§

impl StructuralPartialEq for GasInfo

Auto Trait Implementations§

§

impl RefUnwindSafe for GasInfo

§

impl Send for GasInfo

§

impl Sync for GasInfo

§

impl Unpin for GasInfo

§

impl UnwindSafe for GasInfo

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedConversion for T

§

fn checked_from<T>(t: T) -> Option<Self>where diff --git a/pr-3467/gsdk/type.GearGasNode.html b/pr-3467/gsdk/type.GearGasNode.html index 43a128d5dbb..9f1f56fa1a1 100644 --- a/pr-3467/gsdk/type.GearGasNode.html +++ b/pr-3467/gsdk/type.GearGasNode.html @@ -25,8 +25,8 @@ consumed: bool, }, SpecifiedLocal { - parent: GasNodeId<MessageId, ReservationId>, - root: GasNodeId<MessageId, ReservationId>, + parent: GasNodeId<MessageId, ReservationId>, + root: GasNodeId<MessageId, ReservationId>, value: u64, lock: NodeLock<u64>, system_reserve: u64, @@ -34,12 +34,12 @@ consumed: bool, }, UnspecifiedLocal { - parent: GasNodeId<MessageId, ReservationId>, - root: GasNodeId<MessageId, ReservationId>, + parent: GasNodeId<MessageId, ReservationId>, + root: GasNodeId<MessageId, ReservationId>, lock: NodeLock<u64>, system_reserve: u64, }, -}

Variants§

§

External

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§system_reserve: u64
§consumed: bool
§deposit: bool
§

Cut

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§

Reserved

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§consumed: bool
§

SpecifiedLocal

Fields

§value: u64
§system_reserve: u64
§consumed: bool
§

UnspecifiedLocal

Trait Implementations§

source§

impl<_0: Debug, _1: Debug, _2: Debug, _3: Debug> Debug for GasNode<_0, _1, _2, _3>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<_0, _1, _2, _3> Decode for GasNode<_0, _1, _2, _3>where +}

Variants§

§

External

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§system_reserve: u64
§consumed: bool
§deposit: bool
§

Cut

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§

Reserved

Fields

§id: AccountId32
§multiplier: GasMultiplier<u128, u64>
§value: u64
§consumed: bool
§

SpecifiedLocal

Fields

§parent: GasNodeId<MessageId, ReservationId>
§root: GasNodeId<MessageId, ReservationId>
§value: u64
§system_reserve: u64
§consumed: bool
§

UnspecifiedLocal

Fields

§parent: GasNodeId<MessageId, ReservationId>
§root: GasNodeId<MessageId, ReservationId>
§system_reserve: u64

Trait Implementations§

source§

impl<_0: Debug, _1: Debug, _2: Debug, _3: Debug> Debug for GasNode<_0, _1, _2, _3>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<_0, _1, _2, _3> Decode for GasNode<_0, _1, _2, _3>where _0: Decode, GasMultiplier<_3, _2>: Decode, _2: Decode, diff --git a/pr-3467/gsdk/type.GearGasNodeId.html b/pr-3467/gsdk/type.GearGasNodeId.html index 270278d215f..8e1c24f1f40 100644 --- a/pr-3467/gsdk/type.GearGasNodeId.html +++ b/pr-3467/gsdk/type.GearGasNodeId.html @@ -1,8 +1,8 @@ -GearGasNodeId in gsdk - Rust

Type Alias gsdk::GearGasNodeId

source ·
pub type GearGasNodeId = GasNodeId<MessageId, ReservationId>;
Expand description

Gear gas node id.

+GearGasNodeId in gsdk - Rust

Type Alias gsdk::GearGasNodeId

source ·
pub type GearGasNodeId = GasNodeId<MessageId, ReservationId>;
Expand description

Gear gas node id.

Aliased Type§

enum GearGasNodeId {
-    Node(MessageId),
-    Reservation(ReservationId),
-}

Variants§

§

Node(MessageId)

§

Reservation(ReservationId)

Trait Implementations§

source§

impl<M: Clone, R: Clone> Clone for GasNodeId<M, R>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<_0: Debug, _1: Debug> Debug for GasNodeId<_0, _1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<_0, _1> Decode for GasNodeId<_0, _1>where + Node(MessageId), + Reservation(ReservationId), +}

Variants§

§

Node(MessageId)

§

Reservation(ReservationId)

Trait Implementations§

source§

impl<M: Clone, R: Clone> Clone for GasNodeId<M, R>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<_0: Debug, _1: Debug> Debug for GasNodeId<_0, _1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<_0, _1> Decode for GasNodeId<_0, _1>where _0: Decode, _1: Decode,

source§

fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy @@ -17,7 +17,7 @@ &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl<_0, _1> IntoVisitor for GasNodeId<_0, _1>where + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more

source§

impl<M> From<ReservationId> for GasNodeId<M, ReservationId>

source§

fn from(other: ReservationId) -> Self

Converts to this type from the input type.
source§

impl<_0, _1> IntoVisitor for GasNodeId<_0, _1>where _0: IntoVisitor, Error: From<<<_0 as IntoVisitor>::Visitor as Visitor>::Error> + From<<<_1 as IntoVisitor>::Visitor as Visitor>::Error>, _1: IntoVisitor,

§

type Visitor = Visitor<_0, _1>

The visitor type used to decode SCALE encoded bytes to Self.
source§

fn into_visitor() -> Self::Visitor

A means of obtaining this visitor.
source§

impl<M: Copy, R: Copy> Copy for GasNodeId<M, R>

source§

impl<_0, _1> EncodeLike<GasNodeId<_0, _1>> for GasNodeId<_0, _1>where diff --git a/pr-3467/gstd/errors/enum.Error.html b/pr-3467/gstd/errors/enum.Error.html index 3511f9d9eca..94618bd0804 100644 --- a/pr-3467/gstd/errors/enum.Error.html +++ b/pr-3467/gstd/errors/enum.Error.html @@ -1,5 +1,5 @@ Error in gstd::errors - Rust

Enum gstd::errors::Error

source ·
pub enum Error {
-    Core(Error),
+    Core(Error),
     Timeout(u32, u32),
     Convert(&'static str),
     Decode(Error),
@@ -8,7 +8,7 @@
     ZeroSystemReservationAmount,
     ZeroMxLockDuration,
 }
Expand description

Common error type returned by API functions from other modules.

-

Variants§

Variants§

§

Core(Error)

[gcore::errors::Error] type.

§

Timeout(u32, u32)

Timeout reached while expecting for reply.

§

Convert(&'static str)

Conversion error.

§

Decode(Error)

Decoding error.

@@ -21,7 +21,7 @@ Config::set_system_reserve).

§

ZeroMxLockDuration

This error occurs when providing zero duration to mutex lock function

Implementations§

source§

impl Error

source

pub fn timed_out(&self) -> bool

Check whether an error is Error::Timeout.

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Error> for Error

source§

fn from(err: CoreError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Error> for Error

source§

fn from(err: CoreError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Error

source§

impl StructuralEq for Error

source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gstd/errors/enum.ExtError.html b/pr-3467/gstd/errors/enum.ExtError.html index dd493f7e1ab..e8eec338e78 100644 --- a/pr-3467/gstd/errors/enum.ExtError.html +++ b/pr-3467/gstd/errors/enum.ExtError.html @@ -25,7 +25,7 @@ _derive_more_display_formatter: &mut Formatter<'_> ) -> Result<(), Error>

Formats the value using the given formatter. Read more

§

impl Encode for ExtError

§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
§

fn encode_to<T>(&self, dest: &mut T)where T: Output + ?Sized,

Convert self to a slice and append it to the destination.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
§

impl From<()> for ExtError

§

fn from(original: ()) -> ExtError

Converts to this type from the input type.
§

impl From<ExecutionError> for ExtError

§

fn from(original: ExecutionError) -> ExtError

Converts to this type from the input type.
source§

impl From<ExtError> for Error

source§

fn from(err: ExtError) -> Error

Converts to this type from the input type.
§

impl From<MemoryError> for ExtError

§

fn from(original: MemoryError) -> ExtError

Converts to this type from the input type.
§

impl From<MessageError> for ExtError

§

fn from(original: MessageError) -> ExtError

Converts to this type from the input type.
§

impl From<ProgramRentError> for ExtError

§

fn from(original: ProgramRentError) -> ExtError

Converts to this type from the input type.
§

impl From<ReservationError> for ExtError

§

fn from(original: ReservationError) -> ExtError

Converts to this type from the input type.
§

impl Hash for ExtError

§

fn hash<__H>(&self, state: &mut __H)where + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
§

impl From<()> for ExtError

§

fn from(original: ()) -> ExtError

Converts to this type from the input type.
§

impl From<ExecutionError> for ExtError

§

fn from(original: ExecutionError) -> ExtError

Converts to this type from the input type.
§

impl From<ExtError> for Error

§

fn from(err: ExtError) -> Error

Converts to this type from the input type.
§

impl From<MemoryError> for ExtError

§

fn from(original: MemoryError) -> ExtError

Converts to this type from the input type.
§

impl From<MessageError> for ExtError

§

fn from(original: MessageError) -> ExtError

Converts to this type from the input type.
§

impl From<ProgramRentError> for ExtError

§

fn from(original: ProgramRentError) -> ExtError

Converts to this type from the input type.
§

impl From<ReservationError> for ExtError

§

fn from(original: ReservationError) -> ExtError

Converts to this type from the input type.
§

impl Hash for ExtError

§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for ExtError

§

fn cmp(&self, other: &ExtError) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere diff --git a/pr-3467/gstd/errors/struct.SyscallError.html b/pr-3467/gstd/errors/struct.SyscallError.html index 87fd88857f8..5274fbf9bbd 100644 --- a/pr-3467/gstd/errors/struct.SyscallError.html +++ b/pr-3467/gstd/errors/struct.SyscallError.html @@ -1,14 +1,14 @@ -SyscallError in gstd::errors - Rust

Struct gstd::errors::SyscallError

source ·
#[repr(transparent)]
pub struct SyscallError(/* private fields */);
Expand description

Syscall executing result.

+SyscallError in gstd::errors - Rust

Struct gstd::errors::SyscallError

#[repr(transparent)]
pub struct SyscallError(/* private fields */);
Expand description

Syscall executing result.

The wrapped value is the length of the error string, if any.

-

Implementations§

source§

impl SyscallError

source

pub fn into_result(self) -> Result<(), Error>

Convert SyscallError into Result.

-

Trait Implementations§

source§

impl Clone for SyscallError

source§

fn clone(&self) -> SyscallError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SyscallError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<SyscallError> for Result<(), Error>

source§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
source§

impl Ord for SyscallError

source§

fn cmp(&self, other: &SyscallError) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere +

Implementations§

§

impl SyscallError

pub fn into_result(self) -> Result<(), Error>

Convert SyscallError into Result.

+

Trait Implementations§

§

impl Clone for SyscallError

§

fn clone(&self) -> SyscallError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for SyscallError

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<SyscallError> for Result<(), Error>

§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
§

impl Ord for SyscallError

§

fn cmp(&self, other: &SyscallError) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere - Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<SyscallError> for SyscallError

source§

fn eq(&self, other: &SyscallError) -> bool

This method tests for self and other values to be equal, and is used + Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
§

impl PartialEq<SyscallError> for SyscallError

§

fn eq(&self, other: &SyscallError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<SyscallError> for SyscallError

source§

fn partial_cmp(&self, other: &SyscallError) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= +sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<SyscallError> for SyscallError

§

fn partial_cmp(&self, other: &SyscallError) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
source§

impl Copy for SyscallError

source§

impl Eq for SyscallError

source§

impl StructuralEq for SyscallError

source§

impl StructuralPartialEq for SyscallError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +operator. Read more

§

impl Copy for SyscallError

§

impl Eq for SyscallError

§

impl StructuralEq for SyscallError

§

impl StructuralPartialEq for SyscallError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> Twhere diff --git a/pr-3467/gstd/errors/type.Result.html b/pr-3467/gstd/errors/type.Result.html index ffebfbd40ce..b09bc99b97b 100644 --- a/pr-3467/gstd/errors/type.Result.html +++ b/pr-3467/gstd/errors/type.Result.html @@ -509,7 +509,7 @@
Examples
T: Encode, E: Encode,

§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
§

fn encode_to<W>(&self, dest: &mut W)where W: Output + ?Sized,

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

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

source§

fn from(res: &StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
source§

impl From<SyscallError> for Result<(), Error>

source§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
1.0.0 · source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

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

source§

fn from(res: &StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
§

impl From<SyscallError> for Result<(), Error>

§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
1.0.0 · source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where V: FromIterator<A>,

source§

fn from_iter<I>(iter: I) -> Result<V, E>where I: IntoIterator<Item = Result<A, E>>,

Takes each element in the Iterator: if it is an Err, no further elements are taken, and the Err is returned. Should no Err occur, a diff --git a/pr-3467/gstd/exec/fn.block_height.html b/pr-3467/gstd/exec/fn.block_height.html index c3352b5ed90..bd268791a4d 100644 --- a/pr-3467/gstd/exec/fn.block_height.html +++ b/pr-3467/gstd/exec/fn.block_height.html @@ -1,4 +1,4 @@ -block_height in gstd::exec - Rust

Function gstd::exec::block_height

source ·
pub fn block_height() -> u32
Expand description

Get the current block height.

+block_height in gstd::exec - Rust

Function gstd::exec::block_height

pub fn block_height() -> u32
Expand description

Get the current block height.

The block height serves to identify a particular block. This information can be used to enable many scenarios, like restricting or allowing some functions until a particular block height is reached.

diff --git a/pr-3467/gstd/exec/fn.block_timestamp.html b/pr-3467/gstd/exec/fn.block_timestamp.html index 3cd519f4106..fa3447ce96b 100644 --- a/pr-3467/gstd/exec/fn.block_timestamp.html +++ b/pr-3467/gstd/exec/fn.block_timestamp.html @@ -1,4 +1,4 @@ -block_timestamp in gstd::exec - Rust

Function gstd::exec::block_timestamp

source ·
pub fn block_timestamp() -> u64
Expand description

Get the current block timestamp.

+block_timestamp in gstd::exec - Rust

Function gstd::exec::block_timestamp

pub fn block_timestamp() -> u64
Expand description

Get the current block timestamp.

The timestamp is the number of milliseconds elapsed since the Unix epoch.

Examples

Send a reply after the block timestamp reaches February 22, 2022:

diff --git a/pr-3467/gstd/exec/fn.env_vars.html b/pr-3467/gstd/exec/fn.env_vars.html index b549c52f5af..ef9842e032f 100644 --- a/pr-3467/gstd/exec/fn.env_vars.html +++ b/pr-3467/gstd/exec/fn.env_vars.html @@ -1,2 +1,2 @@ -env_vars in gstd::exec - Rust

Function gstd::exec::env_vars

source ·
pub fn env_vars() -> EnvVars
Expand description

Get current version of environment variables.

+env_vars in gstd::exec - Rust

Function gstd::exec::env_vars

pub fn env_vars() -> EnvVars
Expand description

Get current version of environment variables.

\ No newline at end of file diff --git a/pr-3467/gstd/exec/fn.gas_available.html b/pr-3467/gstd/exec/fn.gas_available.html index 04037e0bd7c..e19f4c2d10c 100644 --- a/pr-3467/gstd/exec/fn.gas_available.html +++ b/pr-3467/gstd/exec/fn.gas_available.html @@ -1,4 +1,4 @@ -gas_available in gstd::exec - Rust

Function gstd::exec::gas_available

source ·
pub fn gas_available() -> u64
Expand description

Get the current amount of gas available for execution.

+gas_available in gstd::exec - Rust

Function gstd::exec::gas_available

pub fn gas_available() -> u64
Expand description

Get the current amount of gas available for execution.

Each message processing consumes gas on instructions execution and memory allocations. This function returns a value of the gas available for spending during the current execution. Its use may help avoid unexpected behaviors diff --git a/pr-3467/gstd/exec/fn.leave.html b/pr-3467/gstd/exec/fn.leave.html index 9c531c5094d..1702f673c59 100644 --- a/pr-3467/gstd/exec/fn.leave.html +++ b/pr-3467/gstd/exec/fn.leave.html @@ -1,4 +1,4 @@ -leave in gstd::exec - Rust

Function gstd::exec::leave

source ·
pub fn leave() -> !
Expand description

Break the current execution.

+leave in gstd::exec - Rust

Function gstd::exec::leave

pub fn leave() -> !
Expand description

Break the current execution.

Use this function to break the current message processing and save the state.

Examples

diff --git a/pr-3467/gstd/exec/fn.random.html b/pr-3467/gstd/exec/fn.random.html index 7a126c85834..bed7072114e 100644 --- a/pr-3467/gstd/exec/fn.random.html +++ b/pr-3467/gstd/exec/fn.random.html @@ -1,4 +1,4 @@ -random in gstd::exec - Rust

Function gstd::exec::random

source ·
pub fn random(subject: [u8; 32]) -> Result<([u8; 32], u32), Error>
Expand description

Get the random seed, along with the block number from which it is +random in gstd::exec - Rust

Function gstd::exec::random

pub fn random(subject: [u8; 32]) -> Result<([u8; 32], u32), Error>
Expand description

Get the random seed, along with the block number from which it is determinable by chain observers.

subject is a context identifier that allows you to get different results within the execution.

diff --git a/pr-3467/gstd/exec/fn.system_reserve_gas.html b/pr-3467/gstd/exec/fn.system_reserve_gas.html index 7ee38b934d2..7e420e5a1bf 100644 --- a/pr-3467/gstd/exec/fn.system_reserve_gas.html +++ b/pr-3467/gstd/exec/fn.system_reserve_gas.html @@ -1,4 +1,4 @@ -system_reserve_gas in gstd::exec - Rust

Function gstd::exec::system_reserve_gas

source ·
pub fn system_reserve_gas(amount: u64) -> Result<(), Error>
Expand description

Reserve the amount of gas for system usage.

+system_reserve_gas in gstd::exec - Rust

Function gstd::exec::system_reserve_gas

pub fn system_reserve_gas(amount: u64) -> Result<(), Error>
Expand description

Reserve the amount of gas for system usage.

Examples

use gcore::exec;
 
@@ -14,6 +14,6 @@ 

Examples

}

See also

    -
  • reserve_gas function reserves gas for further usage.
  • +
  • [reserve_gas] function reserves gas for further usage.
\ No newline at end of file diff --git a/pr-3467/gstd/exec/fn.value_available.html b/pr-3467/gstd/exec/fn.value_available.html index 2069b3d0995..ba2f0196d53 100644 --- a/pr-3467/gstd/exec/fn.value_available.html +++ b/pr-3467/gstd/exec/fn.value_available.html @@ -1,4 +1,4 @@ -value_available in gstd::exec - Rust

Function gstd::exec::value_available

source ·
pub fn value_available() -> u128
Expand description

Get the total available value amount.

+value_available in gstd::exec - Rust

Function gstd::exec::value_available

pub fn value_available() -> u128
Expand description

Get the total available value amount.

Note that this balance already includes the value received with the current message.

Examples

diff --git a/pr-3467/gstd/exec/fn.wait.html b/pr-3467/gstd/exec/fn.wait.html index 97da3cc5c85..6231c03fc36 100644 --- a/pr-3467/gstd/exec/fn.wait.html +++ b/pr-3467/gstd/exec/fn.wait.html @@ -1,9 +1,9 @@ -wait in gstd::exec - Rust

Function gstd::exec::wait

source ·
pub fn wait() -> !
Expand description

Pause the current message handling.

+wait in gstd::exec - Rust

Function gstd::exec::wait

pub fn wait() -> !
Expand description

Pause the current message handling.

If the message handling needs to be paused, e.g., to wait for another execution to finish, one should use this function. wait completes the current message handles execution with a special result and puts this message into the waiting queue to be awakened using the correspondent -wake function later. All gas that hasn’t yet been spent is attributed to +[wake] function later. All gas that hasn’t yet been spent is attributed to the message in the waiting queue.

This call delays message execution for a maximum amount of blocks that could be paid.

diff --git a/pr-3467/gstd/exec/fn.wait_for.html b/pr-3467/gstd/exec/fn.wait_for.html index 6b575f888da..4e2bea7c636 100644 --- a/pr-3467/gstd/exec/fn.wait_for.html +++ b/pr-3467/gstd/exec/fn.wait_for.html @@ -1,4 +1,4 @@ -wait_for in gstd::exec - Rust

Function gstd::exec::wait_for

source ·
pub fn wait_for(duration: u32) -> !
Expand description

Same as wait, but delays handling for a specific number of blocks.

+wait_for in gstd::exec - Rust

Function gstd::exec::wait_for

pub fn wait_for(duration: u32) -> !
Expand description

Same as wait, but delays handling for a specific number of blocks.

Panics

Panics if it is impossible to pay the given duration.

\ No newline at end of file diff --git a/pr-3467/gstd/exec/fn.wait_up_to.html b/pr-3467/gstd/exec/fn.wait_up_to.html index 8216bd3b8ee..a973fab4d7a 100644 --- a/pr-3467/gstd/exec/fn.wait_up_to.html +++ b/pr-3467/gstd/exec/fn.wait_up_to.html @@ -1,3 +1,3 @@ -wait_up_to in gstd::exec - Rust

Function gstd::exec::wait_up_to

source ·
pub fn wait_up_to(duration: u32) -> !
Expand description

Same as wait, but delays handling for the maximum number of blocks that +wait_up_to in gstd::exec - Rust

Function gstd::exec::wait_up_to

pub fn wait_up_to(duration: u32) -> !
Expand description

Same as wait, but delays handling for the maximum number of blocks that can be paid for and doesn’t exceed the given duration.

\ No newline at end of file diff --git a/pr-3467/gstd/ext/fn.debug.html b/pr-3467/gstd/ext/fn.debug.html index 8eb5e68de82..a2a58a549d4 100644 --- a/pr-3467/gstd/ext/fn.debug.html +++ b/pr-3467/gstd/ext/fn.debug.html @@ -1,4 +1,4 @@ -debug in gstd::ext - Rust

Function gstd::ext::debug

source ·
pub fn debug(data: &str) -> Result<(), Error>
Expand description

Add a data string to the debug log.

+debug in gstd::ext - Rust

Function gstd::ext::debug

pub fn debug(data: &str) -> Result<(), Error>
Expand description

Add a data string to the debug log.

Examples

use gcore::ext;
 
diff --git a/pr-3467/gstd/ext/fn.oom_panic.html b/pr-3467/gstd/ext/fn.oom_panic.html
index 1f6409862bb..a8d308ce75e 100644
--- a/pr-3467/gstd/ext/fn.oom_panic.html
+++ b/pr-3467/gstd/ext/fn.oom_panic.html
@@ -1,4 +1,4 @@
-oom_panic in gstd::ext - Rust

Function gstd::ext::oom_panic

source ·
pub fn oom_panic() -> !
Expand description

Out of memory panic

+oom_panic in gstd::ext - Rust

Function gstd::ext::oom_panic

pub fn oom_panic() -> !
Expand description

Out of memory panic

Function is completely free in terms of gas usage.

Examples

#![no_std]
diff --git a/pr-3467/gstd/ext/fn.panic.html b/pr-3467/gstd/ext/fn.panic.html
index d061e1ff911..86c28ddd0e0 100644
--- a/pr-3467/gstd/ext/fn.panic.html
+++ b/pr-3467/gstd/ext/fn.panic.html
@@ -1,4 +1,4 @@
-panic in gstd::ext - Rust

Function gstd::ext::panic

source ·
pub fn panic(data: &str) -> !
Expand description

Panic

+panic in gstd::ext - Rust

Function gstd::ext::panic

pub fn panic(data: &str) -> !
Expand description

Panic

Function is completely free in terms of gas usage.

Examples

use gcore::ext;
diff --git a/pr-3467/gstd/ext/index.html b/pr-3467/gstd/ext/index.html
index e1e96ebbf03..5499df8ba14 100644
--- a/pr-3467/gstd/ext/index.html
+++ b/pr-3467/gstd/ext/index.html
@@ -1,2 +1,2 @@
-gstd::ext - Rust

Module gstd::ext

source ·
Expand description

Extensions for additional features.

+gstd::ext - Rust

Module gstd::ext

Expand description

Extensions for additional features.

Functions

\ No newline at end of file diff --git a/pr-3467/gstd/msg/struct.MessageHandle.html b/pr-3467/gstd/msg/struct.MessageHandle.html index 37f21d46c10..27818659ef0 100644 --- a/pr-3467/gstd/msg/struct.MessageHandle.html +++ b/pr-3467/gstd/msg/struct.MessageHandle.html @@ -213,7 +213,7 @@
See also
delay: u32 ) -> Result<MessageId>

Same as commit_from_reservation, but sends the message after the delay expressed in block count.

-

Trait Implementations§

source§

impl AsRef<MessageHandle> for MessageHandle

source§

fn as_ref(&self) -> &MessageHandle

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for MessageHandle

source§

fn clone(&self) -> MessageHandle

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MessageHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<MessageHandle> for MessageHandle

source§

fn from(other: MessageHandle) -> Self

Converts to this type from the input type.
source§

impl From<MessageHandle> for MessageHandle

source§

fn from(other: MessageHandle) -> Self

Converts to this type from the input type.
source§

impl Output for MessageHandle

source§

fn write(&mut self, bytes: &[u8])

Write to the output.
§

fn push_byte(&mut self, byte: u8)

Write a single byte to the output.
source§

impl PartialEq<MessageHandle> for MessageHandle

source§

fn eq(&self, other: &MessageHandle) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl AsRef<MessageHandle> for MessageHandle

source§

fn as_ref(&self) -> &MessageHandle

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for MessageHandle

source§

fn clone(&self) -> MessageHandle

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MessageHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<MessageHandle> for MessageHandle

source§

fn from(other: MessageHandle) -> Self

Converts to this type from the input type.
source§

impl From<MessageHandle> for MessageHandle

source§

fn from(other: MessageHandle) -> Self

Converts to this type from the input type.
source§

impl Output for MessageHandle

source§

fn write(&mut self, bytes: &[u8])

Write to the output.
§

fn push_byte(&mut self, byte: u8)

Write a single byte to the output.
source§

impl PartialEq<MessageHandle> for MessageHandle

source§

fn eq(&self, other: &MessageHandle) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for MessageHandle

source§

impl Eq for MessageHandle

source§

impl StructuralEq for MessageHandle

source§

impl StructuralPartialEq for MessageHandle

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/gstd/prelude/clone/trait.Clone.html b/pr-3467/gstd/prelude/clone/trait.Clone.html index 4981f724ae0..ae4aff05547 100644 --- a/pr-3467/gstd/prelude/clone/trait.Clone.html +++ b/pr-3467/gstd/prelude/clone/trait.Clone.html @@ -90,7 +90,7 @@
Examples

a.clone_from(&b) is equivalent to a = b.clone() in functionality, but can be overridden to reuse the resources of a to avoid unnecessary allocations.

-

Implementors§

source§

impl Clone for gcore::errors::Error

source§

impl Clone for gstd::errors::Error

§

impl Clone for ErrorReplyReason

§

impl Clone for ExecutionError

§

impl Clone for ExtError

§

impl Clone for MemoryError

§

impl Clone for MessageError

§

impl Clone for ProgramRentError

§

impl Clone for ReplyCode

§

impl Clone for ReservationError

§

impl Clone for SignalCode

§

impl Clone for SimpleExecutionError

§

impl Clone for SimpleProgramCreationError

§

impl Clone for SuccessReplyReason

source§

impl Clone for AsciiChar

source§

impl Clone for gstd::prelude::cmp::Ordering

source§

impl Clone for TryReserveErrorKind

§

impl Clone for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Clone for Infallible

1.28.0 · source§

impl Clone for gstd::prelude::fmt::Alignment

source§

impl Clone for FpCategory

1.55.0 · source§

impl Clone for IntErrorKind

source§

impl Clone for SearchStep

source§

impl Clone for Which

1.7.0 · source§

impl Clone for IpAddr

source§

impl Clone for Ipv6MulticastScope

source§

impl Clone for core::net::socket_addr::SocketAddr

source§

impl Clone for core::sync::atomic::Ordering

source§

impl Clone for VarError

source§

impl Clone for SeekFrom

source§

impl Clone for ErrorKind

source§

impl Clone for Shutdown

source§

impl Clone for BacktraceStyle

1.12.0 · source§

impl Clone for RecvTimeoutError

source§

impl Clone for TryRecvError

source§

impl Clone for _Unwind_Action

source§

impl Clone for _Unwind_Reason_Code

source§

impl Clone for hex::error::FromHexError

source§

impl Clone for BernoulliError

source§

impl Clone for WeightedError

source§

impl Clone for IndexVec

source§

impl Clone for IndexVecIntoIter

source§

impl Clone for bool

source§

impl Clone for char

source§

impl Clone for f32

source§

impl Clone for f64

source§

impl Clone for i8

source§

impl Clone for i16

source§

impl Clone for i32

source§

impl Clone for i64

source§

impl Clone for i128

source§

impl Clone for isize

source§

impl Clone for !

source§

impl Clone for u8

source§

impl Clone for u16

source§

impl Clone for u32

source§

impl Clone for u64

source§

impl Clone for u128

source§

impl Clone for usize

source§

impl Clone for gcore::general::ActorId

source§

impl Clone for gcore::general::CodeId

source§

impl Clone for gcore::general::MessageHandle

source§

impl Clone for gcore::general::MessageId

source§

impl Clone for gcore::general::ReservationId

source§

impl Clone for SyscallError

source§

impl Clone for gstd::msg::MessageHandle

source§

impl Clone for gstd::ActorId

source§

impl Clone for gstd::CodeId

§

impl Clone for GasMultiplier

source§

impl Clone for gstd::MessageId

§

impl Clone for Percent

source§

impl Clone for Reservation

source§

impl Clone for gstd::ReservationId

source§

impl Clone for Reservations

§

impl Clone for MetaType

source§

impl Clone for TypeId

1.34.0 · source§

impl Clone for TryFromSliceError

source§

impl Clone for gstd::prelude::ascii::EscapeDefault

1.34.0 · source§

impl Clone for CharTryFromError

1.9.0 · source§

impl Clone for DecodeUtf16Error

1.20.0 · source§

impl Clone for gstd::prelude::char::EscapeDebug

source§

impl Clone for gstd::prelude::char::EscapeDefault

source§

impl Clone for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Clone for ParseCharError

source§

impl Clone for ToLowercase

source§

impl Clone for ToUppercase

1.59.0 · source§

impl Clone for TryFromCharError

1.57.0 · source§

impl Clone for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl Clone for CString

1.69.0 · source§

impl Clone for FromBytesUntilNulError

1.64.0 · source§

impl Clone for FromBytesWithNulError

1.64.0 · source§

impl Clone for FromVecWithNulError

1.64.0 · source§

impl Clone for IntoStringError

1.64.0 · source§

impl Clone for NulError

source§

impl Clone for gstd::prelude::fmt::Error

source§

impl Clone for SipHasher

1.33.0 · source§

impl Clone for PhantomPinned

source§

impl Clone for Assume

1.34.0 · source§

impl Clone for NonZeroI8

1.34.0 · source§

impl Clone for NonZeroI16

1.34.0 · source§

impl Clone for NonZeroI32

1.34.0 · source§

impl Clone for NonZeroI64

1.34.0 · source§

impl Clone for NonZeroI128

1.34.0 · source§

impl Clone for NonZeroIsize

1.28.0 · source§

impl Clone for NonZeroU8

1.28.0 · source§

impl Clone for NonZeroU16

1.28.0 · source§

impl Clone for NonZeroU32

1.28.0 · source§

impl Clone for NonZeroU64

1.28.0 · source§

impl Clone for NonZeroU128

1.28.0 · source§

impl Clone for NonZeroUsize

source§

impl Clone for ParseFloatError

source§

impl Clone for ParseIntError

1.34.0 · source§

impl Clone for TryFromIntError

source§

impl Clone for RangeFull

source§

impl Clone for gstd::prelude::ptr::Alignment

source§

impl Clone for TimSortRun

source§

impl Clone for ParseBoolError

source§

impl Clone for Utf8Error

source§

impl Clone for FromUtf8Error

1.3.0 · source§

impl Clone for gstd::prelude::Box<str, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<CStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<OsStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<Path, Global>

source§

impl Clone for String

1.36.0 · source§

impl Clone for RawWakerVTable

1.36.0 · source§

impl Clone for Waker

1.3.0 · source§

impl Clone for Duration

1.66.0 · source§

impl Clone for TryFromFloatSecsError

source§

impl Clone for alloc::alloc::Global

1.28.0 · source§

impl Clone for Layout

1.50.0 · source§

impl Clone for LayoutError

source§

impl Clone for core::alloc::AllocError

1.27.0 · source§

impl Clone for CpuidResult

1.27.0 · source§

impl Clone for __m128

source§

impl Clone for __m128bh

1.27.0 · source§

impl Clone for __m128d

1.27.0 · source§

impl Clone for __m128i

1.27.0 · source§

impl Clone for __m256

source§

impl Clone for __m256bh

1.27.0 · source§

impl Clone for __m256d

1.27.0 · source§

impl Clone for __m256i

1.74.0-nightly · source§

impl Clone for __m512

source§

impl Clone for __m512bh

1.74.0-nightly · source§

impl Clone for __m512d

1.74.0-nightly · source§

impl Clone for __m512i

source§

impl Clone for Ipv4Addr

source§

impl Clone for Ipv6Addr

source§

impl Clone for AddrParseError

source§

impl Clone for SocketAddrV4

source§

impl Clone for SocketAddrV6

1.28.0 · source§

impl Clone for System

1.13.0 · source§

impl Clone for DefaultHasher

1.7.0 · source§

impl Clone for std::collections::hash::map::RandomState

source§

impl Clone for OsString

source§

impl Clone for FileTimes

1.1.0 · source§

impl Clone for FileType

source§

impl Clone for Metadata

source§

impl Clone for OpenOptions

source§

impl Clone for Permissions

source§

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

source§

impl Clone for Sink

1.1.0 · source§

impl Clone for std::os::linux::raw::arch::stat

1.10.0 · source§

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

source§

impl Clone for SocketCred

source§

impl Clone for UCred

source§

impl Clone for PathBuf

1.7.0 · source§

impl Clone for StripPrefixError

1.61.0 · source§

impl Clone for ExitCode

source§

impl Clone for ExitStatus

source§

impl Clone for ExitStatusError

source§

impl Clone for Output

1.5.0 · source§

impl Clone for WaitTimeoutResult

source§

impl Clone for RecvError

1.26.0 · source§

impl Clone for AccessError

source§

impl Clone for Thread

1.19.0 · source§

impl Clone for ThreadId

1.8.0 · source§

impl Clone for Instant

1.8.0 · source§

impl Clone for SystemTime

1.8.0 · source§

impl Clone for SystemTimeError

source§

impl Clone for getrandom::error::Error

source§

impl Clone for IgnoredAny

source§

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

source§

impl Clone for Bernoulli

source§

impl Clone for Open01

source§

impl Clone for OpenClosed01

source§

impl Clone for Alphanumeric

source§

impl Clone for Standard

source§

impl Clone for UniformChar

source§

impl Clone for UniformDuration

source§

impl Clone for StepRng

source§

impl Clone for SmallRng

source§

impl Clone for StdRng

source§

impl Clone for ThreadRng

source§

impl Clone for ChaCha8Core

source§

impl Clone for ChaCha8Rng

source§

impl Clone for ChaCha12Core

source§

impl Clone for ChaCha12Rng

source§

impl Clone for ChaCha20Core

source§

impl Clone for ChaCha20Rng

source§

impl Clone for OsRng

§

impl Clone for AHasher

§

impl Clone for AbortHandle

§

impl Clone for Aborted

§

impl Clone for AllocError

§

impl Clone for Alphabet

§

impl Clone for BigEndian

§

impl Clone for Box<str, Global>

§

impl Clone for Box<CStr, Global>

§

impl Clone for Bytes

§

impl Clone for BytesMut

§

impl Clone for Canceled

§

impl Clone for Const

§

impl Clone for DIR

§

impl Clone for Dl_info

§

impl Clone for Elf32_Chdr

§

impl Clone for Elf32_Ehdr

§

impl Clone for Elf32_Phdr

§

impl Clone for Elf32_Shdr

§

impl Clone for Elf32_Sym

§

impl Clone for Elf64_Chdr

§

impl Clone for Elf64_Ehdr

§

impl Clone for Elf64_Phdr

§

impl Clone for Elf64_Shdr

§

impl Clone for Elf64_Sym

§

impl Clone for EnvVars

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for FILE

§

impl Clone for FinderBuilder

§

impl Clone for FromHexError

§

impl Clone for FromStrRadixErrKind

§

impl Clone for Global

§

impl Clone for H128

§

impl Clone for H160

§

impl Clone for H256

§

impl Clone for H384

§

impl Clone for H512

§

impl Clone for H768

§

impl Clone for HashWithValue

§

impl Clone for LittleEndian

§

impl Clone for LocalSpawner

§

impl Clone for Lsb0

§

impl Clone for MetaForm

§

impl Clone for Msb0

§

impl Clone for Mut

§

impl Clone for NoA1

§

impl Clone for NoA2

§

impl Clone for NoNI

§

impl Clone for NoS3

§

impl Clone for NoS4

§

impl Clone for NullPtrError

§

impl Clone for OptionBool

§

impl Clone for PollNext

§

impl Clone for PortableForm

§

impl Clone for PortableRegistry

§

impl Clone for PortableType

§

impl Clone for Prefilter

§

impl Clone for RandomState

§

impl Clone for SendError

§

impl Clone for ThreadPool

§

impl Clone for TypeDefPrimitive

§

impl Clone for U128

§

impl Clone for U256

§

impl Clone for U512

§

impl Clone for YesA1

§

impl Clone for YesA2

§

impl Clone for YesNI

§

impl Clone for YesS3

§

impl Clone for YesS4

§

impl Clone for __c_anonymous_ifr_ifru

§

impl Clone for __c_anonymous_ifru_map

§

impl Clone for __c_anonymous_ptrace_syscall_info_data

§

impl Clone for __c_anonymous_ptrace_syscall_info_entry

§

impl Clone for __c_anonymous_ptrace_syscall_info_exit

§

impl Clone for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Clone for __c_anonymous_sockaddr_can_can_addr

§

impl Clone for __c_anonymous_sockaddr_can_j1939

§

impl Clone for __c_anonymous_sockaddr_can_tp

§

impl Clone for __exit_status

§

impl Clone for __timeval

§

impl Clone for _libc_fpstate

§

impl Clone for _libc_fpxreg

§

impl Clone for _libc_xmmreg

§

impl Clone for addrinfo

§

impl Clone for af_alg_iv

§

impl Clone for aiocb

§

impl Clone for arpd_request

§

impl Clone for arphdr

§

impl Clone for arpreq

§

impl Clone for arpreq_old

§

impl Clone for can_filter

§

impl Clone for can_frame

§

impl Clone for canfd_frame

§

impl Clone for canxl_frame

§

impl Clone for clone_args

§

impl Clone for cmsghdr

§

impl Clone for cpu_set_t

§

impl Clone for dirent

§

impl Clone for dirent64

§

impl Clone for dl_phdr_info

§

impl Clone for dqblk

§

impl Clone for epoll_event

§

impl Clone for fanotify_event_metadata

§

impl Clone for fanotify_response

§

impl Clone for fd_set

§

impl Clone for ff_condition_effect

§

impl Clone for ff_constant_effect

§

impl Clone for ff_effect

§

impl Clone for ff_envelope

§

impl Clone for ff_periodic_effect

§

impl Clone for ff_ramp_effect

§

impl Clone for ff_replay

§

impl Clone for ff_rumble_effect

§

impl Clone for ff_trigger

§

impl Clone for file_clone_range

§

impl Clone for flock

§

impl Clone for flock64

§

impl Clone for fpos64_t

§

impl Clone for fpos_t

§

impl Clone for fsid_t

§

impl Clone for genlmsghdr

§

impl Clone for glob64_t

§

impl Clone for glob_t

§

impl Clone for group

§

impl Clone for hostent

§

impl Clone for hwtstamp_config

§

impl Clone for if_nameindex

§

impl Clone for ifaddrs

§

impl Clone for ifreq

§

impl Clone for in6_addr

§

impl Clone for in6_ifreq

§

impl Clone for in6_pktinfo

§

impl Clone for in6_rtmsg

§

impl Clone for in_addr

§

impl Clone for in_pktinfo

§

impl Clone for inotify_event

§

impl Clone for input_absinfo

§

impl Clone for input_event

§

impl Clone for input_id

§

impl Clone for input_keymap_entry

§

impl Clone for input_mask

§

impl Clone for iovec

§

impl Clone for ip_mreq

§

impl Clone for ip_mreq_source

§

impl Clone for ip_mreqn

§

impl Clone for ipc_perm

§

impl Clone for ipv6_mreq

§

impl Clone for itimerspec

§

impl Clone for itimerval

§

impl Clone for j1939_filter

§

impl Clone for lconv

§

impl Clone for linger

§

impl Clone for mallinfo

§

impl Clone for mallinfo2

§

impl Clone for max_align_t

§

impl Clone for mcontext_t

§

impl Clone for mmsghdr

§

impl Clone for mntent

§

impl Clone for mq_attr

§

impl Clone for msghdr

§

impl Clone for msginfo

§

impl Clone for msqid_ds

§

impl Clone for nl_mmap_hdr

§

impl Clone for nl_mmap_req

§

impl Clone for nl_pktinfo

§

impl Clone for nlattr

§

impl Clone for nlmsgerr

§

impl Clone for nlmsghdr

§

impl Clone for ntptimeval

§

impl Clone for open_how

§

impl Clone for option

§

impl Clone for packet_mreq

§

impl Clone for passwd

§

impl Clone for pollfd

§

impl Clone for posix_spawn_file_actions_t

§

impl Clone for posix_spawnattr_t

§

impl Clone for protoent

§

impl Clone for pthread_attr_t

§

impl Clone for pthread_barrier_t

§

impl Clone for pthread_barrierattr_t

§

impl Clone for pthread_cond_t

§

impl Clone for pthread_condattr_t

§

impl Clone for pthread_mutex_t

§

impl Clone for pthread_mutexattr_t

§

impl Clone for pthread_rwlock_t

§

impl Clone for pthread_rwlockattr_t

§

impl Clone for ptrace_peeksiginfo_args

§

impl Clone for ptrace_rseq_configuration

§

impl Clone for ptrace_syscall_info

§

impl Clone for regex_t

§

impl Clone for regmatch_t

§

impl Clone for rlimit

§

impl Clone for rlimit64

§

impl Clone for rtentry

§

impl Clone for rusage

§

impl Clone for sched_param

§

impl Clone for sctp_authinfo

§

impl Clone for sctp_initmsg

§

impl Clone for sctp_nxtinfo

§

impl Clone for sctp_prinfo

§

impl Clone for sctp_rcvinfo

§

impl Clone for sctp_sndinfo

§

impl Clone for sctp_sndrcvinfo

§

impl Clone for seccomp_data

§

impl Clone for seccomp_notif_sizes

§

impl Clone for sem_t

§

impl Clone for sembuf

§

impl Clone for semid_ds

§

impl Clone for seminfo

§

impl Clone for servent

§

impl Clone for shmid_ds

§

impl Clone for sigaction

§

impl Clone for sigevent

§

impl Clone for siginfo_t

§

impl Clone for signalfd_siginfo

§

impl Clone for sigset_t

§

impl Clone for sigval

§

impl Clone for sock_extended_err

§

impl Clone for sock_filter

§

impl Clone for sock_fprog

§

impl Clone for sock_txtime

§

impl Clone for sockaddr

§

impl Clone for sockaddr_alg

§

impl Clone for sockaddr_can

§

impl Clone for sockaddr_in

§

impl Clone for sockaddr_in6

§

impl Clone for sockaddr_ll

§

impl Clone for sockaddr_nl

§

impl Clone for sockaddr_storage

§

impl Clone for sockaddr_un

§

impl Clone for sockaddr_vm

§

impl Clone for spwd

§

impl Clone for stack_t

§

impl Clone for stat

§

impl Clone for stat64

§

impl Clone for statfs

§

impl Clone for statfs64

§

impl Clone for statvfs

§

impl Clone for statvfs64

§

impl Clone for statx

§

impl Clone for statx_timestamp

§

impl Clone for sysinfo

§

impl Clone for termios

§

impl Clone for termios2

§

impl Clone for timespec

§

impl Clone for timeval

§

impl Clone for timex

§

impl Clone for timezone

§

impl Clone for tm

§

impl Clone for tms

§

impl Clone for ucontext_t

§

impl Clone for ucred

§

impl Clone for uinput_abs_setup

§

impl Clone for uinput_ff_erase

§

impl Clone for uinput_ff_upload

§

impl Clone for uinput_setup

§

impl Clone for uinput_user_dev

§

impl Clone for user

§

impl Clone for user_fpregs_struct

§

impl Clone for user_regs_struct

§

impl Clone for utimbuf

§

impl Clone for utmpx

§

impl Clone for utsname

§

impl Clone for vec128_storage

§

impl Clone for vec256_storage

§

impl Clone for vec512_storage

§

impl Clone for winsize

source§

impl<'a> Clone for Component<'a>

source§

impl<'a> Clone for Prefix<'a>

source§

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

source§

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

1.10.0 · source§

impl<'a> Clone for Location<'a>

1.60.0 · source§

impl<'a> Clone for EscapeAscii<'a>

source§

impl<'a> Clone for CharSearcher<'a>

source§

impl<'a> Clone for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Clone for CharIndices<'a>

source§

impl<'a> Clone for Chars<'a>

1.8.0 · source§

impl<'a> Clone for EncodeUtf16<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Clone for Lines<'a>

source§

impl<'a> Clone for LinesAny<'a>

1.34.0 · source§

impl<'a> Clone for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Clone for SplitWhitespace<'a>

source§

impl<'a> Clone for Utf8Chunk<'a>

source§

impl<'a> Clone for Utf8Chunks<'a>

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

source§

impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Clone for StrSearcher<'a, 'b>

source§

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

source§

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

source§

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

source§

impl<'a, F> Clone for CharPredicateSearcher<'a, F>where +

Implementors§

source§

impl Clone for gstd::errors::Error

§

impl Clone for ErrorReplyReason

§

impl Clone for ExecutionError

§

impl Clone for ExtError

§

impl Clone for MemoryError

§

impl Clone for MessageError

§

impl Clone for ProgramRentError

§

impl Clone for ReplyCode

§

impl Clone for ReservationError

§

impl Clone for SignalCode

§

impl Clone for SimpleExecutionError

§

impl Clone for SimpleProgramCreationError

§

impl Clone for SuccessReplyReason

source§

impl Clone for AsciiChar

source§

impl Clone for gstd::prelude::cmp::Ordering

source§

impl Clone for TryReserveErrorKind

§

impl Clone for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Clone for Infallible

1.28.0 · source§

impl Clone for gstd::prelude::fmt::Alignment

source§

impl Clone for FpCategory

1.55.0 · source§

impl Clone for IntErrorKind

source§

impl Clone for SearchStep

source§

impl Clone for Which

1.7.0 · source§

impl Clone for IpAddr

source§

impl Clone for Ipv6MulticastScope

source§

impl Clone for core::net::socket_addr::SocketAddr

source§

impl Clone for core::sync::atomic::Ordering

source§

impl Clone for VarError

source§

impl Clone for SeekFrom

source§

impl Clone for ErrorKind

source§

impl Clone for Shutdown

source§

impl Clone for BacktraceStyle

1.12.0 · source§

impl Clone for RecvTimeoutError

source§

impl Clone for TryRecvError

source§

impl Clone for _Unwind_Action

source§

impl Clone for _Unwind_Reason_Code

source§

impl Clone for hex::error::FromHexError

source§

impl Clone for BernoulliError

source§

impl Clone for WeightedError

source§

impl Clone for IndexVec

source§

impl Clone for IndexVecIntoIter

source§

impl Clone for bool

source§

impl Clone for char

source§

impl Clone for f32

source§

impl Clone for f64

source§

impl Clone for i8

source§

impl Clone for i16

source§

impl Clone for i32

source§

impl Clone for i64

source§

impl Clone for i128

source§

impl Clone for isize

source§

impl Clone for !

source§

impl Clone for u8

source§

impl Clone for u16

source§

impl Clone for u32

source§

impl Clone for u64

source§

impl Clone for u128

source§

impl Clone for usize

§

impl Clone for SyscallError

source§

impl Clone for gstd::msg::MessageHandle

source§

impl Clone for gstd::ActorId

source§

impl Clone for gstd::CodeId

§

impl Clone for GasMultiplier

source§

impl Clone for gstd::MessageId

§

impl Clone for Percent

source§

impl Clone for Reservation

source§

impl Clone for gstd::ReservationId

source§

impl Clone for Reservations

§

impl Clone for MetaType

source§

impl Clone for TypeId

1.34.0 · source§

impl Clone for TryFromSliceError

source§

impl Clone for gstd::prelude::ascii::EscapeDefault

1.34.0 · source§

impl Clone for CharTryFromError

1.9.0 · source§

impl Clone for DecodeUtf16Error

1.20.0 · source§

impl Clone for gstd::prelude::char::EscapeDebug

source§

impl Clone for gstd::prelude::char::EscapeDefault

source§

impl Clone for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Clone for ParseCharError

source§

impl Clone for ToLowercase

source§

impl Clone for ToUppercase

1.59.0 · source§

impl Clone for TryFromCharError

1.57.0 · source§

impl Clone for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl Clone for CString

1.69.0 · source§

impl Clone for FromBytesUntilNulError

1.64.0 · source§

impl Clone for FromBytesWithNulError

1.64.0 · source§

impl Clone for FromVecWithNulError

1.64.0 · source§

impl Clone for IntoStringError

1.64.0 · source§

impl Clone for NulError

source§

impl Clone for gstd::prelude::fmt::Error

source§

impl Clone for SipHasher

1.33.0 · source§

impl Clone for PhantomPinned

source§

impl Clone for Assume

1.34.0 · source§

impl Clone for NonZeroI8

1.34.0 · source§

impl Clone for NonZeroI16

1.34.0 · source§

impl Clone for NonZeroI32

1.34.0 · source§

impl Clone for NonZeroI64

1.34.0 · source§

impl Clone for NonZeroI128

1.34.0 · source§

impl Clone for NonZeroIsize

1.28.0 · source§

impl Clone for NonZeroU8

1.28.0 · source§

impl Clone for NonZeroU16

1.28.0 · source§

impl Clone for NonZeroU32

1.28.0 · source§

impl Clone for NonZeroU64

1.28.0 · source§

impl Clone for NonZeroU128

1.28.0 · source§

impl Clone for NonZeroUsize

source§

impl Clone for ParseFloatError

source§

impl Clone for ParseIntError

1.34.0 · source§

impl Clone for TryFromIntError

source§

impl Clone for RangeFull

source§

impl Clone for gstd::prelude::ptr::Alignment

source§

impl Clone for TimSortRun

source§

impl Clone for ParseBoolError

source§

impl Clone for Utf8Error

source§

impl Clone for FromUtf8Error

1.3.0 · source§

impl Clone for gstd::prelude::Box<str, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<CStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<OsStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<Path, Global>

source§

impl Clone for String

1.36.0 · source§

impl Clone for RawWakerVTable

1.36.0 · source§

impl Clone for Waker

1.3.0 · source§

impl Clone for Duration

1.66.0 · source§

impl Clone for TryFromFloatSecsError

source§

impl Clone for alloc::alloc::Global

1.28.0 · source§

impl Clone for Layout

1.50.0 · source§

impl Clone for LayoutError

source§

impl Clone for core::alloc::AllocError

1.27.0 · source§

impl Clone for CpuidResult

1.27.0 · source§

impl Clone for __m128

source§

impl Clone for __m128bh

1.27.0 · source§

impl Clone for __m128d

1.27.0 · source§

impl Clone for __m128i

1.27.0 · source§

impl Clone for __m256

source§

impl Clone for __m256bh

1.27.0 · source§

impl Clone for __m256d

1.27.0 · source§

impl Clone for __m256i

1.74.0-nightly · source§

impl Clone for __m512

source§

impl Clone for __m512bh

1.74.0-nightly · source§

impl Clone for __m512d

1.74.0-nightly · source§

impl Clone for __m512i

source§

impl Clone for Ipv4Addr

source§

impl Clone for Ipv6Addr

source§

impl Clone for AddrParseError

source§

impl Clone for SocketAddrV4

source§

impl Clone for SocketAddrV6

1.28.0 · source§

impl Clone for System

1.13.0 · source§

impl Clone for DefaultHasher

1.7.0 · source§

impl Clone for std::collections::hash::map::RandomState

source§

impl Clone for OsString

source§

impl Clone for FileTimes

1.1.0 · source§

impl Clone for FileType

source§

impl Clone for Metadata

source§

impl Clone for OpenOptions

source§

impl Clone for Permissions

source§

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

source§

impl Clone for Sink

1.1.0 · source§

impl Clone for std::os::linux::raw::arch::stat

1.10.0 · source§

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

source§

impl Clone for SocketCred

source§

impl Clone for UCred

source§

impl Clone for PathBuf

1.7.0 · source§

impl Clone for StripPrefixError

1.61.0 · source§

impl Clone for ExitCode

source§

impl Clone for ExitStatus

source§

impl Clone for ExitStatusError

source§

impl Clone for Output

1.5.0 · source§

impl Clone for WaitTimeoutResult

source§

impl Clone for RecvError

1.26.0 · source§

impl Clone for AccessError

source§

impl Clone for Thread

1.19.0 · source§

impl Clone for ThreadId

1.8.0 · source§

impl Clone for Instant

1.8.0 · source§

impl Clone for SystemTime

1.8.0 · source§

impl Clone for SystemTimeError

source§

impl Clone for getrandom::error::Error

source§

impl Clone for IgnoredAny

source§

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

source§

impl Clone for Bernoulli

source§

impl Clone for Open01

source§

impl Clone for OpenClosed01

source§

impl Clone for Alphanumeric

source§

impl Clone for Standard

source§

impl Clone for UniformChar

source§

impl Clone for UniformDuration

source§

impl Clone for StepRng

source§

impl Clone for SmallRng

source§

impl Clone for StdRng

source§

impl Clone for ThreadRng

source§

impl Clone for ChaCha8Core

source§

impl Clone for ChaCha8Rng

source§

impl Clone for ChaCha12Core

source§

impl Clone for ChaCha12Rng

source§

impl Clone for ChaCha20Core

source§

impl Clone for ChaCha20Rng

source§

impl Clone for OsRng

§

impl Clone for AHasher

§

impl Clone for AbortHandle

§

impl Clone for Aborted

§

impl Clone for ActorId

§

impl Clone for AllocError

§

impl Clone for Alphabet

§

impl Clone for BigEndian

§

impl Clone for Box<str, Global>

§

impl Clone for Box<CStr, Global>

§

impl Clone for Bytes

§

impl Clone for BytesMut

§

impl Clone for Canceled

§

impl Clone for CodeId

§

impl Clone for Const

§

impl Clone for DIR

§

impl Clone for Dl_info

§

impl Clone for Elf32_Chdr

§

impl Clone for Elf32_Ehdr

§

impl Clone for Elf32_Phdr

§

impl Clone for Elf32_Shdr

§

impl Clone for Elf32_Sym

§

impl Clone for Elf64_Chdr

§

impl Clone for Elf64_Ehdr

§

impl Clone for Elf64_Phdr

§

impl Clone for Elf64_Shdr

§

impl Clone for Elf64_Sym

§

impl Clone for EnvVars

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for FILE

§

impl Clone for FinderBuilder

§

impl Clone for FromHexError

§

impl Clone for FromStrRadixErrKind

§

impl Clone for Global

§

impl Clone for H128

§

impl Clone for H160

§

impl Clone for H256

§

impl Clone for H384

§

impl Clone for H512

§

impl Clone for H768

§

impl Clone for HashWithValue

§

impl Clone for LittleEndian

§

impl Clone for LocalSpawner

§

impl Clone for Lsb0

§

impl Clone for MessageHandle

§

impl Clone for MessageId

§

impl Clone for MetaForm

§

impl Clone for Msb0

§

impl Clone for Mut

§

impl Clone for NoA1

§

impl Clone for NoA2

§

impl Clone for NoNI

§

impl Clone for NoS3

§

impl Clone for NoS4

§

impl Clone for NullPtrError

§

impl Clone for OptionBool

§

impl Clone for PollNext

§

impl Clone for PortableForm

§

impl Clone for PortableRegistry

§

impl Clone for PortableType

§

impl Clone for Prefilter

§

impl Clone for RandomState

§

impl Clone for ReservationId

§

impl Clone for SendError

§

impl Clone for ThreadPool

§

impl Clone for TypeDefPrimitive

§

impl Clone for U128

§

impl Clone for U256

§

impl Clone for U512

§

impl Clone for YesA1

§

impl Clone for YesA2

§

impl Clone for YesNI

§

impl Clone for YesS3

§

impl Clone for YesS4

§

impl Clone for __c_anonymous_ifr_ifru

§

impl Clone for __c_anonymous_ifru_map

§

impl Clone for __c_anonymous_ptrace_syscall_info_data

§

impl Clone for __c_anonymous_ptrace_syscall_info_entry

§

impl Clone for __c_anonymous_ptrace_syscall_info_exit

§

impl Clone for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Clone for __c_anonymous_sockaddr_can_can_addr

§

impl Clone for __c_anonymous_sockaddr_can_j1939

§

impl Clone for __c_anonymous_sockaddr_can_tp

§

impl Clone for __exit_status

§

impl Clone for __timeval

§

impl Clone for _libc_fpstate

§

impl Clone for _libc_fpxreg

§

impl Clone for _libc_xmmreg

§

impl Clone for addrinfo

§

impl Clone for af_alg_iv

§

impl Clone for aiocb

§

impl Clone for arpd_request

§

impl Clone for arphdr

§

impl Clone for arpreq

§

impl Clone for arpreq_old

§

impl Clone for can_filter

§

impl Clone for can_frame

§

impl Clone for canfd_frame

§

impl Clone for canxl_frame

§

impl Clone for clone_args

§

impl Clone for cmsghdr

§

impl Clone for cpu_set_t

§

impl Clone for dirent

§

impl Clone for dirent64

§

impl Clone for dl_phdr_info

§

impl Clone for dqblk

§

impl Clone for epoll_event

§

impl Clone for fanotify_event_metadata

§

impl Clone for fanotify_response

§

impl Clone for fd_set

§

impl Clone for ff_condition_effect

§

impl Clone for ff_constant_effect

§

impl Clone for ff_effect

§

impl Clone for ff_envelope

§

impl Clone for ff_periodic_effect

§

impl Clone for ff_ramp_effect

§

impl Clone for ff_replay

§

impl Clone for ff_rumble_effect

§

impl Clone for ff_trigger

§

impl Clone for file_clone_range

§

impl Clone for flock

§

impl Clone for flock64

§

impl Clone for fpos64_t

§

impl Clone for fpos_t

§

impl Clone for fsid_t

§

impl Clone for genlmsghdr

§

impl Clone for glob64_t

§

impl Clone for glob_t

§

impl Clone for group

§

impl Clone for hostent

§

impl Clone for hwtstamp_config

§

impl Clone for if_nameindex

§

impl Clone for ifaddrs

§

impl Clone for ifreq

§

impl Clone for in6_addr

§

impl Clone for in6_ifreq

§

impl Clone for in6_pktinfo

§

impl Clone for in6_rtmsg

§

impl Clone for in_addr

§

impl Clone for in_pktinfo

§

impl Clone for inotify_event

§

impl Clone for input_absinfo

§

impl Clone for input_event

§

impl Clone for input_id

§

impl Clone for input_keymap_entry

§

impl Clone for input_mask

§

impl Clone for iovec

§

impl Clone for ip_mreq

§

impl Clone for ip_mreq_source

§

impl Clone for ip_mreqn

§

impl Clone for ipc_perm

§

impl Clone for ipv6_mreq

§

impl Clone for itimerspec

§

impl Clone for itimerval

§

impl Clone for j1939_filter

§

impl Clone for lconv

§

impl Clone for linger

§

impl Clone for mallinfo

§

impl Clone for mallinfo2

§

impl Clone for max_align_t

§

impl Clone for mcontext_t

§

impl Clone for mmsghdr

§

impl Clone for mntent

§

impl Clone for mq_attr

§

impl Clone for msghdr

§

impl Clone for msginfo

§

impl Clone for msqid_ds

§

impl Clone for nl_mmap_hdr

§

impl Clone for nl_mmap_req

§

impl Clone for nl_pktinfo

§

impl Clone for nlattr

§

impl Clone for nlmsgerr

§

impl Clone for nlmsghdr

§

impl Clone for ntptimeval

§

impl Clone for open_how

§

impl Clone for option

§

impl Clone for packet_mreq

§

impl Clone for passwd

§

impl Clone for pollfd

§

impl Clone for posix_spawn_file_actions_t

§

impl Clone for posix_spawnattr_t

§

impl Clone for protoent

§

impl Clone for pthread_attr_t

§

impl Clone for pthread_barrier_t

§

impl Clone for pthread_barrierattr_t

§

impl Clone for pthread_cond_t

§

impl Clone for pthread_condattr_t

§

impl Clone for pthread_mutex_t

§

impl Clone for pthread_mutexattr_t

§

impl Clone for pthread_rwlock_t

§

impl Clone for pthread_rwlockattr_t

§

impl Clone for ptrace_peeksiginfo_args

§

impl Clone for ptrace_rseq_configuration

§

impl Clone for ptrace_syscall_info

§

impl Clone for regex_t

§

impl Clone for regmatch_t

§

impl Clone for rlimit

§

impl Clone for rlimit64

§

impl Clone for rtentry

§

impl Clone for rusage

§

impl Clone for sched_param

§

impl Clone for sctp_authinfo

§

impl Clone for sctp_initmsg

§

impl Clone for sctp_nxtinfo

§

impl Clone for sctp_prinfo

§

impl Clone for sctp_rcvinfo

§

impl Clone for sctp_sndinfo

§

impl Clone for sctp_sndrcvinfo

§

impl Clone for seccomp_data

§

impl Clone for seccomp_notif_sizes

§

impl Clone for sem_t

§

impl Clone for sembuf

§

impl Clone for semid_ds

§

impl Clone for seminfo

§

impl Clone for servent

§

impl Clone for shmid_ds

§

impl Clone for sigaction

§

impl Clone for sigevent

§

impl Clone for siginfo_t

§

impl Clone for signalfd_siginfo

§

impl Clone for sigset_t

§

impl Clone for sigval

§

impl Clone for sock_extended_err

§

impl Clone for sock_filter

§

impl Clone for sock_fprog

§

impl Clone for sock_txtime

§

impl Clone for sockaddr

§

impl Clone for sockaddr_alg

§

impl Clone for sockaddr_can

§

impl Clone for sockaddr_in

§

impl Clone for sockaddr_in6

§

impl Clone for sockaddr_ll

§

impl Clone for sockaddr_nl

§

impl Clone for sockaddr_storage

§

impl Clone for sockaddr_un

§

impl Clone for sockaddr_vm

§

impl Clone for spwd

§

impl Clone for stack_t

§

impl Clone for stat

§

impl Clone for stat64

§

impl Clone for statfs

§

impl Clone for statfs64

§

impl Clone for statvfs

§

impl Clone for statvfs64

§

impl Clone for statx

§

impl Clone for statx_timestamp

§

impl Clone for sysinfo

§

impl Clone for termios

§

impl Clone for termios2

§

impl Clone for timespec

§

impl Clone for timeval

§

impl Clone for timex

§

impl Clone for timezone

§

impl Clone for tm

§

impl Clone for tms

§

impl Clone for ucontext_t

§

impl Clone for ucred

§

impl Clone for uinput_abs_setup

§

impl Clone for uinput_ff_erase

§

impl Clone for uinput_ff_upload

§

impl Clone for uinput_setup

§

impl Clone for uinput_user_dev

§

impl Clone for user

§

impl Clone for user_fpregs_struct

§

impl Clone for user_regs_struct

§

impl Clone for utimbuf

§

impl Clone for utmpx

§

impl Clone for utsname

§

impl Clone for vec128_storage

§

impl Clone for vec256_storage

§

impl Clone for vec512_storage

§

impl Clone for winsize

source§

impl<'a> Clone for Component<'a>

source§

impl<'a> Clone for Prefix<'a>

source§

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

source§

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

1.10.0 · source§

impl<'a> Clone for Location<'a>

1.60.0 · source§

impl<'a> Clone for EscapeAscii<'a>

source§

impl<'a> Clone for CharSearcher<'a>

source§

impl<'a> Clone for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Clone for CharIndices<'a>

source§

impl<'a> Clone for Chars<'a>

1.8.0 · source§

impl<'a> Clone for EncodeUtf16<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Clone for Lines<'a>

source§

impl<'a> Clone for LinesAny<'a>

1.34.0 · source§

impl<'a> Clone for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Clone for SplitWhitespace<'a>

source§

impl<'a> Clone for Utf8Chunk<'a>

source§

impl<'a> Clone for Utf8Chunks<'a>

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

source§

impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Clone for StrSearcher<'a, 'b>

source§

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

source§

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

source§

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

source§

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

1.5.0 · source§

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

1.2.0 · source§

impl<'a, P> Clone for Matches<'a, P>where diff --git a/pr-3467/gstd/prelude/cmp/trait.Eq.html b/pr-3467/gstd/prelude/cmp/trait.Eq.html index e3f24905517..08fb63b1843 100644 --- a/pr-3467/gstd/prelude/cmp/trait.Eq.html +++ b/pr-3467/gstd/prelude/cmp/trait.Eq.html @@ -33,7 +33,7 @@

How can I impl } } impl Eq for Book {}

-

Implementors§

source§

impl Eq for gcore::errors::Error

source§

impl Eq for gstd::errors::Error

§

impl Eq for ErrorReplyReason

§

impl Eq for ExecutionError

§

impl Eq for ExtError

§

impl Eq for MemoryError

§

impl Eq for MessageError

§

impl Eq for ProgramRentError

§

impl Eq for ReplyCode

§

impl Eq for ReservationError

§

impl Eq for SignalCode

§

impl Eq for SimpleExecutionError

§

impl Eq for SimpleProgramCreationError

§

impl Eq for SuccessReplyReason

source§

impl Eq for AsciiChar

source§

impl Eq for TryReserveErrorKind

§

impl Eq for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Eq for Infallible

1.28.0 · source§

impl Eq for gstd::prelude::fmt::Alignment

source§

impl Eq for FpCategory

1.55.0 · source§

impl Eq for IntErrorKind

source§

impl Eq for SearchStep

source§

impl Eq for gstd::prelude::cmp::Ordering

source§

impl Eq for Which

1.7.0 · source§

impl Eq for IpAddr

source§

impl Eq for Ipv6MulticastScope

source§

impl Eq for SocketAddr

source§

impl Eq for core::sync::atomic::Ordering

1.65.0 · source§

impl Eq for BacktraceStatus

source§

impl Eq for VarError

source§

impl Eq for SeekFrom

source§

impl Eq for ErrorKind

source§

impl Eq for Shutdown

source§

impl Eq for BacktraceStyle

1.12.0 · source§

impl Eq for RecvTimeoutError

source§

impl Eq for TryRecvError

source§

impl Eq for BernoulliError

source§

impl Eq for WeightedError

source§

impl Eq for bool

source§

impl Eq for char

source§

impl Eq for i8

source§

impl Eq for i16

source§

impl Eq for i32

source§

impl Eq for i64

source§

impl Eq for i128

source§

impl Eq for isize

source§

impl Eq for !

source§

impl Eq for str

source§

impl Eq for u8

source§

impl Eq for u16

source§

impl Eq for u32

source§

impl Eq for u64

source§

impl Eq for u128

source§

impl Eq for ()

source§

impl Eq for usize

source§

impl Eq for gcore::general::ActorId

source§

impl Eq for gcore::general::CodeId

source§

impl Eq for gcore::general::MessageHandle

source§

impl Eq for gcore::general::MessageId

source§

impl Eq for gcore::general::ReservationId

source§

impl Eq for SyscallError

source§

impl Eq for gstd::msg::MessageHandle

source§

impl Eq for gstd::ActorId

source§

impl Eq for gstd::CodeId

source§

impl Eq for gstd::MessageId

§

impl Eq for Percent

source§

impl Eq for gstd::ReservationId

§

impl Eq for MetaType

source§

impl Eq for TypeId

1.34.0 · source§

impl Eq for CharTryFromError

1.9.0 · source§

impl Eq for DecodeUtf16Error

1.20.0 · source§

impl Eq for ParseCharError

1.59.0 · source§

impl Eq for TryFromCharError

1.57.0 · source§

impl Eq for gstd::prelude::collections::TryReserveError

source§

impl Eq for CStr

1.64.0 · source§

impl Eq for CString

1.69.0 · source§

impl Eq for FromBytesUntilNulError

1.64.0 · source§

impl Eq for FromBytesWithNulError

1.64.0 · source§

impl Eq for FromVecWithNulError

1.64.0 · source§

impl Eq for IntoStringError

1.64.0 · source§

impl Eq for NulError

source§

impl Eq for gstd::prelude::fmt::Error

1.33.0 · source§

impl Eq for PhantomPinned

source§

impl Eq for Assume

1.34.0 · source§

impl Eq for NonZeroI8

1.34.0 · source§

impl Eq for NonZeroI16

1.34.0 · source§

impl Eq for NonZeroI32

1.34.0 · source§

impl Eq for NonZeroI64

1.34.0 · source§

impl Eq for NonZeroI128

1.34.0 · source§

impl Eq for NonZeroIsize

1.28.0 · source§

impl Eq for NonZeroU8

1.28.0 · source§

impl Eq for NonZeroU16

1.28.0 · source§

impl Eq for NonZeroU32

1.28.0 · source§

impl Eq for NonZeroU64

1.28.0 · source§

impl Eq for NonZeroU128

1.28.0 · source§

impl Eq for NonZeroUsize

source§

impl Eq for ParseFloatError

source§

impl Eq for ParseIntError

1.34.0 · source§

impl Eq for TryFromIntError

source§

impl Eq for RangeFull

source§

impl Eq for gstd::prelude::ptr::Alignment

source§

impl Eq for ParseBoolError

source§

impl Eq for Utf8Error

source§

impl Eq for FromUtf8Error

source§

impl Eq for String

1.3.0 · source§

impl Eq for Duration

1.66.0 · source§

impl Eq for TryFromFloatSecsError

1.28.0 · source§

impl Eq for Layout

1.50.0 · source§

impl Eq for LayoutError

source§

impl Eq for core::alloc::AllocError

1.27.0 · source§

impl Eq for CpuidResult

source§

impl Eq for Ipv4Addr

source§

impl Eq for Ipv6Addr

source§

impl Eq for AddrParseError

source§

impl Eq for SocketAddrV4

source§

impl Eq for SocketAddrV6

source§

impl Eq for OsStr

source§

impl Eq for OsString

1.1.0 · source§

impl Eq for FileType

source§

impl Eq for Permissions

source§

impl Eq for UCred

source§

impl Eq for Components<'_>

source§

impl Eq for std::path::Path

source§

impl Eq for PathBuf

1.7.0 · source§

impl Eq for StripPrefixError

source§

impl Eq for ExitStatus

source§

impl Eq for ExitStatusError

source§

impl Eq for Output

1.5.0 · source§

impl Eq for WaitTimeoutResult

source§

impl Eq for RecvError

1.26.0 · source§

impl Eq for AccessError

1.19.0 · source§

impl Eq for ThreadId

1.8.0 · source§

impl Eq for Instant

1.8.0 · source§

impl Eq for SystemTime

source§

impl Eq for getrandom::error::Error

source§

impl Eq for StepRng

source§

impl Eq for SmallRng

source§

impl Eq for StdRng

source§

impl Eq for ChaCha8Core

source§

impl Eq for ChaCha8Rng

source§

impl Eq for ChaCha12Core

source§

impl Eq for ChaCha12Rng

source§

impl Eq for ChaCha20Core

source§

impl Eq for ChaCha20Rng

§

impl Eq for Aborted

§

impl Eq for AllocError

§

impl Eq for BigEndian

§

impl Eq for Bytes

§

impl Eq for BytesMut

§

impl Eq for Canceled

§

impl Eq for Const

§

impl Eq for Dl_info

§

impl Eq for Elf32_Chdr

§

impl Eq for Elf32_Ehdr

§

impl Eq for Elf32_Phdr

§

impl Eq for Elf32_Shdr

§

impl Eq for Elf32_Sym

§

impl Eq for Elf64_Chdr

§

impl Eq for Elf64_Ehdr

§

impl Eq for Elf64_Phdr

§

impl Eq for Elf64_Shdr

§

impl Eq for Elf64_Sym

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for FromStrRadixErrKind

§

impl Eq for H128

§

impl Eq for H160

§

impl Eq for H256

§

impl Eq for H384

§

impl Eq for H512

§

impl Eq for H768

§

impl Eq for LittleEndian

§

impl Eq for Lsb0

§

impl Eq for MetaForm

§

impl Eq for Msb0

§

impl Eq for Mut

§

impl Eq for NullPtrError

§

impl Eq for OptionBool

§

impl Eq for PathError

§

impl Eq for PollNext

§

impl Eq for PortableForm

§

impl Eq for PortableRegistry

§

impl Eq for PortableType

§

impl Eq for Registry

§

impl Eq for SendError

§

impl Eq for TypeDefPrimitive

§

impl Eq for U128

§

impl Eq for U256

§

impl Eq for U512

§

impl Eq for __c_anonymous_ifru_map

§

impl Eq for __c_anonymous_ptrace_syscall_info_data

§

impl Eq for __c_anonymous_ptrace_syscall_info_entry

§

impl Eq for __c_anonymous_ptrace_syscall_info_exit

§

impl Eq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Eq for __c_anonymous_sockaddr_can_j1939

§

impl Eq for __c_anonymous_sockaddr_can_tp

§

impl Eq for __exit_status

§

impl Eq for __timeval

§

impl Eq for _libc_fpstate

§

impl Eq for _libc_fpxreg

§

impl Eq for _libc_xmmreg

§

impl Eq for addrinfo

§

impl Eq for af_alg_iv

§

impl Eq for aiocb

§

impl Eq for arpd_request

§

impl Eq for arphdr

§

impl Eq for arpreq

§

impl Eq for arpreq_old

§

impl Eq for can_filter

§

impl Eq for clone_args

§

impl Eq for cmsghdr

§

impl Eq for cpu_set_t

§

impl Eq for dirent

§

impl Eq for dirent64

§

impl Eq for dl_phdr_info

§

impl Eq for dqblk

§

impl Eq for epoll_event

§

impl Eq for fanotify_event_metadata

§

impl Eq for fanotify_response

§

impl Eq for fd_set

§

impl Eq for ff_condition_effect

§

impl Eq for ff_constant_effect

§

impl Eq for ff_effect

§

impl Eq for ff_envelope

§

impl Eq for ff_periodic_effect

§

impl Eq for ff_ramp_effect

§

impl Eq for ff_replay

§

impl Eq for ff_rumble_effect

§

impl Eq for ff_trigger

§

impl Eq for file_clone_range

§

impl Eq for flock

§

impl Eq for flock64

§

impl Eq for fsid_t

§

impl Eq for genlmsghdr

§

impl Eq for glob64_t

§

impl Eq for glob_t

§

impl Eq for group

§

impl Eq for hostent

§

impl Eq for hwtstamp_config

§

impl Eq for if_nameindex

§

impl Eq for ifaddrs

§

impl Eq for in6_addr

§

impl Eq for in6_ifreq

§

impl Eq for in6_pktinfo

§

impl Eq for in6_rtmsg

§

impl Eq for in_addr

§

impl Eq for in_pktinfo

§

impl Eq for inotify_event

§

impl Eq for input_absinfo

§

impl Eq for input_event

§

impl Eq for input_id

§

impl Eq for input_keymap_entry

§

impl Eq for input_mask

§

impl Eq for iovec

§

impl Eq for ip_mreq

§

impl Eq for ip_mreq_source

§

impl Eq for ip_mreqn

§

impl Eq for ipc_perm

§

impl Eq for ipv6_mreq

§

impl Eq for itimerspec

§

impl Eq for itimerval

§

impl Eq for j1939_filter

§

impl Eq for lconv

§

impl Eq for linger

§

impl Eq for mallinfo

§

impl Eq for mallinfo2

§

impl Eq for mcontext_t

§

impl Eq for mmsghdr

§

impl Eq for mntent

§

impl Eq for mq_attr

§

impl Eq for msghdr

§

impl Eq for msginfo

§

impl Eq for msqid_ds

§

impl Eq for nl_mmap_hdr

§

impl Eq for nl_mmap_req

§

impl Eq for nl_pktinfo

§

impl Eq for nlattr

§

impl Eq for nlmsgerr

§

impl Eq for nlmsghdr

§

impl Eq for ntptimeval

§

impl Eq for open_how

§

impl Eq for option

§

impl Eq for packet_mreq

§

impl Eq for passwd

§

impl Eq for pollfd

§

impl Eq for posix_spawn_file_actions_t

§

impl Eq for posix_spawnattr_t

§

impl Eq for protoent

§

impl Eq for pthread_attr_t

§

impl Eq for pthread_barrier_t

§

impl Eq for pthread_barrierattr_t

§

impl Eq for pthread_cond_t

§

impl Eq for pthread_condattr_t

§

impl Eq for pthread_mutex_t

§

impl Eq for pthread_mutexattr_t

§

impl Eq for pthread_rwlock_t

§

impl Eq for pthread_rwlockattr_t

§

impl Eq for ptrace_peeksiginfo_args

§

impl Eq for ptrace_rseq_configuration

§

impl Eq for ptrace_syscall_info

§

impl Eq for regex_t

§

impl Eq for regmatch_t

§

impl Eq for rlimit

§

impl Eq for rlimit64

§

impl Eq for rtentry

§

impl Eq for rusage

§

impl Eq for sched_param

§

impl Eq for sctp_authinfo

§

impl Eq for sctp_initmsg

§

impl Eq for sctp_nxtinfo

§

impl Eq for sctp_prinfo

§

impl Eq for sctp_rcvinfo

§

impl Eq for sctp_sndinfo

§

impl Eq for sctp_sndrcvinfo

§

impl Eq for seccomp_data

§

impl Eq for seccomp_notif_sizes

§

impl Eq for sem_t

§

impl Eq for sembuf

§

impl Eq for semid_ds

§

impl Eq for seminfo

§

impl Eq for servent

§

impl Eq for shmid_ds

§

impl Eq for sigaction

§

impl Eq for sigevent

§

impl Eq for siginfo_t

§

impl Eq for signalfd_siginfo

§

impl Eq for sigset_t

§

impl Eq for sigval

§

impl Eq for sock_extended_err

§

impl Eq for sock_filter

§

impl Eq for sock_fprog

§

impl Eq for sockaddr

§

impl Eq for sockaddr_alg

§

impl Eq for sockaddr_in

§

impl Eq for sockaddr_in6

§

impl Eq for sockaddr_ll

§

impl Eq for sockaddr_nl

§

impl Eq for sockaddr_storage

§

impl Eq for sockaddr_un

§

impl Eq for sockaddr_vm

§

impl Eq for spwd

§

impl Eq for stack_t

§

impl Eq for stat

§

impl Eq for stat64

§

impl Eq for statfs

§

impl Eq for statfs64

§

impl Eq for statvfs

§

impl Eq for statvfs64

§

impl Eq for statx

§

impl Eq for statx_timestamp

§

impl Eq for sysinfo

§

impl Eq for termios

§

impl Eq for termios2

§

impl Eq for timespec

§

impl Eq for timeval

§

impl Eq for timex

§

impl Eq for tm

§

impl Eq for tms

§

impl Eq for ucontext_t

§

impl Eq for ucred

§

impl Eq for uinput_abs_setup

§

impl Eq for uinput_ff_erase

§

impl Eq for uinput_ff_upload

§

impl Eq for uinput_setup

§

impl Eq for uinput_user_dev

§

impl Eq for user

§

impl Eq for user_fpregs_struct

§

impl Eq for user_regs_struct

§

impl Eq for utimbuf

§

impl Eq for utmpx

§

impl Eq for utsname

§

impl Eq for vec128_storage

§

impl Eq for vec256_storage

§

impl Eq for vec512_storage

§

impl Eq for winsize

source§

impl<'a> Eq for Component<'a>

source§

impl<'a> Eq for Prefix<'a>

1.10.0 · source§

impl<'a> Eq for Location<'a>

source§

impl<'a> Eq for Utf8Chunk<'a>

source§

impl<'a> Eq for PrefixComponent<'a>

§

impl<'a, T> Eq for CompactRef<'a, T>where +

Implementors§

source§

impl Eq for gstd::errors::Error

§

impl Eq for ErrorReplyReason

§

impl Eq for ExecutionError

§

impl Eq for ExtError

§

impl Eq for MemoryError

§

impl Eq for MessageError

§

impl Eq for ProgramRentError

§

impl Eq for ReplyCode

§

impl Eq for ReservationError

§

impl Eq for SignalCode

§

impl Eq for SimpleExecutionError

§

impl Eq for SimpleProgramCreationError

§

impl Eq for SuccessReplyReason

source§

impl Eq for AsciiChar

source§

impl Eq for TryReserveErrorKind

§

impl Eq for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Eq for Infallible

1.28.0 · source§

impl Eq for gstd::prelude::fmt::Alignment

source§

impl Eq for FpCategory

1.55.0 · source§

impl Eq for IntErrorKind

source§

impl Eq for SearchStep

source§

impl Eq for gstd::prelude::cmp::Ordering

source§

impl Eq for Which

1.7.0 · source§

impl Eq for IpAddr

source§

impl Eq for Ipv6MulticastScope

source§

impl Eq for SocketAddr

source§

impl Eq for core::sync::atomic::Ordering

1.65.0 · source§

impl Eq for BacktraceStatus

source§

impl Eq for VarError

source§

impl Eq for SeekFrom

source§

impl Eq for ErrorKind

source§

impl Eq for Shutdown

source§

impl Eq for BacktraceStyle

1.12.0 · source§

impl Eq for RecvTimeoutError

source§

impl Eq for TryRecvError

source§

impl Eq for BernoulliError

source§

impl Eq for WeightedError

source§

impl Eq for bool

source§

impl Eq for char

source§

impl Eq for i8

source§

impl Eq for i16

source§

impl Eq for i32

source§

impl Eq for i64

source§

impl Eq for i128

source§

impl Eq for isize

source§

impl Eq for !

source§

impl Eq for str

source§

impl Eq for u8

source§

impl Eq for u16

source§

impl Eq for u32

source§

impl Eq for u64

source§

impl Eq for u128

source§

impl Eq for ()

source§

impl Eq for usize

§

impl Eq for SyscallError

source§

impl Eq for gstd::msg::MessageHandle

source§

impl Eq for gstd::ActorId

source§

impl Eq for gstd::CodeId

source§

impl Eq for gstd::MessageId

§

impl Eq for Percent

source§

impl Eq for gstd::ReservationId

§

impl Eq for MetaType

source§

impl Eq for TypeId

1.34.0 · source§

impl Eq for CharTryFromError

1.9.0 · source§

impl Eq for DecodeUtf16Error

1.20.0 · source§

impl Eq for ParseCharError

1.59.0 · source§

impl Eq for TryFromCharError

1.57.0 · source§

impl Eq for gstd::prelude::collections::TryReserveError

source§

impl Eq for CStr

1.64.0 · source§

impl Eq for CString

1.69.0 · source§

impl Eq for FromBytesUntilNulError

1.64.0 · source§

impl Eq for FromBytesWithNulError

1.64.0 · source§

impl Eq for FromVecWithNulError

1.64.0 · source§

impl Eq for IntoStringError

1.64.0 · source§

impl Eq for NulError

source§

impl Eq for gstd::prelude::fmt::Error

1.33.0 · source§

impl Eq for PhantomPinned

source§

impl Eq for Assume

1.34.0 · source§

impl Eq for NonZeroI8

1.34.0 · source§

impl Eq for NonZeroI16

1.34.0 · source§

impl Eq for NonZeroI32

1.34.0 · source§

impl Eq for NonZeroI64

1.34.0 · source§

impl Eq for NonZeroI128

1.34.0 · source§

impl Eq for NonZeroIsize

1.28.0 · source§

impl Eq for NonZeroU8

1.28.0 · source§

impl Eq for NonZeroU16

1.28.0 · source§

impl Eq for NonZeroU32

1.28.0 · source§

impl Eq for NonZeroU64

1.28.0 · source§

impl Eq for NonZeroU128

1.28.0 · source§

impl Eq for NonZeroUsize

source§

impl Eq for ParseFloatError

source§

impl Eq for ParseIntError

1.34.0 · source§

impl Eq for TryFromIntError

source§

impl Eq for RangeFull

source§

impl Eq for gstd::prelude::ptr::Alignment

source§

impl Eq for ParseBoolError

source§

impl Eq for Utf8Error

source§

impl Eq for FromUtf8Error

source§

impl Eq for String

1.3.0 · source§

impl Eq for Duration

1.66.0 · source§

impl Eq for TryFromFloatSecsError

1.28.0 · source§

impl Eq for Layout

1.50.0 · source§

impl Eq for LayoutError

source§

impl Eq for core::alloc::AllocError

1.27.0 · source§

impl Eq for CpuidResult

source§

impl Eq for Ipv4Addr

source§

impl Eq for Ipv6Addr

source§

impl Eq for AddrParseError

source§

impl Eq for SocketAddrV4

source§

impl Eq for SocketAddrV6

source§

impl Eq for OsStr

source§

impl Eq for OsString

1.1.0 · source§

impl Eq for FileType

source§

impl Eq for Permissions

source§

impl Eq for UCred

source§

impl Eq for Components<'_>

source§

impl Eq for std::path::Path

source§

impl Eq for PathBuf

1.7.0 · source§

impl Eq for StripPrefixError

source§

impl Eq for ExitStatus

source§

impl Eq for ExitStatusError

source§

impl Eq for Output

1.5.0 · source§

impl Eq for WaitTimeoutResult

source§

impl Eq for RecvError

1.26.0 · source§

impl Eq for AccessError

1.19.0 · source§

impl Eq for ThreadId

1.8.0 · source§

impl Eq for Instant

1.8.0 · source§

impl Eq for SystemTime

source§

impl Eq for getrandom::error::Error

source§

impl Eq for StepRng

source§

impl Eq for SmallRng

source§

impl Eq for StdRng

source§

impl Eq for ChaCha8Core

source§

impl Eq for ChaCha8Rng

source§

impl Eq for ChaCha12Core

source§

impl Eq for ChaCha12Rng

source§

impl Eq for ChaCha20Core

source§

impl Eq for ChaCha20Rng

§

impl Eq for Aborted

§

impl Eq for ActorId

§

impl Eq for AllocError

§

impl Eq for BigEndian

§

impl Eq for Bytes

§

impl Eq for BytesMut

§

impl Eq for Canceled

§

impl Eq for CodeId

§

impl Eq for Const

§

impl Eq for Dl_info

§

impl Eq for Elf32_Chdr

§

impl Eq for Elf32_Ehdr

§

impl Eq for Elf32_Phdr

§

impl Eq for Elf32_Shdr

§

impl Eq for Elf32_Sym

§

impl Eq for Elf64_Chdr

§

impl Eq for Elf64_Ehdr

§

impl Eq for Elf64_Phdr

§

impl Eq for Elf64_Shdr

§

impl Eq for Elf64_Sym

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for FromStrRadixErrKind

§

impl Eq for H128

§

impl Eq for H160

§

impl Eq for H256

§

impl Eq for H384

§

impl Eq for H512

§

impl Eq for H768

§

impl Eq for LittleEndian

§

impl Eq for Lsb0

§

impl Eq for MessageHandle

§

impl Eq for MessageId

§

impl Eq for MetaForm

§

impl Eq for Msb0

§

impl Eq for Mut

§

impl Eq for NullPtrError

§

impl Eq for OptionBool

§

impl Eq for PathError

§

impl Eq for PollNext

§

impl Eq for PortableForm

§

impl Eq for PortableRegistry

§

impl Eq for PortableType

§

impl Eq for Registry

§

impl Eq for ReservationId

§

impl Eq for SendError

§

impl Eq for TypeDefPrimitive

§

impl Eq for U128

§

impl Eq for U256

§

impl Eq for U512

§

impl Eq for __c_anonymous_ifru_map

§

impl Eq for __c_anonymous_ptrace_syscall_info_data

§

impl Eq for __c_anonymous_ptrace_syscall_info_entry

§

impl Eq for __c_anonymous_ptrace_syscall_info_exit

§

impl Eq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Eq for __c_anonymous_sockaddr_can_j1939

§

impl Eq for __c_anonymous_sockaddr_can_tp

§

impl Eq for __exit_status

§

impl Eq for __timeval

§

impl Eq for _libc_fpstate

§

impl Eq for _libc_fpxreg

§

impl Eq for _libc_xmmreg

§

impl Eq for addrinfo

§

impl Eq for af_alg_iv

§

impl Eq for aiocb

§

impl Eq for arpd_request

§

impl Eq for arphdr

§

impl Eq for arpreq

§

impl Eq for arpreq_old

§

impl Eq for can_filter

§

impl Eq for clone_args

§

impl Eq for cmsghdr

§

impl Eq for cpu_set_t

§

impl Eq for dirent

§

impl Eq for dirent64

§

impl Eq for dl_phdr_info

§

impl Eq for dqblk

§

impl Eq for epoll_event

§

impl Eq for fanotify_event_metadata

§

impl Eq for fanotify_response

§

impl Eq for fd_set

§

impl Eq for ff_condition_effect

§

impl Eq for ff_constant_effect

§

impl Eq for ff_effect

§

impl Eq for ff_envelope

§

impl Eq for ff_periodic_effect

§

impl Eq for ff_ramp_effect

§

impl Eq for ff_replay

§

impl Eq for ff_rumble_effect

§

impl Eq for ff_trigger

§

impl Eq for file_clone_range

§

impl Eq for flock

§

impl Eq for flock64

§

impl Eq for fsid_t

§

impl Eq for genlmsghdr

§

impl Eq for glob64_t

§

impl Eq for glob_t

§

impl Eq for group

§

impl Eq for hostent

§

impl Eq for hwtstamp_config

§

impl Eq for if_nameindex

§

impl Eq for ifaddrs

§

impl Eq for in6_addr

§

impl Eq for in6_ifreq

§

impl Eq for in6_pktinfo

§

impl Eq for in6_rtmsg

§

impl Eq for in_addr

§

impl Eq for in_pktinfo

§

impl Eq for inotify_event

§

impl Eq for input_absinfo

§

impl Eq for input_event

§

impl Eq for input_id

§

impl Eq for input_keymap_entry

§

impl Eq for input_mask

§

impl Eq for iovec

§

impl Eq for ip_mreq

§

impl Eq for ip_mreq_source

§

impl Eq for ip_mreqn

§

impl Eq for ipc_perm

§

impl Eq for ipv6_mreq

§

impl Eq for itimerspec

§

impl Eq for itimerval

§

impl Eq for j1939_filter

§

impl Eq for lconv

§

impl Eq for linger

§

impl Eq for mallinfo

§

impl Eq for mallinfo2

§

impl Eq for mcontext_t

§

impl Eq for mmsghdr

§

impl Eq for mntent

§

impl Eq for mq_attr

§

impl Eq for msghdr

§

impl Eq for msginfo

§

impl Eq for msqid_ds

§

impl Eq for nl_mmap_hdr

§

impl Eq for nl_mmap_req

§

impl Eq for nl_pktinfo

§

impl Eq for nlattr

§

impl Eq for nlmsgerr

§

impl Eq for nlmsghdr

§

impl Eq for ntptimeval

§

impl Eq for open_how

§

impl Eq for option

§

impl Eq for packet_mreq

§

impl Eq for passwd

§

impl Eq for pollfd

§

impl Eq for posix_spawn_file_actions_t

§

impl Eq for posix_spawnattr_t

§

impl Eq for protoent

§

impl Eq for pthread_attr_t

§

impl Eq for pthread_barrier_t

§

impl Eq for pthread_barrierattr_t

§

impl Eq for pthread_cond_t

§

impl Eq for pthread_condattr_t

§

impl Eq for pthread_mutex_t

§

impl Eq for pthread_mutexattr_t

§

impl Eq for pthread_rwlock_t

§

impl Eq for pthread_rwlockattr_t

§

impl Eq for ptrace_peeksiginfo_args

§

impl Eq for ptrace_rseq_configuration

§

impl Eq for ptrace_syscall_info

§

impl Eq for regex_t

§

impl Eq for regmatch_t

§

impl Eq for rlimit

§

impl Eq for rlimit64

§

impl Eq for rtentry

§

impl Eq for rusage

§

impl Eq for sched_param

§

impl Eq for sctp_authinfo

§

impl Eq for sctp_initmsg

§

impl Eq for sctp_nxtinfo

§

impl Eq for sctp_prinfo

§

impl Eq for sctp_rcvinfo

§

impl Eq for sctp_sndinfo

§

impl Eq for sctp_sndrcvinfo

§

impl Eq for seccomp_data

§

impl Eq for seccomp_notif_sizes

§

impl Eq for sem_t

§

impl Eq for sembuf

§

impl Eq for semid_ds

§

impl Eq for seminfo

§

impl Eq for servent

§

impl Eq for shmid_ds

§

impl Eq for sigaction

§

impl Eq for sigevent

§

impl Eq for siginfo_t

§

impl Eq for signalfd_siginfo

§

impl Eq for sigset_t

§

impl Eq for sigval

§

impl Eq for sock_extended_err

§

impl Eq for sock_filter

§

impl Eq for sock_fprog

§

impl Eq for sockaddr

§

impl Eq for sockaddr_alg

§

impl Eq for sockaddr_in

§

impl Eq for sockaddr_in6

§

impl Eq for sockaddr_ll

§

impl Eq for sockaddr_nl

§

impl Eq for sockaddr_storage

§

impl Eq for sockaddr_un

§

impl Eq for sockaddr_vm

§

impl Eq for spwd

§

impl Eq for stack_t

§

impl Eq for stat

§

impl Eq for stat64

§

impl Eq for statfs

§

impl Eq for statfs64

§

impl Eq for statvfs

§

impl Eq for statvfs64

§

impl Eq for statx

§

impl Eq for statx_timestamp

§

impl Eq for sysinfo

§

impl Eq for termios

§

impl Eq for termios2

§

impl Eq for timespec

§

impl Eq for timeval

§

impl Eq for timex

§

impl Eq for tm

§

impl Eq for tms

§

impl Eq for ucontext_t

§

impl Eq for ucred

§

impl Eq for uinput_abs_setup

§

impl Eq for uinput_ff_erase

§

impl Eq for uinput_ff_upload

§

impl Eq for uinput_setup

§

impl Eq for uinput_user_dev

§

impl Eq for user

§

impl Eq for user_fpregs_struct

§

impl Eq for user_regs_struct

§

impl Eq for utimbuf

§

impl Eq for utmpx

§

impl Eq for utsname

§

impl Eq for vec128_storage

§

impl Eq for vec256_storage

§

impl Eq for vec512_storage

§

impl Eq for winsize

source§

impl<'a> Eq for Component<'a>

source§

impl<'a> Eq for Prefix<'a>

1.10.0 · source§

impl<'a> Eq for Location<'a>

source§

impl<'a> Eq for Utf8Chunk<'a>

source§

impl<'a> Eq for PrefixComponent<'a>

§

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

§

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

§

impl<'a, T, O> Eq for IterOnes<'a, T, O>where T: Eq + 'a + BitStore, diff --git a/pr-3467/gstd/prelude/cmp/trait.Ord.html b/pr-3467/gstd/prelude/cmp/trait.Ord.html index 9da16859a77..3bcc7930792 100644 --- a/pr-3467/gstd/prelude/cmp/trait.Ord.html +++ b/pr-3467/gstd/prelude/cmp/trait.Ord.html @@ -138,7 +138,7 @@
Examples
“alphabetical” order, which varies by language and locale. Sorting strings according to culturally-accepted standards requires locale-specific data that is outside the scope of the str type.

-

source§

impl Ord for u8

source§

impl Ord for u16

source§

impl Ord for u32

source§

impl Ord for u64

source§

impl Ord for u128

source§

impl Ord for ()

source§

impl Ord for usize

source§

impl Ord for gcore::general::ActorId

source§

impl Ord for gcore::general::CodeId

source§

impl Ord for gcore::general::MessageId

source§

impl Ord for gcore::general::ReservationId

source§

impl Ord for SyscallError

source§

impl Ord for gstd::ActorId

source§

impl Ord for gstd::CodeId

source§

impl Ord for gstd::MessageId

§

impl Ord for Percent

source§

impl Ord for gstd::ReservationId

§

impl Ord for MetaType

source§

impl Ord for TypeId

source§

impl Ord for CStr

1.64.0 · source§

impl Ord for CString

source§

impl Ord for Error

1.33.0 · source§

impl Ord for PhantomPinned

1.34.0 · source§

impl Ord for NonZeroI8

1.34.0 · source§

impl Ord for NonZeroI16

1.34.0 · source§

impl Ord for NonZeroI32

1.34.0 · source§

impl Ord for NonZeroI64

1.34.0 · source§

impl Ord for NonZeroI128

1.34.0 · source§

impl Ord for NonZeroIsize

1.28.0 · source§

impl Ord for NonZeroU8

1.28.0 · source§

impl Ord for NonZeroU16

1.28.0 · source§

impl Ord for NonZeroU32

1.28.0 · source§

impl Ord for NonZeroU64

1.28.0 · source§

impl Ord for NonZeroU128

1.28.0 · source§

impl Ord for NonZeroUsize

const: unstable · source§

impl Ord for Alignment

source§

impl Ord for String

1.3.0 · source§

impl Ord for Duration

1.27.0 · source§

impl Ord for CpuidResult

source§

impl Ord for Ipv4Addr

source§

impl Ord for Ipv6Addr

1.45.0 · source§

impl Ord for SocketAddrV4

1.45.0 · source§

impl Ord for SocketAddrV6

source§

impl Ord for OsStr

source§

impl Ord for OsString

source§

impl Ord for Components<'_>

source§

impl Ord for std::path::Path

source§

impl Ord for PathBuf

source§

impl Ord for PrefixComponent<'_>

1.8.0 · source§

impl Ord for Instant

1.8.0 · source§

impl Ord for SystemTime

§

impl Ord for BigEndian

§

impl Ord for Bytes

§

impl Ord for BytesMut

§

impl Ord for Const

§

impl Ord for H128

§

impl Ord for H160

§

impl Ord for H256

§

impl Ord for H384

§

impl Ord for H512

§

impl Ord for H768

§

impl Ord for LittleEndian

§

impl Ord for Lsb0

§

impl Ord for MetaForm

§

impl Ord for Msb0

§

impl Ord for Mut

§

impl Ord for NullPtrError

§

impl Ord for PortableForm

§

impl Ord for TypeDefPrimitive

§

impl Ord for U128

§

impl Ord for U256

§

impl Ord for U512

source§

impl<'a> Ord for Component<'a>

source§

impl<'a> Ord for Prefix<'a>

1.10.0 · source§

impl<'a> Ord for Location<'a>

§

impl<'a, T> Ord for Symbol<'a, T>where +

source§

impl Ord for u8

source§

impl Ord for u16

source§

impl Ord for u32

source§

impl Ord for u64

source§

impl Ord for u128

source§

impl Ord for ()

source§

impl Ord for usize

§

impl Ord for SyscallError

source§

impl Ord for gstd::ActorId

source§

impl Ord for gstd::CodeId

source§

impl Ord for gstd::MessageId

§

impl Ord for Percent

source§

impl Ord for gstd::ReservationId

§

impl Ord for MetaType

source§

impl Ord for TypeId

source§

impl Ord for CStr

1.64.0 · source§

impl Ord for CString

source§

impl Ord for Error

1.33.0 · source§

impl Ord for PhantomPinned

1.34.0 · source§

impl Ord for NonZeroI8

1.34.0 · source§

impl Ord for NonZeroI16

1.34.0 · source§

impl Ord for NonZeroI32

1.34.0 · source§

impl Ord for NonZeroI64

1.34.0 · source§

impl Ord for NonZeroI128

1.34.0 · source§

impl Ord for NonZeroIsize

1.28.0 · source§

impl Ord for NonZeroU8

1.28.0 · source§

impl Ord for NonZeroU16

1.28.0 · source§

impl Ord for NonZeroU32

1.28.0 · source§

impl Ord for NonZeroU64

1.28.0 · source§

impl Ord for NonZeroU128

1.28.0 · source§

impl Ord for NonZeroUsize

const: unstable · source§

impl Ord for Alignment

source§

impl Ord for String

1.3.0 · source§

impl Ord for Duration

1.27.0 · source§

impl Ord for CpuidResult

source§

impl Ord for Ipv4Addr

source§

impl Ord for Ipv6Addr

1.45.0 · source§

impl Ord for SocketAddrV4

1.45.0 · source§

impl Ord for SocketAddrV6

source§

impl Ord for OsStr

source§

impl Ord for OsString

source§

impl Ord for Components<'_>

source§

impl Ord for std::path::Path

source§

impl Ord for PathBuf

source§

impl Ord for PrefixComponent<'_>

1.8.0 · source§

impl Ord for Instant

1.8.0 · source§

impl Ord for SystemTime

§

impl Ord for ActorId

§

impl Ord for BigEndian

§

impl Ord for Bytes

§

impl Ord for BytesMut

§

impl Ord for CodeId

§

impl Ord for Const

§

impl Ord for H128

§

impl Ord for H160

§

impl Ord for H256

§

impl Ord for H384

§

impl Ord for H512

§

impl Ord for H768

§

impl Ord for LittleEndian

§

impl Ord for Lsb0

§

impl Ord for MessageId

§

impl Ord for MetaForm

§

impl Ord for Msb0

§

impl Ord for Mut

§

impl Ord for NullPtrError

§

impl Ord for PortableForm

§

impl Ord for ReservationId

§

impl Ord for TypeDefPrimitive

§

impl Ord for U128

§

impl Ord for U256

§

impl Ord for U512

source§

impl<'a> Ord for Component<'a>

source§

impl<'a> Ord for Prefix<'a>

1.10.0 · source§

impl<'a> Ord for Location<'a>

§

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

§

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

§

impl<'a, T, O> Ord for IterZeros<'a, T, O>where diff --git a/pr-3467/gstd/prelude/cmp/trait.PartialEq.html b/pr-3467/gstd/prelude/cmp/trait.PartialEq.html index ddb4e649c98..3c4641759a8 100644 --- a/pr-3467/gstd/prelude/cmp/trait.PartialEq.html +++ b/pr-3467/gstd/prelude/cmp/trait.PartialEq.html @@ -163,7 +163,7 @@

Examples

by ==.

Provided Methods§

source

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

1.29.0 · source§

impl PartialEq<&str> for OsString

source§

impl PartialEq<Error> for gcore::errors::Error

source§

impl PartialEq<Error> for gstd::errors::Error

§

impl PartialEq<ErrorReplyReason> for ErrorReplyReason

§

impl PartialEq<ExecutionError> for ExecutionError

§

impl PartialEq<ExtError> for ExtError

§

impl PartialEq<MemoryError> for MemoryError

§

impl PartialEq<MessageError> for MessageError

§

impl PartialEq<ProgramRentError> for ProgramRentError

§

impl PartialEq<ReplyCode> for ReplyCode

§

impl PartialEq<ReservationError> for ReservationError

§

impl PartialEq<SignalCode> for SignalCode

§

impl PartialEq<SimpleExecutionError> for SimpleExecutionError

§

impl PartialEq<SimpleProgramCreationError> for SimpleProgramCreationError

§

impl PartialEq<SuccessReplyReason> for SuccessReplyReason

source§

impl PartialEq<AsciiChar> for AsciiChar

source§

impl PartialEq<TryReserveErrorKind> for TryReserveErrorKind

§

impl PartialEq<TryReserveError> for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl PartialEq<Infallible> for Infallible

1.28.0 · source§

impl PartialEq<Alignment> for gstd::prelude::fmt::Alignment

source§

impl PartialEq<FpCategory> for FpCategory

1.55.0 · source§

impl PartialEq<IntErrorKind> for IntErrorKind

source§

impl PartialEq<SearchStep> for SearchStep

source§

impl PartialEq<Ordering> for gstd::prelude::cmp::Ordering

source§

impl PartialEq<Which> for Which

1.7.0 · source§

impl PartialEq<IpAddr> for IpAddr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

source§

impl PartialEq<Ipv6MulticastScope> for Ipv6MulticastScope

source§

impl PartialEq<SocketAddr> for SocketAddr

source§

impl PartialEq<Ordering> for core::sync::atomic::Ordering

1.65.0 · source§

impl PartialEq<BacktraceStatus> for BacktraceStatus

source§

impl PartialEq<VarError> for VarError

source§

impl PartialEq<SeekFrom> for SeekFrom

source§

impl PartialEq<ErrorKind> for ErrorKind

source§

impl PartialEq<Shutdown> for Shutdown

source§

impl PartialEq<BacktraceStyle> for BacktraceStyle

1.12.0 · source§

impl PartialEq<RecvTimeoutError> for RecvTimeoutError

source§

impl PartialEq<TryRecvError> for TryRecvError

source§

impl PartialEq<_Unwind_Action> for _Unwind_Action

source§

impl PartialEq<_Unwind_Reason_Code> for _Unwind_Reason_Code

source§

impl PartialEq<FromHexError> for FromHexError

source§

impl PartialEq<BernoulliError> for BernoulliError

source§

impl PartialEq<WeightedError> for WeightedError

source§

impl PartialEq<IndexVec> for IndexVec

source§

impl PartialEq<bool> for bool

source§

impl PartialEq<char> for char

source§

impl PartialEq<f32> for f32

source§

impl PartialEq<f64> for f64

source§

impl PartialEq<i8> for i8

source§

impl PartialEq<i16> for i16

source§

impl PartialEq<i32> for i32

source§

impl PartialEq<i64> for i64

source§

impl PartialEq<i128> for i128

source§

impl PartialEq<isize> for isize

source§

impl PartialEq<!> for !

source§

impl PartialEq<str> for str

source§

impl PartialEq<str> for OsStr

source§

impl PartialEq<str> for OsString

§

impl PartialEq<str> for Bytes

§

impl PartialEq<str> for BytesMut

source§

impl PartialEq<u8> for u8

source§

impl PartialEq<u16> for u16

source§

impl PartialEq<u32> for u32

source§

impl PartialEq<u64> for u64

source§

impl PartialEq<u128> for u128

source§

impl PartialEq<()> for ()

source§

impl PartialEq<usize> for usize

source§

impl PartialEq<ActorId> for gcore::general::ActorId

source§

impl PartialEq<CodeId> for gcore::general::CodeId

source§

impl PartialEq<MessageHandle> for gcore::general::MessageHandle

source§

impl PartialEq<MessageId> for gcore::general::MessageId

source§

impl PartialEq<ReservationId> for gcore::general::ReservationId

source§

impl PartialEq<SyscallError> for SyscallError

source§

impl PartialEq<MessageHandle> for gstd::msg::MessageHandle

source§

impl PartialEq<ActorId> for gstd::ActorId

source§

impl PartialEq<CodeId> for gstd::CodeId

source§

impl PartialEq<MessageId> for gstd::MessageId

§

impl PartialEq<Percent> for Percent

source§

impl PartialEq<ReservationId> for gstd::ReservationId

§

impl PartialEq<MetaType> for MetaType

source§

impl PartialEq<TypeId> for TypeId

1.34.0 · source§

impl PartialEq<CharTryFromError> for CharTryFromError

1.9.0 · source§

impl PartialEq<DecodeUtf16Error> for DecodeUtf16Error

1.20.0 · source§

impl PartialEq<ParseCharError> for ParseCharError

1.59.0 · source§

impl PartialEq<TryFromCharError> for TryFromCharError

1.57.0 · source§

impl PartialEq<TryReserveError> for gstd::prelude::collections::TryReserveError

source§

impl PartialEq<CStr> for CStr

1.64.0 · source§

impl PartialEq<CString> for CString

1.69.0 · source§

impl PartialEq<FromBytesUntilNulError> for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq<FromBytesWithNulError> for FromBytesWithNulError

1.64.0 · source§

impl PartialEq<FromVecWithNulError> for FromVecWithNulError

1.64.0 · source§

impl PartialEq<IntoStringError> for IntoStringError

1.64.0 · source§

impl PartialEq<NulError> for NulError

source§

impl PartialEq<Error> for gstd::prelude::fmt::Error

1.33.0 · source§

impl PartialEq<PhantomPinned> for PhantomPinned

source§

impl PartialEq<Assume> for Assume

1.34.0 · source§

impl PartialEq<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialEq<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialEq<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialEq<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialEq<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialEq<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialEq<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialEq<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialEq<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialEq<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialEq<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialEq<NonZeroUsize> for NonZeroUsize

source§

impl PartialEq<ParseFloatError> for ParseFloatError

source§

impl PartialEq<ParseIntError> for ParseIntError

1.34.0 · source§

impl PartialEq<TryFromIntError> for TryFromIntError

source§

impl PartialEq<RangeFull> for RangeFull

source§

impl PartialEq<Alignment> for gstd::prelude::ptr::Alignment

source§

impl PartialEq<ParseBoolError> for ParseBoolError

source§

impl PartialEq<Utf8Error> for Utf8Error

source§

impl PartialEq<FromUtf8Error> for FromUtf8Error

source§

impl PartialEq<String> for String

§

impl PartialEq<String> for Bytes

§

impl PartialEq<String> for BytesMut

§

impl PartialEq<Vec<u8, Global>> for Bytes

§

impl PartialEq<Vec<u8, Global>> for BytesMut

1.36.0 · source§

impl PartialEq<RawWaker> for RawWaker

1.36.0 · source§

impl PartialEq<RawWakerVTable> for RawWakerVTable

1.3.0 · source§

impl PartialEq<Duration> for Duration

1.66.0 · source§

impl PartialEq<TryFromFloatSecsError> for TryFromFloatSecsError

1.28.0 · source§

impl PartialEq<Layout> for Layout

1.50.0 · source§

impl PartialEq<LayoutError> for LayoutError

source§

impl PartialEq<AllocError> for core::alloc::AllocError

1.27.0 · source§

impl PartialEq<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

source§

impl PartialEq<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

source§

impl PartialEq<Ipv6Addr> for Ipv6Addr

source§

impl PartialEq<AddrParseError> for AddrParseError

source§

impl PartialEq<SocketAddrV4> for SocketAddrV4

source§

impl PartialEq<SocketAddrV6> for SocketAddrV6

source§

impl PartialEq<OsStr> for str

source§

impl PartialEq<OsStr> for OsStr

1.8.0 · source§

impl PartialEq<OsStr> for std::path::Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

source§

impl PartialEq<OsString> for str

source§

impl PartialEq<OsString> for OsString

1.8.0 · source§

impl PartialEq<OsString> for std::path::Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.1.0 · source§

impl PartialEq<FileType> for FileType

source§

impl PartialEq<Permissions> for Permissions

source§

impl PartialEq<UCred> for UCred

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

source§

impl PartialEq<Path> for std::path::Path

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for std::path::Path

source§

impl PartialEq<PathBuf> for PathBuf

1.7.0 · source§

impl PartialEq<StripPrefixError> for StripPrefixError

source§

impl PartialEq<ExitStatus> for ExitStatus

source§

impl PartialEq<ExitStatusError> for ExitStatusError

source§

impl PartialEq<Output> for Output

1.5.0 · source§

impl PartialEq<WaitTimeoutResult> for WaitTimeoutResult

source§

impl PartialEq<RecvError> for RecvError

1.26.0 · source§

impl PartialEq<AccessError> for AccessError

1.19.0 · source§

impl PartialEq<ThreadId> for ThreadId

1.8.0 · source§

impl PartialEq<Instant> for Instant

1.8.0 · source§

impl PartialEq<SystemTime> for SystemTime

source§

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

source§

impl PartialEq<IgnoredAny> for IgnoredAny

source§

impl PartialEq<Error> for serde::de::value::Error

source§

impl PartialEq<Bernoulli> for Bernoulli

source§

impl PartialEq<StepRng> for StepRng

source§

impl PartialEq<SmallRng> for SmallRng

source§

impl PartialEq<StdRng> for StdRng

source§

impl PartialEq<ChaCha8Core> for ChaCha8Core

source§

impl PartialEq<ChaCha8Rng> for ChaCha8Rng

source§

impl PartialEq<ChaCha12Core> for ChaCha12Core

source§

impl PartialEq<ChaCha12Rng> for ChaCha12Rng

source§

impl PartialEq<ChaCha20Core> for ChaCha20Core

source§

impl PartialEq<ChaCha20Rng> for ChaCha20Rng

§

impl PartialEq<Aborted> for Aborted

§

impl PartialEq<AllocError> for AllocError

§

impl PartialEq<BigEndian> for BigEndian

§

impl PartialEq<Bytes> for &str

§

impl PartialEq<Bytes> for &[u8]

§

impl PartialEq<Bytes> for str

§

impl PartialEq<Bytes> for String

§

impl PartialEq<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<Bytes> for Bytes

§

impl PartialEq<Bytes> for BytesMut

§

impl PartialEq<Bytes> for [u8]

§

impl PartialEq<BytesMut> for &str

§

impl PartialEq<BytesMut> for &[u8]

§

impl PartialEq<BytesMut> for str

§

impl PartialEq<BytesMut> for String

§

impl PartialEq<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<BytesMut> for Bytes

§

impl PartialEq<BytesMut> for BytesMut

§

impl PartialEq<BytesMut> for [u8]

§

impl PartialEq<Canceled> for Canceled

§

impl PartialEq<Const> for Const

§

impl PartialEq<Dl_info> for Dl_info

§

impl PartialEq<Elf32_Chdr> for Elf32_Chdr

§

impl PartialEq<Elf32_Ehdr> for Elf32_Ehdr

§

impl PartialEq<Elf32_Phdr> for Elf32_Phdr

§

impl PartialEq<Elf32_Shdr> for Elf32_Shdr

§

impl PartialEq<Elf32_Sym> for Elf32_Sym

§

impl PartialEq<Elf64_Chdr> for Elf64_Chdr

§

impl PartialEq<Elf64_Ehdr> for Elf64_Ehdr

§

impl PartialEq<Elf64_Phdr> for Elf64_Phdr

§

impl PartialEq<Elf64_Shdr> for Elf64_Shdr

§

impl PartialEq<Elf64_Sym> for Elf64_Sym

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<FromDecStrErr> for FromDecStrErr

§

impl PartialEq<FromStrRadixErrKind> for FromStrRadixErrKind

§

impl PartialEq<H128> for H128

§

impl PartialEq<H160> for H160

§

impl PartialEq<H256> for H256

§

impl PartialEq<H384> for H384

§

impl PartialEq<H512> for H512

§

impl PartialEq<H768> for H768

§

impl PartialEq<LittleEndian> for LittleEndian

§

impl PartialEq<Lsb0> for Lsb0

§

impl PartialEq<MetaForm> for MetaForm

§

impl PartialEq<Msb0> for Msb0

§

impl PartialEq<Mut> for Mut

§

impl PartialEq<NullPtrError> for NullPtrError

§

impl PartialEq<OptionBool> for OptionBool

§

impl PartialEq<PathError> for PathError

§

impl PartialEq<PollNext> for PollNext

§

impl PartialEq<PortableForm> for PortableForm

§

impl PartialEq<PortableRegistry> for PortableRegistry

§

impl PartialEq<PortableType> for PortableType

§

impl PartialEq<Registry> for Registry

§

impl PartialEq<SendError> for SendError

§

impl PartialEq<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialEq<U128> for U128

§

impl PartialEq<U256> for U256

§

impl PartialEq<U512> for U512

§

impl PartialEq<[u8]> for Bytes

§

impl PartialEq<[u8]> for BytesMut

§

impl PartialEq<__c_anonymous_ifru_map> for __c_anonymous_ifru_map

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_data> for __c_anonymous_ptrace_syscall_info_data

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_entry> for __c_anonymous_ptrace_syscall_info_entry

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_exit> for __c_anonymous_ptrace_syscall_info_exit

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_seccomp> for __c_anonymous_ptrace_syscall_info_seccomp

§

impl PartialEq<__c_anonymous_sockaddr_can_j1939> for __c_anonymous_sockaddr_can_j1939

§

impl PartialEq<__c_anonymous_sockaddr_can_tp> for __c_anonymous_sockaddr_can_tp

§

impl PartialEq<__exit_status> for __exit_status

§

impl PartialEq<__timeval> for __timeval

§

impl PartialEq<_libc_fpstate> for _libc_fpstate

§

impl PartialEq<_libc_fpxreg> for _libc_fpxreg

§

impl PartialEq<_libc_xmmreg> for _libc_xmmreg

§

impl PartialEq<addrinfo> for addrinfo

§

impl PartialEq<af_alg_iv> for af_alg_iv

§

impl PartialEq<aiocb> for aiocb

§

impl PartialEq<arpd_request> for arpd_request

§

impl PartialEq<arphdr> for arphdr

§

impl PartialEq<arpreq> for arpreq

§

impl PartialEq<arpreq_old> for arpreq_old

§

impl PartialEq<can_filter> for can_filter

§

impl PartialEq<clone_args> for clone_args

§

impl PartialEq<cmsghdr> for cmsghdr

§

impl PartialEq<cpu_set_t> for cpu_set_t

§

impl PartialEq<dirent64> for dirent64

§

impl PartialEq<dirent> for dirent

§

impl PartialEq<dl_phdr_info> for dl_phdr_info

§

impl PartialEq<dqblk> for dqblk

§

impl PartialEq<epoll_event> for epoll_event

§

impl PartialEq<fanotify_event_metadata> for fanotify_event_metadata

§

impl PartialEq<fanotify_response> for fanotify_response

§

impl PartialEq<fd_set> for fd_set

§

impl PartialEq<ff_condition_effect> for ff_condition_effect

§

impl PartialEq<ff_constant_effect> for ff_constant_effect

§

impl PartialEq<ff_effect> for ff_effect

§

impl PartialEq<ff_envelope> for ff_envelope

§

impl PartialEq<ff_periodic_effect> for ff_periodic_effect

§

impl PartialEq<ff_ramp_effect> for ff_ramp_effect

§

impl PartialEq<ff_replay> for ff_replay

§

impl PartialEq<ff_rumble_effect> for ff_rumble_effect

§

impl PartialEq<ff_trigger> for ff_trigger

§

impl PartialEq<file_clone_range> for file_clone_range

§

impl PartialEq<flock64> for flock64

§

impl PartialEq<flock> for flock

§

impl PartialEq<fsid_t> for fsid_t

§

impl PartialEq<genlmsghdr> for genlmsghdr

§

impl PartialEq<glob64_t> for glob64_t

§

impl PartialEq<glob_t> for glob_t

§

impl PartialEq<group> for group

§

impl PartialEq<hostent> for hostent

§

impl PartialEq<hwtstamp_config> for hwtstamp_config

§

impl PartialEq<if_nameindex> for if_nameindex

§

impl PartialEq<ifaddrs> for ifaddrs

§

impl PartialEq<in6_addr> for in6_addr

§

impl PartialEq<in6_ifreq> for in6_ifreq

§

impl PartialEq<in6_pktinfo> for in6_pktinfo

§

impl PartialEq<in6_rtmsg> for in6_rtmsg

§

impl PartialEq<in_addr> for in_addr

§

impl PartialEq<in_pktinfo> for in_pktinfo

§

impl PartialEq<inotify_event> for inotify_event

§

impl PartialEq<input_absinfo> for input_absinfo

§

impl PartialEq<input_event> for input_event

§

impl PartialEq<input_id> for input_id

§

impl PartialEq<input_keymap_entry> for input_keymap_entry

§

impl PartialEq<input_mask> for input_mask

§

impl PartialEq<iovec> for iovec

§

impl PartialEq<ip_mreq> for ip_mreq

§

impl PartialEq<ip_mreq_source> for ip_mreq_source

§

impl PartialEq<ip_mreqn> for ip_mreqn

§

impl PartialEq<ipc_perm> for ipc_perm

§

impl PartialEq<ipv6_mreq> for ipv6_mreq

§

impl PartialEq<itimerspec> for itimerspec

§

impl PartialEq<itimerval> for itimerval

§

impl PartialEq<j1939_filter> for j1939_filter

§

impl PartialEq<lconv> for lconv

§

impl PartialEq<linger> for linger

§

impl PartialEq<mallinfo2> for mallinfo2

§

impl PartialEq<mallinfo> for mallinfo

§

impl PartialEq<mcontext_t> for mcontext_t

§

impl PartialEq<mmsghdr> for mmsghdr

§

impl PartialEq<mntent> for mntent

§

impl PartialEq<mq_attr> for mq_attr

§

impl PartialEq<msghdr> for msghdr

§

impl PartialEq<msginfo> for msginfo

§

impl PartialEq<msqid_ds> for msqid_ds

§

impl PartialEq<nl_mmap_hdr> for nl_mmap_hdr

§

impl PartialEq<nl_mmap_req> for nl_mmap_req

§

impl PartialEq<nl_pktinfo> for nl_pktinfo

§

impl PartialEq<nlattr> for nlattr

§

impl PartialEq<nlmsgerr> for nlmsgerr

§

impl PartialEq<nlmsghdr> for nlmsghdr

§

impl PartialEq<ntptimeval> for ntptimeval

§

impl PartialEq<open_how> for open_how

§

impl PartialEq<option> for option

§

impl PartialEq<packet_mreq> for packet_mreq

§

impl PartialEq<passwd> for passwd

§

impl PartialEq<pollfd> for pollfd

§

impl PartialEq<posix_spawn_file_actions_t> for posix_spawn_file_actions_t

§

impl PartialEq<posix_spawnattr_t> for posix_spawnattr_t

§

impl PartialEq<protoent> for protoent

§

impl PartialEq<pthread_attr_t> for pthread_attr_t

§

impl PartialEq<pthread_barrier_t> for pthread_barrier_t

§

impl PartialEq<pthread_barrierattr_t> for pthread_barrierattr_t

§

impl PartialEq<pthread_cond_t> for pthread_cond_t

§

impl PartialEq<pthread_condattr_t> for pthread_condattr_t

§

impl PartialEq<pthread_mutex_t> for pthread_mutex_t

§

impl PartialEq<pthread_mutexattr_t> for pthread_mutexattr_t

§

impl PartialEq<pthread_rwlock_t> for pthread_rwlock_t

§

impl PartialEq<pthread_rwlockattr_t> for pthread_rwlockattr_t

§

impl PartialEq<ptrace_peeksiginfo_args> for ptrace_peeksiginfo_args

§

impl PartialEq<ptrace_rseq_configuration> for ptrace_rseq_configuration

§

impl PartialEq<ptrace_syscall_info> for ptrace_syscall_info

§

impl PartialEq<regex_t> for regex_t

§

impl PartialEq<regmatch_t> for regmatch_t

§

impl PartialEq<rlimit64> for rlimit64

§

impl PartialEq<rlimit> for rlimit

§

impl PartialEq<rtentry> for rtentry

§

impl PartialEq<rusage> for rusage

§

impl PartialEq<sched_param> for sched_param

§

impl PartialEq<sctp_authinfo> for sctp_authinfo

§

impl PartialEq<sctp_initmsg> for sctp_initmsg

§

impl PartialEq<sctp_nxtinfo> for sctp_nxtinfo

§

impl PartialEq<sctp_prinfo> for sctp_prinfo

§

impl PartialEq<sctp_rcvinfo> for sctp_rcvinfo

§

impl PartialEq<sctp_sndinfo> for sctp_sndinfo

§

impl PartialEq<sctp_sndrcvinfo> for sctp_sndrcvinfo

§

impl PartialEq<seccomp_data> for seccomp_data

§

impl PartialEq<seccomp_notif_sizes> for seccomp_notif_sizes

§

impl PartialEq<sem_t> for sem_t

§

impl PartialEq<sembuf> for sembuf

§

impl PartialEq<semid_ds> for semid_ds

§

impl PartialEq<seminfo> for seminfo

§

impl PartialEq<servent> for servent

§

impl PartialEq<shmid_ds> for shmid_ds

§

impl PartialEq<sigaction> for sigaction

§

impl PartialEq<sigevent> for sigevent

§

impl PartialEq<siginfo_t> for siginfo_t

§

impl PartialEq<signalfd_siginfo> for signalfd_siginfo

§

impl PartialEq<sigset_t> for sigset_t

§

impl PartialEq<sigval> for sigval

§

impl PartialEq<sock_extended_err> for sock_extended_err

§

impl PartialEq<sock_filter> for sock_filter

§

impl PartialEq<sock_fprog> for sock_fprog

§

impl PartialEq<sockaddr> for sockaddr

§

impl PartialEq<sockaddr_alg> for sockaddr_alg

§

impl PartialEq<sockaddr_in6> for sockaddr_in6

§

impl PartialEq<sockaddr_in> for sockaddr_in

§

impl PartialEq<sockaddr_ll> for sockaddr_ll

§

impl PartialEq<sockaddr_nl> for sockaddr_nl

§

impl PartialEq<sockaddr_storage> for sockaddr_storage

§

impl PartialEq<sockaddr_un> for sockaddr_un

§

impl PartialEq<sockaddr_vm> for sockaddr_vm

§

impl PartialEq<spwd> for spwd

§

impl PartialEq<stack_t> for stack_t

§

impl PartialEq<stat64> for stat64

§

impl PartialEq<stat> for stat

§

impl PartialEq<statfs64> for statfs64

§

impl PartialEq<statfs> for statfs

§

impl PartialEq<statvfs64> for statvfs64

§

impl PartialEq<statvfs> for statvfs

§

impl PartialEq<statx> for statx

§

impl PartialEq<statx_timestamp> for statx_timestamp

§

impl PartialEq<sysinfo> for sysinfo

§

impl PartialEq<termios2> for termios2

§

impl PartialEq<termios> for termios

§

impl PartialEq<timespec> for timespec

§

impl PartialEq<timeval> for timeval

§

impl PartialEq<timex> for timex

§

impl PartialEq<tm> for tm

§

impl PartialEq<tms> for tms

§

impl PartialEq<ucontext_t> for ucontext_t

§

impl PartialEq<ucred> for ucred

§

impl PartialEq<uinput_abs_setup> for uinput_abs_setup

§

impl PartialEq<uinput_ff_erase> for uinput_ff_erase

§

impl PartialEq<uinput_ff_upload> for uinput_ff_upload

§

impl PartialEq<uinput_setup> for uinput_setup

§

impl PartialEq<uinput_user_dev> for uinput_user_dev

§

impl PartialEq<user> for user

§

impl PartialEq<user_fpregs_struct> for user_fpregs_struct

§

impl PartialEq<user_regs_struct> for user_regs_struct

§

impl PartialEq<utimbuf> for utimbuf

§

impl PartialEq<utmpx> for utmpx

§

impl PartialEq<utsname> for utsname

§

impl PartialEq<vec128_storage> for vec128_storage

§

impl PartialEq<vec256_storage> for vec256_storage

§

impl PartialEq<vec512_storage> for vec512_storage

§

impl PartialEq<winsize> for winsize

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for std::path::Path

1.6.0 · source§

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

source§

impl<'a> PartialEq<Component<'a>> for Component<'a>

source§

impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>

source§

impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>

1.10.0 · source§

impl<'a> PartialEq<Location<'a>> for Location<'a>

source§

impl<'a> PartialEq<Utf8Chunk<'a>> for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

source§

impl<'a> PartialEq<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

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

source§

impl<'a> PartialEq<PrefixComponent<'a>> for PrefixComponent<'a>

source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a std::path::Path

source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<str> for String

source§

impl<'a, 'b> PartialEq<String> for &'a str

source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<String> for str

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>where +

Implementors§

1.29.0 · source§

impl PartialEq<&str> for OsString

source§

impl PartialEq<Error> for gstd::errors::Error

§

impl PartialEq<ErrorReplyReason> for ErrorReplyReason

§

impl PartialEq<ExecutionError> for ExecutionError

§

impl PartialEq<ExtError> for ExtError

§

impl PartialEq<MemoryError> for MemoryError

§

impl PartialEq<MessageError> for MessageError

§

impl PartialEq<ProgramRentError> for ProgramRentError

§

impl PartialEq<ReplyCode> for ReplyCode

§

impl PartialEq<ReservationError> for ReservationError

§

impl PartialEq<SignalCode> for SignalCode

§

impl PartialEq<SimpleExecutionError> for SimpleExecutionError

§

impl PartialEq<SimpleProgramCreationError> for SimpleProgramCreationError

§

impl PartialEq<SuccessReplyReason> for SuccessReplyReason

source§

impl PartialEq<AsciiChar> for AsciiChar

source§

impl PartialEq<TryReserveErrorKind> for TryReserveErrorKind

§

impl PartialEq<TryReserveError> for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl PartialEq<Infallible> for Infallible

1.28.0 · source§

impl PartialEq<Alignment> for gstd::prelude::fmt::Alignment

source§

impl PartialEq<FpCategory> for FpCategory

1.55.0 · source§

impl PartialEq<IntErrorKind> for IntErrorKind

source§

impl PartialEq<SearchStep> for SearchStep

source§

impl PartialEq<Ordering> for gstd::prelude::cmp::Ordering

source§

impl PartialEq<Which> for Which

1.7.0 · source§

impl PartialEq<IpAddr> for IpAddr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

source§

impl PartialEq<Ipv6MulticastScope> for Ipv6MulticastScope

source§

impl PartialEq<SocketAddr> for SocketAddr

source§

impl PartialEq<Ordering> for core::sync::atomic::Ordering

1.65.0 · source§

impl PartialEq<BacktraceStatus> for BacktraceStatus

source§

impl PartialEq<VarError> for VarError

source§

impl PartialEq<SeekFrom> for SeekFrom

source§

impl PartialEq<ErrorKind> for ErrorKind

source§

impl PartialEq<Shutdown> for Shutdown

source§

impl PartialEq<BacktraceStyle> for BacktraceStyle

1.12.0 · source§

impl PartialEq<RecvTimeoutError> for RecvTimeoutError

source§

impl PartialEq<TryRecvError> for TryRecvError

source§

impl PartialEq<_Unwind_Action> for _Unwind_Action

source§

impl PartialEq<_Unwind_Reason_Code> for _Unwind_Reason_Code

source§

impl PartialEq<FromHexError> for FromHexError

source§

impl PartialEq<BernoulliError> for BernoulliError

source§

impl PartialEq<WeightedError> for WeightedError

source§

impl PartialEq<IndexVec> for IndexVec

source§

impl PartialEq<bool> for bool

source§

impl PartialEq<char> for char

source§

impl PartialEq<f32> for f32

source§

impl PartialEq<f64> for f64

source§

impl PartialEq<i8> for i8

source§

impl PartialEq<i16> for i16

source§

impl PartialEq<i32> for i32

source§

impl PartialEq<i64> for i64

source§

impl PartialEq<i128> for i128

source§

impl PartialEq<isize> for isize

source§

impl PartialEq<!> for !

source§

impl PartialEq<str> for str

source§

impl PartialEq<str> for OsStr

source§

impl PartialEq<str> for OsString

§

impl PartialEq<str> for Bytes

§

impl PartialEq<str> for BytesMut

source§

impl PartialEq<u8> for u8

source§

impl PartialEq<u16> for u16

source§

impl PartialEq<u32> for u32

source§

impl PartialEq<u64> for u64

source§

impl PartialEq<u128> for u128

source§

impl PartialEq<()> for ()

source§

impl PartialEq<usize> for usize

§

impl PartialEq<SyscallError> for SyscallError

source§

impl PartialEq<MessageHandle> for gstd::msg::MessageHandle

source§

impl PartialEq<ActorId> for gstd::ActorId

source§

impl PartialEq<CodeId> for gstd::CodeId

source§

impl PartialEq<MessageId> for gstd::MessageId

§

impl PartialEq<Percent> for Percent

source§

impl PartialEq<ReservationId> for gstd::ReservationId

§

impl PartialEq<MetaType> for MetaType

source§

impl PartialEq<TypeId> for TypeId

1.34.0 · source§

impl PartialEq<CharTryFromError> for CharTryFromError

1.9.0 · source§

impl PartialEq<DecodeUtf16Error> for DecodeUtf16Error

1.20.0 · source§

impl PartialEq<ParseCharError> for ParseCharError

1.59.0 · source§

impl PartialEq<TryFromCharError> for TryFromCharError

1.57.0 · source§

impl PartialEq<TryReserveError> for gstd::prelude::collections::TryReserveError

source§

impl PartialEq<CStr> for CStr

1.64.0 · source§

impl PartialEq<CString> for CString

1.69.0 · source§

impl PartialEq<FromBytesUntilNulError> for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq<FromBytesWithNulError> for FromBytesWithNulError

1.64.0 · source§

impl PartialEq<FromVecWithNulError> for FromVecWithNulError

1.64.0 · source§

impl PartialEq<IntoStringError> for IntoStringError

1.64.0 · source§

impl PartialEq<NulError> for NulError

source§

impl PartialEq<Error> for gstd::prelude::fmt::Error

1.33.0 · source§

impl PartialEq<PhantomPinned> for PhantomPinned

source§

impl PartialEq<Assume> for Assume

1.34.0 · source§

impl PartialEq<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialEq<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialEq<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialEq<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialEq<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialEq<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialEq<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialEq<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialEq<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialEq<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialEq<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialEq<NonZeroUsize> for NonZeroUsize

source§

impl PartialEq<ParseFloatError> for ParseFloatError

source§

impl PartialEq<ParseIntError> for ParseIntError

1.34.0 · source§

impl PartialEq<TryFromIntError> for TryFromIntError

source§

impl PartialEq<RangeFull> for RangeFull

source§

impl PartialEq<Alignment> for gstd::prelude::ptr::Alignment

source§

impl PartialEq<ParseBoolError> for ParseBoolError

source§

impl PartialEq<Utf8Error> for Utf8Error

source§

impl PartialEq<FromUtf8Error> for FromUtf8Error

source§

impl PartialEq<String> for String

§

impl PartialEq<String> for Bytes

§

impl PartialEq<String> for BytesMut

§

impl PartialEq<Vec<u8, Global>> for Bytes

§

impl PartialEq<Vec<u8, Global>> for BytesMut

1.36.0 · source§

impl PartialEq<RawWaker> for RawWaker

1.36.0 · source§

impl PartialEq<RawWakerVTable> for RawWakerVTable

1.3.0 · source§

impl PartialEq<Duration> for Duration

1.66.0 · source§

impl PartialEq<TryFromFloatSecsError> for TryFromFloatSecsError

1.28.0 · source§

impl PartialEq<Layout> for Layout

1.50.0 · source§

impl PartialEq<LayoutError> for LayoutError

source§

impl PartialEq<AllocError> for core::alloc::AllocError

1.27.0 · source§

impl PartialEq<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

source§

impl PartialEq<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

source§

impl PartialEq<Ipv6Addr> for Ipv6Addr

source§

impl PartialEq<AddrParseError> for AddrParseError

source§

impl PartialEq<SocketAddrV4> for SocketAddrV4

source§

impl PartialEq<SocketAddrV6> for SocketAddrV6

source§

impl PartialEq<OsStr> for str

source§

impl PartialEq<OsStr> for OsStr

1.8.0 · source§

impl PartialEq<OsStr> for std::path::Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

source§

impl PartialEq<OsString> for str

source§

impl PartialEq<OsString> for OsString

1.8.0 · source§

impl PartialEq<OsString> for std::path::Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.1.0 · source§

impl PartialEq<FileType> for FileType

source§

impl PartialEq<Permissions> for Permissions

source§

impl PartialEq<UCred> for UCred

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

source§

impl PartialEq<Path> for std::path::Path

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for std::path::Path

source§

impl PartialEq<PathBuf> for PathBuf

1.7.0 · source§

impl PartialEq<StripPrefixError> for StripPrefixError

source§

impl PartialEq<ExitStatus> for ExitStatus

source§

impl PartialEq<ExitStatusError> for ExitStatusError

source§

impl PartialEq<Output> for Output

1.5.0 · source§

impl PartialEq<WaitTimeoutResult> for WaitTimeoutResult

source§

impl PartialEq<RecvError> for RecvError

1.26.0 · source§

impl PartialEq<AccessError> for AccessError

1.19.0 · source§

impl PartialEq<ThreadId> for ThreadId

1.8.0 · source§

impl PartialEq<Instant> for Instant

1.8.0 · source§

impl PartialEq<SystemTime> for SystemTime

source§

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

source§

impl PartialEq<IgnoredAny> for IgnoredAny

source§

impl PartialEq<Error> for serde::de::value::Error

source§

impl PartialEq<Bernoulli> for Bernoulli

source§

impl PartialEq<StepRng> for StepRng

source§

impl PartialEq<SmallRng> for SmallRng

source§

impl PartialEq<StdRng> for StdRng

source§

impl PartialEq<ChaCha8Core> for ChaCha8Core

source§

impl PartialEq<ChaCha8Rng> for ChaCha8Rng

source§

impl PartialEq<ChaCha12Core> for ChaCha12Core

source§

impl PartialEq<ChaCha12Rng> for ChaCha12Rng

source§

impl PartialEq<ChaCha20Core> for ChaCha20Core

source§

impl PartialEq<ChaCha20Rng> for ChaCha20Rng

§

impl PartialEq<Aborted> for Aborted

§

impl PartialEq<ActorId> for ActorId

§

impl PartialEq<AllocError> for AllocError

§

impl PartialEq<BigEndian> for BigEndian

§

impl PartialEq<Bytes> for &str

§

impl PartialEq<Bytes> for &[u8]

§

impl PartialEq<Bytes> for str

§

impl PartialEq<Bytes> for String

§

impl PartialEq<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<Bytes> for Bytes

§

impl PartialEq<Bytes> for BytesMut

§

impl PartialEq<Bytes> for [u8]

§

impl PartialEq<BytesMut> for &str

§

impl PartialEq<BytesMut> for &[u8]

§

impl PartialEq<BytesMut> for str

§

impl PartialEq<BytesMut> for String

§

impl PartialEq<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<BytesMut> for Bytes

§

impl PartialEq<BytesMut> for BytesMut

§

impl PartialEq<BytesMut> for [u8]

§

impl PartialEq<Canceled> for Canceled

§

impl PartialEq<CodeId> for CodeId

§

impl PartialEq<Const> for Const

§

impl PartialEq<Dl_info> for Dl_info

§

impl PartialEq<Elf32_Chdr> for Elf32_Chdr

§

impl PartialEq<Elf32_Ehdr> for Elf32_Ehdr

§

impl PartialEq<Elf32_Phdr> for Elf32_Phdr

§

impl PartialEq<Elf32_Shdr> for Elf32_Shdr

§

impl PartialEq<Elf32_Sym> for Elf32_Sym

§

impl PartialEq<Elf64_Chdr> for Elf64_Chdr

§

impl PartialEq<Elf64_Ehdr> for Elf64_Ehdr

§

impl PartialEq<Elf64_Phdr> for Elf64_Phdr

§

impl PartialEq<Elf64_Shdr> for Elf64_Shdr

§

impl PartialEq<Elf64_Sym> for Elf64_Sym

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<FromDecStrErr> for FromDecStrErr

§

impl PartialEq<FromStrRadixErrKind> for FromStrRadixErrKind

§

impl PartialEq<H128> for H128

§

impl PartialEq<H160> for H160

§

impl PartialEq<H256> for H256

§

impl PartialEq<H384> for H384

§

impl PartialEq<H512> for H512

§

impl PartialEq<H768> for H768

§

impl PartialEq<LittleEndian> for LittleEndian

§

impl PartialEq<Lsb0> for Lsb0

§

impl PartialEq<MessageHandle> for MessageHandle

§

impl PartialEq<MessageId> for MessageId

§

impl PartialEq<MetaForm> for MetaForm

§

impl PartialEq<Msb0> for Msb0

§

impl PartialEq<Mut> for Mut

§

impl PartialEq<NullPtrError> for NullPtrError

§

impl PartialEq<OptionBool> for OptionBool

§

impl PartialEq<PathError> for PathError

§

impl PartialEq<PollNext> for PollNext

§

impl PartialEq<PortableForm> for PortableForm

§

impl PartialEq<PortableRegistry> for PortableRegistry

§

impl PartialEq<PortableType> for PortableType

§

impl PartialEq<Registry> for Registry

§

impl PartialEq<ReservationId> for ReservationId

§

impl PartialEq<SendError> for SendError

§

impl PartialEq<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialEq<U128> for U128

§

impl PartialEq<U256> for U256

§

impl PartialEq<U512> for U512

§

impl PartialEq<[u8]> for Bytes

§

impl PartialEq<[u8]> for BytesMut

§

impl PartialEq<__c_anonymous_ifru_map> for __c_anonymous_ifru_map

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_data> for __c_anonymous_ptrace_syscall_info_data

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_entry> for __c_anonymous_ptrace_syscall_info_entry

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_exit> for __c_anonymous_ptrace_syscall_info_exit

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_seccomp> for __c_anonymous_ptrace_syscall_info_seccomp

§

impl PartialEq<__c_anonymous_sockaddr_can_j1939> for __c_anonymous_sockaddr_can_j1939

§

impl PartialEq<__c_anonymous_sockaddr_can_tp> for __c_anonymous_sockaddr_can_tp

§

impl PartialEq<__exit_status> for __exit_status

§

impl PartialEq<__timeval> for __timeval

§

impl PartialEq<_libc_fpstate> for _libc_fpstate

§

impl PartialEq<_libc_fpxreg> for _libc_fpxreg

§

impl PartialEq<_libc_xmmreg> for _libc_xmmreg

§

impl PartialEq<addrinfo> for addrinfo

§

impl PartialEq<af_alg_iv> for af_alg_iv

§

impl PartialEq<aiocb> for aiocb

§

impl PartialEq<arpd_request> for arpd_request

§

impl PartialEq<arphdr> for arphdr

§

impl PartialEq<arpreq> for arpreq

§

impl PartialEq<arpreq_old> for arpreq_old

§

impl PartialEq<can_filter> for can_filter

§

impl PartialEq<clone_args> for clone_args

§

impl PartialEq<cmsghdr> for cmsghdr

§

impl PartialEq<cpu_set_t> for cpu_set_t

§

impl PartialEq<dirent64> for dirent64

§

impl PartialEq<dirent> for dirent

§

impl PartialEq<dl_phdr_info> for dl_phdr_info

§

impl PartialEq<dqblk> for dqblk

§

impl PartialEq<epoll_event> for epoll_event

§

impl PartialEq<fanotify_event_metadata> for fanotify_event_metadata

§

impl PartialEq<fanotify_response> for fanotify_response

§

impl PartialEq<fd_set> for fd_set

§

impl PartialEq<ff_condition_effect> for ff_condition_effect

§

impl PartialEq<ff_constant_effect> for ff_constant_effect

§

impl PartialEq<ff_effect> for ff_effect

§

impl PartialEq<ff_envelope> for ff_envelope

§

impl PartialEq<ff_periodic_effect> for ff_periodic_effect

§

impl PartialEq<ff_ramp_effect> for ff_ramp_effect

§

impl PartialEq<ff_replay> for ff_replay

§

impl PartialEq<ff_rumble_effect> for ff_rumble_effect

§

impl PartialEq<ff_trigger> for ff_trigger

§

impl PartialEq<file_clone_range> for file_clone_range

§

impl PartialEq<flock64> for flock64

§

impl PartialEq<flock> for flock

§

impl PartialEq<fsid_t> for fsid_t

§

impl PartialEq<genlmsghdr> for genlmsghdr

§

impl PartialEq<glob64_t> for glob64_t

§

impl PartialEq<glob_t> for glob_t

§

impl PartialEq<group> for group

§

impl PartialEq<hostent> for hostent

§

impl PartialEq<hwtstamp_config> for hwtstamp_config

§

impl PartialEq<if_nameindex> for if_nameindex

§

impl PartialEq<ifaddrs> for ifaddrs

§

impl PartialEq<in6_addr> for in6_addr

§

impl PartialEq<in6_ifreq> for in6_ifreq

§

impl PartialEq<in6_pktinfo> for in6_pktinfo

§

impl PartialEq<in6_rtmsg> for in6_rtmsg

§

impl PartialEq<in_addr> for in_addr

§

impl PartialEq<in_pktinfo> for in_pktinfo

§

impl PartialEq<inotify_event> for inotify_event

§

impl PartialEq<input_absinfo> for input_absinfo

§

impl PartialEq<input_event> for input_event

§

impl PartialEq<input_id> for input_id

§

impl PartialEq<input_keymap_entry> for input_keymap_entry

§

impl PartialEq<input_mask> for input_mask

§

impl PartialEq<iovec> for iovec

§

impl PartialEq<ip_mreq> for ip_mreq

§

impl PartialEq<ip_mreq_source> for ip_mreq_source

§

impl PartialEq<ip_mreqn> for ip_mreqn

§

impl PartialEq<ipc_perm> for ipc_perm

§

impl PartialEq<ipv6_mreq> for ipv6_mreq

§

impl PartialEq<itimerspec> for itimerspec

§

impl PartialEq<itimerval> for itimerval

§

impl PartialEq<j1939_filter> for j1939_filter

§

impl PartialEq<lconv> for lconv

§

impl PartialEq<linger> for linger

§

impl PartialEq<mallinfo2> for mallinfo2

§

impl PartialEq<mallinfo> for mallinfo

§

impl PartialEq<mcontext_t> for mcontext_t

§

impl PartialEq<mmsghdr> for mmsghdr

§

impl PartialEq<mntent> for mntent

§

impl PartialEq<mq_attr> for mq_attr

§

impl PartialEq<msghdr> for msghdr

§

impl PartialEq<msginfo> for msginfo

§

impl PartialEq<msqid_ds> for msqid_ds

§

impl PartialEq<nl_mmap_hdr> for nl_mmap_hdr

§

impl PartialEq<nl_mmap_req> for nl_mmap_req

§

impl PartialEq<nl_pktinfo> for nl_pktinfo

§

impl PartialEq<nlattr> for nlattr

§

impl PartialEq<nlmsgerr> for nlmsgerr

§

impl PartialEq<nlmsghdr> for nlmsghdr

§

impl PartialEq<ntptimeval> for ntptimeval

§

impl PartialEq<open_how> for open_how

§

impl PartialEq<option> for option

§

impl PartialEq<packet_mreq> for packet_mreq

§

impl PartialEq<passwd> for passwd

§

impl PartialEq<pollfd> for pollfd

§

impl PartialEq<posix_spawn_file_actions_t> for posix_spawn_file_actions_t

§

impl PartialEq<posix_spawnattr_t> for posix_spawnattr_t

§

impl PartialEq<protoent> for protoent

§

impl PartialEq<pthread_attr_t> for pthread_attr_t

§

impl PartialEq<pthread_barrier_t> for pthread_barrier_t

§

impl PartialEq<pthread_barrierattr_t> for pthread_barrierattr_t

§

impl PartialEq<pthread_cond_t> for pthread_cond_t

§

impl PartialEq<pthread_condattr_t> for pthread_condattr_t

§

impl PartialEq<pthread_mutex_t> for pthread_mutex_t

§

impl PartialEq<pthread_mutexattr_t> for pthread_mutexattr_t

§

impl PartialEq<pthread_rwlock_t> for pthread_rwlock_t

§

impl PartialEq<pthread_rwlockattr_t> for pthread_rwlockattr_t

§

impl PartialEq<ptrace_peeksiginfo_args> for ptrace_peeksiginfo_args

§

impl PartialEq<ptrace_rseq_configuration> for ptrace_rseq_configuration

§

impl PartialEq<ptrace_syscall_info> for ptrace_syscall_info

§

impl PartialEq<regex_t> for regex_t

§

impl PartialEq<regmatch_t> for regmatch_t

§

impl PartialEq<rlimit64> for rlimit64

§

impl PartialEq<rlimit> for rlimit

§

impl PartialEq<rtentry> for rtentry

§

impl PartialEq<rusage> for rusage

§

impl PartialEq<sched_param> for sched_param

§

impl PartialEq<sctp_authinfo> for sctp_authinfo

§

impl PartialEq<sctp_initmsg> for sctp_initmsg

§

impl PartialEq<sctp_nxtinfo> for sctp_nxtinfo

§

impl PartialEq<sctp_prinfo> for sctp_prinfo

§

impl PartialEq<sctp_rcvinfo> for sctp_rcvinfo

§

impl PartialEq<sctp_sndinfo> for sctp_sndinfo

§

impl PartialEq<sctp_sndrcvinfo> for sctp_sndrcvinfo

§

impl PartialEq<seccomp_data> for seccomp_data

§

impl PartialEq<seccomp_notif_sizes> for seccomp_notif_sizes

§

impl PartialEq<sem_t> for sem_t

§

impl PartialEq<sembuf> for sembuf

§

impl PartialEq<semid_ds> for semid_ds

§

impl PartialEq<seminfo> for seminfo

§

impl PartialEq<servent> for servent

§

impl PartialEq<shmid_ds> for shmid_ds

§

impl PartialEq<sigaction> for sigaction

§

impl PartialEq<sigevent> for sigevent

§

impl PartialEq<siginfo_t> for siginfo_t

§

impl PartialEq<signalfd_siginfo> for signalfd_siginfo

§

impl PartialEq<sigset_t> for sigset_t

§

impl PartialEq<sigval> for sigval

§

impl PartialEq<sock_extended_err> for sock_extended_err

§

impl PartialEq<sock_filter> for sock_filter

§

impl PartialEq<sock_fprog> for sock_fprog

§

impl PartialEq<sockaddr> for sockaddr

§

impl PartialEq<sockaddr_alg> for sockaddr_alg

§

impl PartialEq<sockaddr_in6> for sockaddr_in6

§

impl PartialEq<sockaddr_in> for sockaddr_in

§

impl PartialEq<sockaddr_ll> for sockaddr_ll

§

impl PartialEq<sockaddr_nl> for sockaddr_nl

§

impl PartialEq<sockaddr_storage> for sockaddr_storage

§

impl PartialEq<sockaddr_un> for sockaddr_un

§

impl PartialEq<sockaddr_vm> for sockaddr_vm

§

impl PartialEq<spwd> for spwd

§

impl PartialEq<stack_t> for stack_t

§

impl PartialEq<stat64> for stat64

§

impl PartialEq<stat> for stat

§

impl PartialEq<statfs64> for statfs64

§

impl PartialEq<statfs> for statfs

§

impl PartialEq<statvfs64> for statvfs64

§

impl PartialEq<statvfs> for statvfs

§

impl PartialEq<statx> for statx

§

impl PartialEq<statx_timestamp> for statx_timestamp

§

impl PartialEq<sysinfo> for sysinfo

§

impl PartialEq<termios2> for termios2

§

impl PartialEq<termios> for termios

§

impl PartialEq<timespec> for timespec

§

impl PartialEq<timeval> for timeval

§

impl PartialEq<timex> for timex

§

impl PartialEq<tm> for tm

§

impl PartialEq<tms> for tms

§

impl PartialEq<ucontext_t> for ucontext_t

§

impl PartialEq<ucred> for ucred

§

impl PartialEq<uinput_abs_setup> for uinput_abs_setup

§

impl PartialEq<uinput_ff_erase> for uinput_ff_erase

§

impl PartialEq<uinput_ff_upload> for uinput_ff_upload

§

impl PartialEq<uinput_setup> for uinput_setup

§

impl PartialEq<uinput_user_dev> for uinput_user_dev

§

impl PartialEq<user> for user

§

impl PartialEq<user_fpregs_struct> for user_fpregs_struct

§

impl PartialEq<user_regs_struct> for user_regs_struct

§

impl PartialEq<utimbuf> for utimbuf

§

impl PartialEq<utmpx> for utmpx

§

impl PartialEq<utsname> for utsname

§

impl PartialEq<vec128_storage> for vec128_storage

§

impl PartialEq<vec256_storage> for vec256_storage

§

impl PartialEq<vec512_storage> for vec512_storage

§

impl PartialEq<winsize> for winsize

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for std::path::Path

1.6.0 · source§

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

source§

impl<'a> PartialEq<Component<'a>> for Component<'a>

source§

impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>

source§

impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>

1.10.0 · source§

impl<'a> PartialEq<Location<'a>> for Location<'a>

source§

impl<'a> PartialEq<Utf8Chunk<'a>> for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

source§

impl<'a> PartialEq<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

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

source§

impl<'a> PartialEq<PrefixComponent<'a>> for PrefixComponent<'a>

source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a std::path::Path

source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<str> for String

source§

impl<'a, 'b> PartialEq<String> for &'a str

source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<String> for str

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

§

impl<'a, T> PartialEq<&'a T> for Byteswhere Bytes: PartialEq<T>, diff --git a/pr-3467/gstd/prelude/cmp/trait.PartialOrd.html b/pr-3467/gstd/prelude/cmp/trait.PartialOrd.html index 029ad8b16da..9dea081093a 100644 --- a/pr-3467/gstd/prelude/cmp/trait.PartialOrd.html +++ b/pr-3467/gstd/prelude/cmp/trait.PartialOrd.html @@ -178,7 +178,7 @@
Examples
“alphabetical” order, which varies by language and locale. Comparing strings according to culturally-accepted standards requires locale-specific data that is outside the scope of the str type.

-

source§

impl PartialOrd<str> for OsStr

source§

impl PartialOrd<str> for OsString

§

impl PartialOrd<str> for Bytes

§

impl PartialOrd<str> for BytesMut

source§

impl PartialOrd<u8> for u8

source§

impl PartialOrd<u16> for u16

source§

impl PartialOrd<u32> for u32

source§

impl PartialOrd<u64> for u64

source§

impl PartialOrd<u128> for u128

source§

impl PartialOrd<()> for ()

source§

impl PartialOrd<usize> for usize

source§

impl PartialOrd<ActorId> for gcore::general::ActorId

source§

impl PartialOrd<CodeId> for gcore::general::CodeId

source§

impl PartialOrd<MessageId> for gcore::general::MessageId

source§

impl PartialOrd<ReservationId> for gcore::general::ReservationId

source§

impl PartialOrd<SyscallError> for SyscallError

source§

impl PartialOrd<ActorId> for gstd::ActorId

source§

impl PartialOrd<CodeId> for gstd::CodeId

source§

impl PartialOrd<MessageId> for gstd::MessageId

§

impl PartialOrd<Percent> for Percent

source§

impl PartialOrd<ReservationId> for gstd::ReservationId

§

impl PartialOrd<MetaType> for MetaType

source§

impl PartialOrd<TypeId> for TypeId

source§

impl PartialOrd<CStr> for CStr

1.64.0 · source§

impl PartialOrd<CString> for CString

source§

impl PartialOrd<Error> for Error

1.33.0 · source§

impl PartialOrd<PhantomPinned> for PhantomPinned

1.34.0 · source§

impl PartialOrd<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialOrd<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialOrd<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialOrd<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialOrd<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialOrd<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialOrd<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialOrd<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialOrd<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialOrd<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialOrd<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialOrd<NonZeroUsize> for NonZeroUsize

const: unstable · source§

impl PartialOrd<Alignment> for Alignment

source§

impl PartialOrd<String> for String

§

impl PartialOrd<String> for Bytes

§

impl PartialOrd<String> for BytesMut

§

impl PartialOrd<Vec<u8, Global>> for Bytes

§

impl PartialOrd<Vec<u8, Global>> for BytesMut

1.3.0 · source§

impl PartialOrd<Duration> for Duration

1.27.0 · source§

impl PartialOrd<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialOrd<Ipv4Addr> for IpAddr

source§

impl PartialOrd<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialOrd<Ipv6Addr> for IpAddr

source§

impl PartialOrd<Ipv6Addr> for Ipv6Addr

1.45.0 · source§

impl PartialOrd<SocketAddrV4> for SocketAddrV4

1.45.0 · source§

impl PartialOrd<SocketAddrV6> for SocketAddrV6

source§

impl PartialOrd<OsStr> for OsStr

1.8.0 · source§

impl PartialOrd<OsStr> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsStr> for PathBuf

source§

impl PartialOrd<OsString> for OsString

1.8.0 · source§

impl PartialOrd<OsString> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsString> for PathBuf

1.8.0 · source§

impl PartialOrd<Path> for OsStr

1.8.0 · source§

impl PartialOrd<Path> for OsString

source§

impl PartialOrd<Path> for std::path::Path

1.8.0 · source§

impl PartialOrd<Path> for PathBuf

1.8.0 · source§

impl PartialOrd<PathBuf> for OsStr

1.8.0 · source§

impl PartialOrd<PathBuf> for OsString

1.8.0 · source§

impl PartialOrd<PathBuf> for std::path::Path

source§

impl PartialOrd<PathBuf> for PathBuf

1.8.0 · source§

impl PartialOrd<Instant> for Instant

1.8.0 · source§

impl PartialOrd<SystemTime> for SystemTime

§

impl PartialOrd<BigEndian> for BigEndian

§

impl PartialOrd<Bytes> for &str

§

impl PartialOrd<Bytes> for &[u8]

§

impl PartialOrd<Bytes> for str

§

impl PartialOrd<Bytes> for String

§

impl PartialOrd<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<Bytes> for Bytes

§

impl PartialOrd<Bytes> for [u8]

§

impl PartialOrd<BytesMut> for &str

§

impl PartialOrd<BytesMut> for &[u8]

§

impl PartialOrd<BytesMut> for str

§

impl PartialOrd<BytesMut> for String

§

impl PartialOrd<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<BytesMut> for BytesMut

§

impl PartialOrd<BytesMut> for [u8]

§

impl PartialOrd<Const> for Const

§

impl PartialOrd<H128> for H128

§

impl PartialOrd<H160> for H160

§

impl PartialOrd<H256> for H256

§

impl PartialOrd<H384> for H384

§

impl PartialOrd<H512> for H512

§

impl PartialOrd<H768> for H768

§

impl PartialOrd<LittleEndian> for LittleEndian

§

impl PartialOrd<Lsb0> for Lsb0

§

impl PartialOrd<MetaForm> for MetaForm

§

impl PartialOrd<Msb0> for Msb0

§

impl PartialOrd<Mut> for Mut

§

impl PartialOrd<NullPtrError> for NullPtrError

§

impl PartialOrd<PortableForm> for PortableForm

§

impl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialOrd<U128> for U128

§

impl PartialOrd<U256> for U256

§

impl PartialOrd<U512> for U512

§

impl PartialOrd<[u8]> for Bytes

§

impl PartialOrd<[u8]> for BytesMut

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsString

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsString

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for std::path::Path

1.8.0 · source§

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

source§

impl<'a> PartialOrd<Component<'a>> for Component<'a>

source§

impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>

1.10.0 · source§

impl<'a> PartialOrd<Location<'a>> for Location<'a>

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsString> for Cow<'a, Path>

source§

impl<'a> PartialOrd<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialOrd<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for Cow<'a, OsStr>

1.8.0 · source§

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

source§

impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a Path> for Cow<'b, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'b, OsStr>> for &'a std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for OsStr

source§

impl<'a, B> PartialOrd<Cow<'a, B>> for Cow<'a, B>where +

source§

impl PartialOrd<str> for OsStr

source§

impl PartialOrd<str> for OsString

§

impl PartialOrd<str> for Bytes

§

impl PartialOrd<str> for BytesMut

source§

impl PartialOrd<u8> for u8

source§

impl PartialOrd<u16> for u16

source§

impl PartialOrd<u32> for u32

source§

impl PartialOrd<u64> for u64

source§

impl PartialOrd<u128> for u128

source§

impl PartialOrd<()> for ()

source§

impl PartialOrd<usize> for usize

§

impl PartialOrd<SyscallError> for SyscallError

source§

impl PartialOrd<ActorId> for gstd::ActorId

source§

impl PartialOrd<CodeId> for gstd::CodeId

source§

impl PartialOrd<MessageId> for gstd::MessageId

§

impl PartialOrd<Percent> for Percent

source§

impl PartialOrd<ReservationId> for gstd::ReservationId

§

impl PartialOrd<MetaType> for MetaType

source§

impl PartialOrd<TypeId> for TypeId

source§

impl PartialOrd<CStr> for CStr

1.64.0 · source§

impl PartialOrd<CString> for CString

source§

impl PartialOrd<Error> for Error

1.33.0 · source§

impl PartialOrd<PhantomPinned> for PhantomPinned

1.34.0 · source§

impl PartialOrd<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialOrd<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialOrd<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialOrd<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialOrd<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialOrd<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialOrd<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialOrd<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialOrd<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialOrd<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialOrd<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialOrd<NonZeroUsize> for NonZeroUsize

const: unstable · source§

impl PartialOrd<Alignment> for Alignment

source§

impl PartialOrd<String> for String

§

impl PartialOrd<String> for Bytes

§

impl PartialOrd<String> for BytesMut

§

impl PartialOrd<Vec<u8, Global>> for Bytes

§

impl PartialOrd<Vec<u8, Global>> for BytesMut

1.3.0 · source§

impl PartialOrd<Duration> for Duration

1.27.0 · source§

impl PartialOrd<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialOrd<Ipv4Addr> for IpAddr

source§

impl PartialOrd<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialOrd<Ipv6Addr> for IpAddr

source§

impl PartialOrd<Ipv6Addr> for Ipv6Addr

1.45.0 · source§

impl PartialOrd<SocketAddrV4> for SocketAddrV4

1.45.0 · source§

impl PartialOrd<SocketAddrV6> for SocketAddrV6

source§

impl PartialOrd<OsStr> for OsStr

1.8.0 · source§

impl PartialOrd<OsStr> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsStr> for PathBuf

source§

impl PartialOrd<OsString> for OsString

1.8.0 · source§

impl PartialOrd<OsString> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsString> for PathBuf

1.8.0 · source§

impl PartialOrd<Path> for OsStr

1.8.0 · source§

impl PartialOrd<Path> for OsString

source§

impl PartialOrd<Path> for std::path::Path

1.8.0 · source§

impl PartialOrd<Path> for PathBuf

1.8.0 · source§

impl PartialOrd<PathBuf> for OsStr

1.8.0 · source§

impl PartialOrd<PathBuf> for OsString

1.8.0 · source§

impl PartialOrd<PathBuf> for std::path::Path

source§

impl PartialOrd<PathBuf> for PathBuf

1.8.0 · source§

impl PartialOrd<Instant> for Instant

1.8.0 · source§

impl PartialOrd<SystemTime> for SystemTime

§

impl PartialOrd<ActorId> for ActorId

§

impl PartialOrd<BigEndian> for BigEndian

§

impl PartialOrd<Bytes> for &str

§

impl PartialOrd<Bytes> for &[u8]

§

impl PartialOrd<Bytes> for str

§

impl PartialOrd<Bytes> for String

§

impl PartialOrd<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<Bytes> for Bytes

§

impl PartialOrd<Bytes> for [u8]

§

impl PartialOrd<BytesMut> for &str

§

impl PartialOrd<BytesMut> for &[u8]

§

impl PartialOrd<BytesMut> for str

§

impl PartialOrd<BytesMut> for String

§

impl PartialOrd<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<BytesMut> for BytesMut

§

impl PartialOrd<BytesMut> for [u8]

§

impl PartialOrd<CodeId> for CodeId

§

impl PartialOrd<Const> for Const

§

impl PartialOrd<H128> for H128

§

impl PartialOrd<H160> for H160

§

impl PartialOrd<H256> for H256

§

impl PartialOrd<H384> for H384

§

impl PartialOrd<H512> for H512

§

impl PartialOrd<H768> for H768

§

impl PartialOrd<LittleEndian> for LittleEndian

§

impl PartialOrd<Lsb0> for Lsb0

§

impl PartialOrd<MessageId> for MessageId

§

impl PartialOrd<MetaForm> for MetaForm

§

impl PartialOrd<Msb0> for Msb0

§

impl PartialOrd<Mut> for Mut

§

impl PartialOrd<NullPtrError> for NullPtrError

§

impl PartialOrd<PortableForm> for PortableForm

§

impl PartialOrd<ReservationId> for ReservationId

§

impl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialOrd<U128> for U128

§

impl PartialOrd<U256> for U256

§

impl PartialOrd<U512> for U512

§

impl PartialOrd<[u8]> for Bytes

§

impl PartialOrd<[u8]> for BytesMut

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsString

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsString

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for std::path::Path

1.8.0 · source§

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

source§

impl<'a> PartialOrd<Component<'a>> for Component<'a>

source§

impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>

1.10.0 · source§

impl<'a> PartialOrd<Location<'a>> for Location<'a>

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsString> for Cow<'a, Path>

source§

impl<'a> PartialOrd<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialOrd<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for Cow<'a, OsStr>

1.8.0 · source§

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

source§

impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a Path> for Cow<'b, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'b, OsStr>> for &'a std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for OsStr

source§

impl<'a, B> PartialOrd<Cow<'a, B>> for Cow<'a, B>where B: PartialOrd<B> + ToOwned + ?Sized,

§

impl<'a, O1, O2, T1, T2> PartialOrd<BitBox<T2, O2>> for &'a BitSlice<T1, O1>where O1: BitOrder, O2: BitOrder, diff --git a/pr-3467/gstd/prelude/convert/trait.AsRef.html b/pr-3467/gstd/prelude/convert/trait.AsRef.html index 86672e600ef..7184e63d99a 100644 --- a/pr-3467/gstd/prelude/convert/trait.AsRef.html +++ b/pr-3467/gstd/prelude/convert/trait.AsRef.html @@ -70,7 +70,7 @@

Examples

let s = "hello".to_string(); is_hello(s);

Required Methods§

source

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.

-

Implementors§

source§

impl AsRef<str> for str

source§

impl AsRef<str> for String

source§

impl AsRef<MessageHandle> for MessageHandle

1.7.0 · source§

impl AsRef<CStr> for CStr

1.7.0 · source§

impl AsRef<CStr> for CString

source§

impl AsRef<OsStr> for Component<'_>

source§

impl AsRef<OsStr> for str

source§

impl AsRef<OsStr> for String

source§

impl AsRef<OsStr> for OsStr

source§

impl AsRef<OsStr> for OsString

source§

impl AsRef<OsStr> for Components<'_>

source§

impl AsRef<OsStr> for std::path::Iter<'_>

source§

impl AsRef<OsStr> for Path

source§

impl AsRef<OsStr> for PathBuf

1.8.0 · source§

impl AsRef<Path> for Cow<'_, OsStr>

1.25.0 · source§

impl AsRef<Path> for Component<'_>

source§

impl AsRef<Path> for str

source§

impl AsRef<Path> for String

source§

impl AsRef<Path> for OsStr

source§

impl AsRef<Path> for OsString

source§

impl AsRef<Path> for Components<'_>

source§

impl AsRef<Path> for std::path::Iter<'_>

source§

impl AsRef<Path> for Path

source§

impl AsRef<Path> for PathBuf

source§

impl AsRef<[u8]> for str

source§

impl AsRef<[u8]> for ActorId

source§

impl AsRef<[u8]> for CodeId

source§

impl AsRef<[u8]> for MessageId

source§

impl AsRef<[u8]> for ReservationId

source§

impl AsRef<[u8]> for String

§

impl AsRef<[u8]> for Bytes

§

impl AsRef<[u8]> for BytesMut

§

impl AsRef<[u8]> for H128

§

impl AsRef<[u8]> for H160

§

impl AsRef<[u8]> for H256

§

impl AsRef<[u8]> for H384

§

impl AsRef<[u8]> for H512

§

impl AsRef<[u8]> for H768

§

impl AsRef<[u64]> for U128

Get a reference to the underlying little-endian words.

+

Implementors§

source§

impl AsRef<str> for str

source§

impl AsRef<str> for String

1.7.0 · source§

impl AsRef<CStr> for CStr

1.7.0 · source§

impl AsRef<CStr> for CString

source§

impl AsRef<OsStr> for Component<'_>

source§

impl AsRef<OsStr> for str

source§

impl AsRef<OsStr> for String

source§

impl AsRef<OsStr> for OsStr

source§

impl AsRef<OsStr> for OsString

source§

impl AsRef<OsStr> for Components<'_>

source§

impl AsRef<OsStr> for std::path::Iter<'_>

source§

impl AsRef<OsStr> for Path

source§

impl AsRef<OsStr> for PathBuf

1.8.0 · source§

impl AsRef<Path> for Cow<'_, OsStr>

1.25.0 · source§

impl AsRef<Path> for Component<'_>

source§

impl AsRef<Path> for str

source§

impl AsRef<Path> for String

source§

impl AsRef<Path> for OsStr

source§

impl AsRef<Path> for OsString

source§

impl AsRef<Path> for Components<'_>

source§

impl AsRef<Path> for std::path::Iter<'_>

source§

impl AsRef<Path> for Path

source§

impl AsRef<Path> for PathBuf

source§

impl AsRef<MessageHandle> for MessageHandle

source§

impl AsRef<[u8]> for str

source§

impl AsRef<[u8]> for ActorId

source§

impl AsRef<[u8]> for CodeId

source§

impl AsRef<[u8]> for MessageId

source§

impl AsRef<[u8]> for ReservationId

source§

impl AsRef<[u8]> for String

§

impl AsRef<[u8]> for Bytes

§

impl AsRef<[u8]> for BytesMut

§

impl AsRef<[u8]> for H128

§

impl AsRef<[u8]> for H160

§

impl AsRef<[u8]> for H256

§

impl AsRef<[u8]> for H384

§

impl AsRef<[u8]> for H512

§

impl AsRef<[u8]> for H768

§

impl AsRef<[u64]> for U128

Get a reference to the underlying little-endian words.

§

impl AsRef<[u64]> for U256

Get a reference to the underlying little-endian words.

§

impl AsRef<[u64]> for U512

Get a reference to the underlying little-endian words.

1.55.0 · source§

impl<'a> AsRef<str> for gstd::prelude::string::Drain<'a>

1.55.0 · source§

impl<'a> AsRef<[u8]> for gstd::prelude::string::Drain<'a>

source§

impl<'a, T> AsRef<T> for MutexGuard<'a, T>

source§

impl<'a, T> AsRef<T> for RwLockReadGuard<'a, T>

source§

impl<'a, T> AsRef<T> for RwLockWriteGuard<'a, T>

1.46.0 · source§

impl<'a, T, A> AsRef<[T]> for gstd::prelude::vec::Drain<'a, T, A>where diff --git a/pr-3467/gstd/prelude/convert/trait.From.html b/pr-3467/gstd/prelude/convert/trait.From.html index 79d6c06b865..0b471c2077a 100644 --- a/pr-3467/gstd/prelude/convert/trait.From.html +++ b/pr-3467/gstd/prelude/convert/trait.From.html @@ -66,7 +66,7 @@

Examples

Ok(num) }

Required Methods§

source

fn from(value: T) -> Self

Converts to this type from the input type.

-

Implementors§

§

impl From<&'static str> for Bytes

§

impl From<&'static str> for Error

§

impl From<&'static str> for U128

§

impl From<&'static str> for U256

§

impl From<&'static str> for U512

§

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

1.21.0 · source§

impl From<&str> for Rc<str, Global>

1.17.0 · source§

impl From<&str> for gstd::prelude::Box<str, Global>

1.6.0 · source§

impl From<&str> for gstd::prelude::Box<dyn Error, Global>

source§

impl From<&str> for String

source§

impl From<&str> for gstd::prelude::Vec<u8, Global>

1.21.0 · source§

impl From<&str> for Arc<str, Global>

§

impl From<&str> for Vec<u8, Global>

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Rc<CStr, Global>

1.17.0 · source§

impl From<&CStr> for gstd::prelude::Box<CStr, Global>

1.24.0 · source§

impl From<&CStr> for Arc<CStr, Global>

§

impl From<&CStr> for Box<CStr, Global>

1.35.0 · source§

impl From<&String> for String

source§

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

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr, Global>

1.17.0 · source§

impl From<&OsStr> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr, Global>

1.24.0 · source§

impl From<&Path> for Rc<Path, Global>

1.17.0 · source§

impl From<&Path> for gstd::prelude::Box<Path, Global>

1.24.0 · source§

impl From<&Path> for Arc<Path, Global>

source§

impl From<&ChaCha8Rng> for ChaCha8Rng

source§

impl From<&ChaCha12Rng> for ChaCha12Rng

source§

impl From<&ChaCha20Rng> for ChaCha20Rng

1.44.0 · source§

impl From<&mut str> for String

source§

impl From<Error> for gstd::errors::Error

§

impl From<ErrorReplyReason> for ReplyCode

§

impl From<ExecutionError> for ExtError

source§

impl From<ExtError> for gcore::errors::Error

§

impl From<MemoryError> for ExtError

§

impl From<MessageError> for ExtError

§

impl From<ProgramRentError> for ExtError

§

impl From<ReservationError> for ExtError

§

impl From<SimpleExecutionError> for ErrorReplyReason

§

impl From<SimpleExecutionError> for SignalCode

§

impl From<SimpleProgramCreationError> for ErrorReplyReason

§

impl From<SuccessReplyReason> for ReplyCode

1.45.0 · source§

impl From<Cow<'_, str>> for gstd::prelude::Box<str, Global>

1.45.0 · source§

impl From<Cow<'_, CStr>> for gstd::prelude::Box<CStr, Global>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for gstd::prelude::Box<OsStr, Global>

1.45.0 · source§

impl From<Cow<'_, Path>> for gstd::prelude::Box<Path, Global>

source§

impl From<TryReserveErrorKind> for TryReserveError

§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

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.36.0 · source§

impl From<Infallible> for TryFromSliceError

1.34.0 · source§

impl From<Infallible> for TryFromIntError

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 +

Implementors§

§

impl From<&'static str> for Bytes

§

impl From<&'static str> for Error

§

impl From<&'static str> for U128

§

impl From<&'static str> for U256

§

impl From<&'static str> for U512

§

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

1.21.0 · source§

impl From<&str> for Rc<str, Global>

1.17.0 · source§

impl From<&str> for gstd::prelude::Box<str, Global>

1.6.0 · source§

impl From<&str> for gstd::prelude::Box<dyn Error, Global>

source§

impl From<&str> for String

source§

impl From<&str> for gstd::prelude::Vec<u8, Global>

1.21.0 · source§

impl From<&str> for Arc<str, Global>

§

impl From<&str> for Vec<u8, Global>

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Rc<CStr, Global>

1.17.0 · source§

impl From<&CStr> for gstd::prelude::Box<CStr, Global>

1.24.0 · source§

impl From<&CStr> for Arc<CStr, Global>

§

impl From<&CStr> for Box<CStr, Global>

1.35.0 · source§

impl From<&String> for String

source§

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

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr, Global>

1.17.0 · source§

impl From<&OsStr> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr, Global>

1.24.0 · source§

impl From<&Path> for Rc<Path, Global>

1.17.0 · source§

impl From<&Path> for gstd::prelude::Box<Path, Global>

1.24.0 · source§

impl From<&Path> for Arc<Path, Global>

source§

impl From<&ChaCha8Rng> for ChaCha8Rng

source§

impl From<&ChaCha12Rng> for ChaCha12Rng

source§

impl From<&ChaCha20Rng> for ChaCha20Rng

1.44.0 · source§

impl From<&mut str> for String

§

impl From<ErrorReplyReason> for ReplyCode

§

impl From<ExecutionError> for ExtError

§

impl From<ExtError> for Error

§

impl From<MemoryError> for ExtError

§

impl From<MessageError> for ExtError

§

impl From<ProgramRentError> for ExtError

§

impl From<ReservationError> for ExtError

§

impl From<SimpleExecutionError> for ErrorReplyReason

§

impl From<SimpleExecutionError> for SignalCode

§

impl From<SimpleProgramCreationError> for ErrorReplyReason

§

impl From<SuccessReplyReason> for ReplyCode

1.45.0 · source§

impl From<Cow<'_, str>> for gstd::prelude::Box<str, Global>

1.45.0 · source§

impl From<Cow<'_, CStr>> for gstd::prelude::Box<CStr, Global>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for gstd::prelude::Box<OsStr, Global>

1.45.0 · source§

impl From<Cow<'_, Path>> for gstd::prelude::Box<Path, Global>

source§

impl From<TryReserveErrorKind> for TryReserveError

§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

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.36.0 · source§

impl From<Infallible> for TryFromSliceError

1.34.0 · source§

impl From<Infallible> for TryFromIntError

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.

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

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

1.6.0 · source§

impl From<f32> for f64

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

1.34.0 · source§

impl From<i8> for AtomicI8

§

impl From<i8> for U128

§

impl From<i8> for U256

§

impl From<i8> for U512

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

1.34.0 · source§

impl From<i16> for AtomicI16

§

impl From<i16> for U128

§

impl From<i16> for U256

§

impl From<i16> for U512

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

1.34.0 · source§

impl From<i32> for AtomicI32

§

impl From<i32> for U128

§

impl From<i32> for U256

§

impl From<i32> for U512

1.26.0 · source§

impl From<i64> for i128

1.34.0 · source§

impl From<i64> for AtomicI64

§

impl From<i64> for U128

§

impl From<i64> for U256

§

impl From<i64> for U512

§

impl From<i128> for U128

§

impl From<i128> for U256

§

impl From<i128> for U512

1.23.0 · source§

impl From<isize> for AtomicIsize

§

impl From<isize> for U128

§

impl From<isize> for U256

§

impl From<isize> for U512

1.34.0 · source§

impl From<!> for Infallible

source§

impl From<!> for TryFromIntError

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 @@ -82,7 +82,7 @@

Examples

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

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

§

impl From<u8> for U128

§

impl From<u8> for U256

§

impl From<u8> for U512

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

1.34.0 · source§

impl From<u16> for AtomicU16

§

impl From<u16> for U128

§

impl From<u16> for U256

§

impl From<u16> for U512

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

1.1.0 · source§

impl From<u32> for Ipv4Addr

1.34.0 · source§

impl From<u32> for AtomicU32

§

impl From<u32> for U128

§

impl From<u32> for U256

§

impl From<u32> for U512

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for gcore::general::ActorId

source§

impl From<u64> for gstd::ActorId

1.34.0 · source§

impl From<u64> for AtomicU64

§

impl From<u64> for U128

§

impl From<u64> for U256

§

impl From<u64> for U512

1.26.0 · source§

impl From<u128> for Ipv6Addr

§

impl From<u128> for U128

§

impl From<u128> for U256

§

impl From<u128> for U512

§

impl From<()> for ExtError

§

impl From<()> for ReplyCode

§

impl From<()> for SignalCode

1.23.0 · source§

impl From<usize> for AtomicUsize

§

impl From<usize> for U128

§

impl From<usize> for U256

§

impl From<usize> for U512

source§

impl From<ActorId> for gstd::ActorId

source§

impl From<CodeId> for gstd::CodeId

source§

impl From<MessageHandle> for gstd::msg::MessageHandle

source§

impl From<MessageId> for gstd::MessageId

source§

impl From<ReservationId> for gstd::ReservationId

source§

impl From<SyscallError> for Result<(), Error>

source§

impl From<MessageHandle> for gcore::general::MessageHandle

source§

impl From<ActorId> for gcore::general::ActorId

source§

impl From<ActorId> for [u8; 32]

source§

impl From<CodeId> for gcore::general::CodeId

source§

impl From<CodeId> for [u8; 32]

source§

impl From<MessageId> for gcore::general::MessageId

source§

impl From<MessageId> for [u8; 32]

source§

impl From<Reservation> for gstd::ReservationId

source§

impl From<ReservationId> for gcore::general::ReservationId

1.24.0 · source§

impl From<CString> for Rc<CStr, Global>

1.20.0 · source§

impl From<CString> for gstd::prelude::Box<CStr, Global>

1.7.0 · source§

impl From<CString> for gstd::prelude::Vec<u8, Global>

1.24.0 · source§

impl From<CString> for Arc<CStr, Global>

source§

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

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

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZeroUsize

1.62.0 · source§

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

1.18.0 · source§

impl From<Box<str, Global>> for String

1.18.0 · source§

impl From<Box<CStr, Global>> for CString

1.18.0 · source§

impl From<Box<OsStr, Global>> for OsString

1.18.0 · source§

impl From<Box<Path, Global>> for PathBuf

§

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

1.21.0 · source§

impl From<String> for Rc<str, Global>

1.20.0 · source§

impl From<String> for gstd::prelude::Box<str, Global>

source§

impl From<String> for gstd::prelude::Box<dyn Error + Sync + Send, Global>

1.6.0 · source§

impl From<String> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

impl From<String> for gstd::prelude::Vec<u8, Global>

1.21.0 · source§

impl From<String> for Arc<str, Global>

source§

impl From<String> for OsString

source§

impl From<String> for PathBuf

§

impl From<String> for Bytes

§

impl From<Vec<u8, Global>> for Bytes

source§

impl From<Vec<u32, Global>> for IndexVec

source§

impl From<Vec<usize, Global>> for IndexVec

1.43.0 · source§

impl From<Vec<NonZeroU8, Global>> for CString

1.62.0 · source§

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

source§

impl From<LayoutError> for TryReserveErrorKind

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

1.16.0 · source§

impl From<Ipv4Addr> for IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

1.16.0 · source§

impl From<Ipv6Addr> for IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

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

1.24.0 · source§

impl From<OsString> for Rc<OsStr, Global>

1.20.0 · source§

impl From<OsString> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<OsString> for Arc<OsStr, Global>

source§

impl From<OsString> for PathBuf

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

§

impl From<Error> for Error

1.74.0-nightly · source§

impl From<Stderr> for Stdio

1.74.0-nightly · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

1.63.0 · source§

impl From<TcpStream> for OwnedFd

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

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.63.0 · source§

impl From<OwnedFd> for Stdio

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

1.63.0 · source§

impl From<UnixListener> for OwnedFd

1.63.0 · source§

impl From<UnixStream> for OwnedFd

1.24.0 · source§

impl From<PathBuf> for Rc<Path, Global>

1.20.0 · source§

impl From<PathBuf> for gstd::prelude::Box<Path, Global>

1.24.0 · source§

impl From<PathBuf> for Arc<Path, Global>

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

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

source§

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

source§

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

source§

impl From<ChaCha8Core> for ChaCha8Rng

source§

impl From<ChaCha12Core> for ChaCha12Rng

source§

impl From<ChaCha20Core> for ChaCha20Rng

source§

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

§

impl From<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for Bytes

§

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

§

impl From<FromDecStrErr> for FromStrRadixErr

§

impl From<FromHexError> for FromStrRadixErr

§

impl From<H128> for [u8; 16]

§

impl From<H160> for H256

§

impl From<H160> for [u8; 20]

source§

impl From<H256> for gstd::ActorId

source§

impl From<H256> for gstd::CodeId

source§

impl From<H256> for gstd::MessageId

§

impl From<H256> for H160

§

impl From<H256> for [u8; 32]

§

impl From<H384> for [u8; 48]

§

impl From<H512> for [u8; 64]

§

impl From<H768> for [u8; 96]

§

impl From<Registry> for PortableRegistry

§

impl From<U128> for U256

§

impl From<U128> for U512

§

impl From<U128> for [u8; 16]

§

impl From<U256> for U512

§

impl From<U256> for [u8; 32]

§

impl From<U512> for [u8; 64]

1.17.0 · source§

impl From<[u8; 4]> for IpAddr

1.9.0 · source§

impl From<[u8; 4]> for Ipv4Addr

1.17.0 · source§

impl From<[u8; 16]> for 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 gcore::general::CodeId

source§

impl From<[u8; 32]> for gcore::general::ReservationId

source§

impl From<[u8; 32]> for gstd::ActorId

source§

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

source§

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

§

impl From<[u8; 32]> for H256

§

impl From<[u8; 32]> for U256

§

impl From<[u8; 48]> for H384

§

impl From<[u8; 64]> for H512

§

impl From<[u8; 64]> for U512

§

impl From<[u8; 96]> for H768

1.17.0 · source§

impl From<[u16; 8]> for 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<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 str> for Cow<'a, str>

§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

§

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 BytesMut

§

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

§

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

§

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

§

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 gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.22.0 · source§

impl<'a> From<Cow<'a, str>> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

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

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Rc<B, Global>where +

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

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

§

impl From<u8> for U128

§

impl From<u8> for U256

§

impl From<u8> for U512

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

1.34.0 · source§

impl From<u16> for AtomicU16

§

impl From<u16> for U128

§

impl From<u16> for U256

§

impl From<u16> for U512

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

1.1.0 · source§

impl From<u32> for Ipv4Addr

1.34.0 · source§

impl From<u32> for AtomicU32

§

impl From<u32> for U128

§

impl From<u32> for U256

§

impl From<u32> for U512

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for gstd::ActorId

1.34.0 · source§

impl From<u64> for AtomicU64

§

impl From<u64> for ActorId

§

impl From<u64> for U128

§

impl From<u64> for U256

§

impl From<u64> for U512

1.26.0 · source§

impl From<u128> for Ipv6Addr

§

impl From<u128> for U128

§

impl From<u128> for U256

§

impl From<u128> for U512

§

impl From<()> for ExtError

§

impl From<()> for ReplyCode

§

impl From<()> for SignalCode

1.23.0 · source§

impl From<usize> for AtomicUsize

§

impl From<usize> for U128

§

impl From<usize> for U256

§

impl From<usize> for U512

§

impl From<SyscallError> for Result<(), Error>

source§

impl From<MessageHandle> for MessageHandle

source§

impl From<ActorId> for ActorId

source§

impl From<ActorId> for [u8; 32]

source§

impl From<CodeId> for CodeId

source§

impl From<CodeId> for [u8; 32]

source§

impl From<MessageId> for MessageId

source§

impl From<MessageId> for [u8; 32]

source§

impl From<Reservation> for gstd::ReservationId

source§

impl From<ReservationId> for ReservationId

1.24.0 · source§

impl From<CString> for Rc<CStr, Global>

1.20.0 · source§

impl From<CString> for gstd::prelude::Box<CStr, Global>

1.7.0 · source§

impl From<CString> for gstd::prelude::Vec<u8, Global>

1.24.0 · source§

impl From<CString> for Arc<CStr, Global>

source§

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

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

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZeroUsize

1.62.0 · source§

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

1.18.0 · source§

impl From<Box<str, Global>> for String

1.18.0 · source§

impl From<Box<CStr, Global>> for CString

1.18.0 · source§

impl From<Box<OsStr, Global>> for OsString

1.18.0 · source§

impl From<Box<Path, Global>> for PathBuf

§

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

1.21.0 · source§

impl From<String> for Rc<str, Global>

1.20.0 · source§

impl From<String> for gstd::prelude::Box<str, Global>

source§

impl From<String> for gstd::prelude::Box<dyn Error + Sync + Send, Global>

1.6.0 · source§

impl From<String> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

impl From<String> for gstd::prelude::Vec<u8, Global>

1.21.0 · source§

impl From<String> for Arc<str, Global>

source§

impl From<String> for OsString

source§

impl From<String> for PathBuf

§

impl From<String> for Bytes

§

impl From<Vec<u8, Global>> for Bytes

source§

impl From<Vec<u32, Global>> for IndexVec

source§

impl From<Vec<usize, Global>> for IndexVec

1.43.0 · source§

impl From<Vec<NonZeroU8, Global>> for CString

1.62.0 · source§

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

source§

impl From<LayoutError> for TryReserveErrorKind

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

1.16.0 · source§

impl From<Ipv4Addr> for IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

1.16.0 · source§

impl From<Ipv6Addr> for IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

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

1.24.0 · source§

impl From<OsString> for Rc<OsStr, Global>

1.20.0 · source§

impl From<OsString> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<OsString> for Arc<OsStr, Global>

source§

impl From<OsString> for PathBuf

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

§

impl From<Error> for Error

1.74.0-nightly · source§

impl From<Stderr> for Stdio

1.74.0-nightly · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

1.63.0 · source§

impl From<TcpStream> for OwnedFd

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

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.63.0 · source§

impl From<OwnedFd> for Stdio

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

1.63.0 · source§

impl From<UnixListener> for OwnedFd

1.63.0 · source§

impl From<UnixStream> for OwnedFd

1.24.0 · source§

impl From<PathBuf> for Rc<Path, Global>

1.20.0 · source§

impl From<PathBuf> for gstd::prelude::Box<Path, Global>

1.24.0 · source§

impl From<PathBuf> for Arc<Path, Global>

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

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

source§

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

source§

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

source§

impl From<ChaCha8Core> for ChaCha8Rng

source§

impl From<ChaCha12Core> for ChaCha12Rng

source§

impl From<ChaCha20Core> for ChaCha20Rng

source§

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

source§

impl From<ActorId> for gstd::ActorId

§

impl From<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for Bytes

source§

impl From<CodeId> for gstd::CodeId

§

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<Error> for gstd::errors::Error

§

impl From<FromDecStrErr> for FromStrRadixErr

§

impl From<FromHexError> for FromStrRadixErr

§

impl From<H128> for [u8; 16]

§

impl From<H160> for H256

§

impl From<H160> for [u8; 20]

source§

impl From<H256> for gstd::ActorId

source§

impl From<H256> for gstd::CodeId

source§

impl From<H256> for gstd::MessageId

§

impl From<H256> for H160

§

impl From<H256> for [u8; 32]

§

impl From<H384> for [u8; 48]

§

impl From<H512> for [u8; 64]

§

impl From<H768> for [u8; 96]

source§

impl From<MessageHandle> for gstd::msg::MessageHandle

source§

impl From<MessageId> for gstd::MessageId

§

impl From<Registry> for PortableRegistry

source§

impl From<ReservationId> for gstd::ReservationId

§

impl From<U128> for U256

§

impl From<U128> for U512

§

impl From<U128> for [u8; 16]

§

impl From<U256> for U512

§

impl From<U256> for [u8; 32]

§

impl From<U512> for [u8; 64]

1.17.0 · source§

impl From<[u8; 4]> for IpAddr

1.9.0 · source§

impl From<[u8; 4]> for Ipv4Addr

1.17.0 · source§

impl From<[u8; 16]> for 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 gstd::ActorId

source§

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

source§

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

§

impl From<[u8; 32]> for CodeId

§

impl From<[u8; 32]> for H256

§

impl From<[u8; 32]> for ReservationId

§

impl From<[u8; 32]> for U256

§

impl From<[u8; 48]> for H384

§

impl From<[u8; 64]> for H512

§

impl From<[u8; 64]> for U512

§

impl From<[u8; 96]> for H768

1.17.0 · source§

impl From<[u16; 8]> for 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<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 str> for Cow<'a, str>

§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

§

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 BytesMut

§

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

§

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

§

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

§

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 gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.22.0 · source§

impl<'a> From<Cow<'a, str>> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

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

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.45.0 · source§

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

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Arc<B, Global>where B: ToOwned + ?Sized, diff --git a/pr-3467/gstd/prelude/default/trait.Default.html b/pr-3467/gstd/prelude/default/trait.Default.html index 9dafa35cf9e..6b7e8361868 100644 --- a/pr-3467/gstd/prelude/default/trait.Default.html +++ b/pr-3467/gstd/prelude/default/trait.Default.html @@ -81,7 +81,7 @@
Examples
impl Default for Kind { fn default() -> Self { Kind::A } }

-

Implementors§

source§

impl Default for &str

1.10.0 · source§

impl Default for &CStr

1.9.0 · source§

impl Default for &OsStr

1.28.0 · source§

impl Default for &mut str

§

impl Default for ErrorReplyReason

§

impl Default for ReplyCode

§

impl Default for SignalCode

§

impl Default for SimpleExecutionError

§

impl Default for SimpleProgramCreationError

§

impl Default for SuccessReplyReason

source§

impl Default for bool

source§

impl Default for char

source§

impl Default for f32

source§

impl Default for f64

source§

impl Default for i8

source§

impl Default for i16

source§

impl Default for i32

source§

impl Default for i64

source§

impl Default for i128

source§

impl Default for isize

source§

impl Default for u8

source§

impl Default for u16

source§

impl Default for u32

source§

impl Default for u64

source§

impl Default for u128

source§

impl Default for ()

source§

impl Default for usize

source§

impl Default for gcore::general::ActorId

source§

impl Default for gcore::general::CodeId

source§

impl Default for gcore::general::MessageId

source§

impl Default for ReservationId

source§

impl Default for gstd::ActorId

source§

impl Default for gstd::CodeId

source§

impl Default for gstd::MessageId

source§

impl Default for Reservations

1.10.0 · source§

impl Default for CString

source§

impl Default for Error

source§

impl Default for SipHasher

1.33.0 · source§

impl Default for PhantomPinned

source§

impl Default for RangeFull

1.17.0 · source§

impl Default for gstd::prelude::Box<str, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<CStr, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<OsStr, Global>

source§

impl Default for String

1.3.0 · source§

impl Default for Duration

source§

impl Default for alloc::alloc::Global

source§

impl Default for AtomicBool

1.34.0 · source§

impl Default for AtomicI8

1.34.0 · source§

impl Default for AtomicI16

1.34.0 · source§

impl Default for AtomicI32

1.34.0 · source§

impl Default for AtomicI64

source§

impl Default for AtomicIsize

1.34.0 · source§

impl Default for AtomicU8

1.34.0 · source§

impl Default for AtomicU16

1.34.0 · source§

impl Default for AtomicU32

1.34.0 · source§

impl Default for AtomicU64

source§

impl Default for AtomicUsize

1.28.0 · source§

impl Default for System

1.13.0 · source§

impl Default for DefaultHasher

1.7.0 · source§

impl Default for std::collections::hash::map::RandomState

1.9.0 · source§

impl Default for OsString

source§

impl Default for FileTimes

source§

impl Default for std::io::util::Empty

source§

impl Default for Sink

1.17.0 · source§

impl Default for PathBuf

1.73.0 · source§

impl Default for ExitStatus

The default value is one which indicates successful completion.

+

Implementors§

source§

impl Default for &str

1.10.0 · source§

impl Default for &CStr

1.9.0 · source§

impl Default for &OsStr

1.28.0 · source§

impl Default for &mut str

§

impl Default for ErrorReplyReason

§

impl Default for ReplyCode

§

impl Default for SignalCode

§

impl Default for SimpleExecutionError

§

impl Default for SimpleProgramCreationError

§

impl Default for SuccessReplyReason

source§

impl Default for bool

source§

impl Default for char

source§

impl Default for f32

source§

impl Default for f64

source§

impl Default for i8

source§

impl Default for i16

source§

impl Default for i32

source§

impl Default for i64

source§

impl Default for i128

source§

impl Default for isize

source§

impl Default for u8

source§

impl Default for u16

source§

impl Default for u32

source§

impl Default for u64

source§

impl Default for u128

source§

impl Default for ()

source§

impl Default for usize

source§

impl Default for gstd::ActorId

source§

impl Default for gstd::CodeId

source§

impl Default for gstd::MessageId

source§

impl Default for Reservations

1.10.0 · source§

impl Default for CString

source§

impl Default for Error

source§

impl Default for SipHasher

1.33.0 · source§

impl Default for PhantomPinned

source§

impl Default for RangeFull

1.17.0 · source§

impl Default for gstd::prelude::Box<str, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<CStr, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<OsStr, Global>

source§

impl Default for String

1.3.0 · source§

impl Default for Duration

source§

impl Default for alloc::alloc::Global

source§

impl Default for AtomicBool

1.34.0 · source§

impl Default for AtomicI8

1.34.0 · source§

impl Default for AtomicI16

1.34.0 · source§

impl Default for AtomicI32

1.34.0 · source§

impl Default for AtomicI64

source§

impl Default for AtomicIsize

1.34.0 · source§

impl Default for AtomicU8

1.34.0 · source§

impl Default for AtomicU16

1.34.0 · source§

impl Default for AtomicU32

1.34.0 · source§

impl Default for AtomicU64

source§

impl Default for AtomicUsize

1.28.0 · source§

impl Default for System

1.13.0 · source§

impl Default for DefaultHasher

1.7.0 · source§

impl Default for std::collections::hash::map::RandomState

1.9.0 · source§

impl Default for OsString

source§

impl Default for FileTimes

source§

impl Default for std::io::util::Empty

source§

impl Default for Sink

1.17.0 · source§

impl Default for PathBuf

1.73.0 · source§

impl Default for ExitStatus

The default value is one which indicates successful completion.

1.10.0 · source§

impl Default for Condvar

source§

impl Default for IgnoredAny

source§

impl Default for ThreadRng

source§

impl Default for OsRng

§

impl Default for AHasher

Provides a default Hasher with fixed keys. This is typically used in conjunction with BuildHasherDefault to create [AHasher]s in order to hash the keys of the map.

@@ -95,14 +95,14 @@

Example

let mut map: HashMap<i32, i32, BuildHasherDefault<AHasher>> = HashMap::default(); map.insert(12, 34);
-
§

impl Default for AtomicWaker

§

impl Default for BigEndian

§

impl Default for BlockNumberWithHash

§

impl Default for Bytes

§

impl Default for BytesMut

§

impl Default for Const

§

impl Default for ErrorBytes

§

impl Default for ErrorWithBlockNumberAndValue

§

impl Default for ErrorWithGas

§

impl Default for ErrorWithHandle

§

impl Default for ErrorWithHash

§

impl Default for ErrorWithReplyCode

§

impl Default for ErrorWithSignalCode

§

impl Default for ErrorWithTwoHashes

§

impl Default for FinderBuilder

§

impl Default for Global

§

impl Default for H128

§

impl Default for H160

§

impl Default for H256

§

impl Default for H384

§

impl Default for H512

§

impl Default for H768

§

impl Default for HashWithValue

§

impl Default for LittleEndian

§

impl Default for LocalPool

§

impl Default for Lsb0

§

impl Default for Msb0

§

impl Default for Mut

§

impl Default for NullPtrError

§

impl Default for OnceBool

§

impl Default for OnceNonZeroUsize

§

impl Default for PollNext

§

impl Default for PortableRegistryBuilder

§

impl Default for Prefilter

§

impl Default for RandomState

Creates an instance of RandomState using keys obtained from the random number generator. +

§

impl Default for ActorId

§

impl Default for AtomicWaker

§

impl Default for BigEndian

§

impl Default for BlockNumberWithHash

§

impl Default for Bytes

§

impl Default for BytesMut

§

impl Default for CodeId

§

impl Default for Const

§

impl Default for ErrorBytes

§

impl Default for ErrorWithBlockNumberAndValue

§

impl Default for ErrorWithGas

§

impl Default for ErrorWithHandle

§

impl Default for ErrorWithHash

§

impl Default for ErrorWithReplyCode

§

impl Default for ErrorWithSignalCode

§

impl Default for ErrorWithTwoHashes

§

impl Default for FinderBuilder

§

impl Default for Global

§

impl Default for H128

§

impl Default for H160

§

impl Default for H256

§

impl Default for H384

§

impl Default for H512

§

impl Default for H768

§

impl Default for HashWithValue

§

impl Default for LittleEndian

§

impl Default for LocalPool

§

impl Default for Lsb0

§

impl Default for MessageId

§

impl Default for Msb0

§

impl Default for Mut

§

impl Default for NullPtrError

§

impl Default for OnceBool

§

impl Default for OnceNonZeroUsize

§

impl Default for PollNext

§

impl Default for PortableRegistryBuilder

§

impl Default for Prefilter

§

impl Default for RandomState

Creates an instance of RandomState using keys obtained from the random number generator. Each instance created in this way will have a unique set of keys. (But the resulting instance can be used to create many hashers each or which will have the same keys.)

This is the same as [RandomState::new()]

NOTE: For safety this trait impl is only available available if either of the flags runtime-rng (on by default) or compile-time-rng are enabled. This is to prevent weakly keyed maps from being accidentally created. Instead one of constructors for [RandomState] must be used.

-
§

impl Default for Registry

§

impl Default for ThreadPoolBuilder

§

impl Default for TwoHashes

§

impl Default for TwoHashesWithValue

§

impl Default for U128

§

impl Default for U256

§

impl Default for U512

§

impl Default for vec128_storage

§

impl Default for vec256_storage

§

impl Default for vec512_storage

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::Iter<'a, K, V>where +

§

impl Default for Registry

§

impl Default for ReservationId

§

impl Default for ThreadPoolBuilder

§

impl Default for TwoHashes

§

impl Default for TwoHashesWithValue

§

impl Default for U128

§

impl Default for U256

§

impl Default for U512

§

impl Default for vec128_storage

§

impl Default for vec256_storage

§

impl Default for vec512_storage

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::Iter<'a, K, V>where K: 'a, V: 'a,

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::IterMut<'a, K, V>where K: 'a, diff --git a/pr-3467/gstd/prelude/enum.Result.html b/pr-3467/gstd/prelude/enum.Result.html index 0c20a32d2ec..d55189dd189 100644 --- a/pr-3467/gstd/prelude/enum.Result.html +++ b/pr-3467/gstd/prelude/enum.Result.html @@ -513,7 +513,7 @@
Examples
F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

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

source§

fn from(res: &StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
§

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

§

fn from(result: Result<[u8; 4], u32>) -> ErrorWithReplyCode

Converts to this type from the input type.
§

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

§

fn from(value: Result<(), u32>) -> ErrorBytes

Converts to this type from the input type.
§

impl<T1, T2> From<Result<(T1, T2), u32>> for ErrorWithTwoHasheswhere T1: Into<[u8; 32]>, T2: Into<[u8; 32]>,

§

fn from(result: Result<(T1, T2), u32>) -> ErrorWithTwoHashes

Converts to this type from the input type.
§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

fn from(result: Result<(u128, u32), u32>) -> ErrorWithBlockNumberAndValue

Converts to this type from the input type.
§

impl<T> From<Result<T, u32>> for ErrorWithHashwhere - T: Into<[u8; 32]>,

§

fn from(result: Result<T, u32>) -> ErrorWithHash

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithHandle

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithSignalCode

Converts to this type from the input type.
§

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

§

fn from(result: Result<u64, u32>) -> ErrorWithGas

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
source§

impl From<SyscallError> for Result<(), Error>

source§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where + T: Into<[u8; 32]>,

§

fn from(result: Result<T, u32>) -> ErrorWithHash

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithHandle

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithSignalCode

Converts to this type from the input type.
§

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

§

fn from(result: Result<u64, u32>) -> ErrorWithGas

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
§

impl From<SyscallError> for Result<(), Error>

§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where V: FromIterator<A>,

source§

fn from_iter<I>(iter: I) -> Result<V, E>where I: IntoIterator<Item = Result<A, E>>,

Takes each element in the Iterator: if it is an Err, no further elements are taken, and the Err is returned. Should no Err occur, a diff --git a/pr-3467/gstd/prelude/fmt/trait.Debug.html b/pr-3467/gstd/prelude/fmt/trait.Debug.html index 18b1e00c6ad..1707f4b0f63 100644 --- a/pr-3467/gstd/prelude/fmt/trait.Debug.html +++ b/pr-3467/gstd/prelude/fmt/trait.Debug.html @@ -103,7 +103,7 @@

Examples
1.987, 2.983, )");
-

Implementors§

source§

impl Debug for gcore::errors::Error

source§

impl Debug for gstd::errors::Error

§

impl Debug for ErrorReplyReason

§

impl Debug for ExecutionError

§

impl Debug for ExtError

§

impl Debug for MemoryError

§

impl Debug for MessageError

§

impl Debug for ProgramRentError

§

impl Debug for ReplyCode

§

impl Debug for ReservationError

§

impl Debug for SignalCode

§

impl Debug for SimpleExecutionError

§

impl Debug for SimpleProgramCreationError

§

impl Debug for SuccessReplyReason

source§

impl Debug for AsciiChar

source§

impl Debug for gstd::prelude::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

§

impl Debug for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Debug for Infallible

1.16.0 · source§

impl Debug for c_void

source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for SearchStep

1.28.0 · source§

impl Debug for gstd::prelude::fmt::Alignment

source§

impl Debug for Which

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

source§

impl Debug for core::net::socket_addr::SocketAddr

source§

impl Debug for core::sync::atomic::Ordering

1.65.0 · source§

impl Debug for BacktraceStatus

source§

impl Debug for VarError

source§

impl Debug for SeekFrom

source§

impl Debug for ErrorKind

source§

impl Debug for Shutdown

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

1.12.0 · source§

impl Debug for RecvTimeoutError

source§

impl Debug for std::sync::mpsc::TryRecvError

source§

impl Debug for _Unwind_Reason_Code

source§

impl Debug for hex::error::FromHexError

source§

impl Debug for BernoulliError

source§

impl Debug for WeightedError

source§

impl Debug for IndexVec

source§

impl Debug for IndexVecIntoIter

source§

impl Debug for bool

source§

impl Debug for char

source§

impl Debug for f32

source§

impl Debug for f64

source§

impl Debug for i8

source§

impl Debug for i16

source§

impl Debug for i32

source§

impl Debug for i64

source§

impl Debug for i128

source§

impl Debug for isize

source§

impl Debug for !

source§

impl Debug for str

source§

impl Debug for u8

source§

impl Debug for u16

source§

impl Debug for u32

source§

impl Debug for u64

source§

impl Debug for u128

source§

impl Debug for ()

source§

impl Debug for usize

source§

impl Debug for gcore::general::ActorId

source§

impl Debug for gcore::general::CodeId

source§

impl Debug for gcore::general::MessageHandle

source§

impl Debug for gcore::general::MessageId

source§

impl Debug for gcore::general::ReservationId

source§

impl Debug for SyscallError

source§

impl Debug for gstd::msg::MessageHandle

source§

impl Debug for gstd::ActorId

source§

impl Debug for gstd::CodeId

§

impl Debug for GasMultiplier

source§

impl Debug for gstd::MessageId

§

impl Debug for Percent

source§

impl Debug for Reservation

source§

impl Debug for gstd::ReservationId

source§

impl Debug for Reservations

§

impl Debug for MetaType

source§

impl Debug for TypeId

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for gstd::prelude::ascii::EscapeDefault

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for gstd::prelude::char::EscapeDebug

source§

impl Debug for gstd::prelude::char::EscapeDefault

source§

impl Debug for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

source§

impl Debug for ToLowercase

source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

1.57.0 · source§

impl Debug for gstd::prelude::collections::TryReserveError

1.3.0 · source§

impl Debug for CStr

source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

source§

impl Debug for SipHasher

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.34.0 · source§

impl Debug for NonZeroI8

1.34.0 · source§

impl Debug for NonZeroI16

1.34.0 · source§

impl Debug for NonZeroI32

1.34.0 · source§

impl Debug for NonZeroI64

1.34.0 · source§

impl Debug for NonZeroI128

1.34.0 · source§

impl Debug for NonZeroIsize

1.28.0 · source§

impl Debug for NonZeroU8

1.28.0 · source§

impl Debug for NonZeroU16

1.28.0 · source§

impl Debug for NonZeroU32

1.28.0 · source§

impl Debug for NonZeroU64

1.28.0 · source§

impl Debug for NonZeroU128

1.28.0 · source§

impl Debug for NonZeroUsize

source§

impl Debug for ParseFloatError

source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

source§

impl Debug for RangeFull

source§

impl Debug for gstd::prelude::ptr::Alignment

source§

impl Debug for TimSortRun

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

source§

impl Debug for ParseBoolError

source§

impl Debug for Utf8Chunks<'_>

source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for gstd::prelude::string::Drain<'_>

source§

impl Debug for FromUtf8Error

source§

impl Debug for FromUtf16Error

source§

impl Debug for String

1.36.0 · source§

impl Debug for Context<'_>

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.27.0 · source§

impl Debug for Duration

1.66.0 · source§

impl Debug for TryFromFloatSecsError

source§

impl Debug for alloc::alloc::Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

source§

impl Debug for core::alloc::AllocError

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

1.27.0 · source§

impl Debug for __m256i

1.74.0-nightly · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.74.0-nightly · source§

impl Debug for __m512d

1.74.0-nightly · source§

impl Debug for __m512i

source§

impl Debug for Ipv4Addr

source§

impl Debug for Ipv6Addr

source§

impl Debug for AddrParseError

source§

impl Debug for SocketAddrV4

source§

impl Debug for SocketAddrV6

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.28.0 · source§

impl Debug for System

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for std::collections::hash::map::RandomState

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for OsStr

source§

impl Debug for OsString

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

source§

impl Debug for File

source§

impl Debug for FileTimes

1.1.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

source§

impl Debug for OpenOptions

source§

impl Debug for Permissions

source§

impl Debug for ReadDir

1.56.0 · source§

impl Debug for WriterPanicked

source§

impl Debug for std::io::error::Error

source§

impl Debug for BorrowedBuf<'_>

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

source§

impl Debug for std::io::util::Empty

1.16.0 · source§

impl Debug for std::io::util::Repeat

source§

impl Debug for std::io::util::Sink

source§

impl Debug for IntoIncoming

source§

impl Debug for TcpListener

source§

impl Debug for TcpStream

source§

impl Debug for UdpSocket

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

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

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

source§

impl Debug for UCred

1.13.0 · source§

impl Debug for Components<'_>

source§

impl Debug for Display<'_>

1.13.0 · source§

impl Debug for std::path::Iter<'_>

source§

impl Debug for std::path::Path

source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.5.0 · source§

impl Debug for WaitTimeoutResult

source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for std::sync::once::Once

1.16.0 · source§

impl Debug for OnceState

1.26.0 · source§

impl Debug for AccessError

1.63.0 · source§

impl Debug for Scope<'_, '_>

source§

impl Debug for Builder

source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

source§

impl Debug for getrandom::error::Error

source§

impl Debug for IgnoredAny

source§

impl Debug for serde::de::value::Error

source§

impl Debug for Bernoulli

source§

impl Debug for Open01

source§

impl Debug for OpenClosed01

source§

impl Debug for Alphanumeric

source§

impl Debug for Standard

source§

impl Debug for UniformChar

source§

impl Debug for UniformDuration

source§

impl Debug for ReadError

source§

impl Debug for StepRng

source§

impl Debug for SmallRng

source§

impl Debug for StdRng

source§

impl Debug for ThreadRng

source§

impl Debug for ChaCha8Core

source§

impl Debug for ChaCha8Rng

source§

impl Debug for ChaCha12Core

source§

impl Debug for ChaCha12Rng

source§

impl Debug for ChaCha20Core

source§

impl Debug for ChaCha20Rng

source§

impl Debug for rand_core::error::Error

source§

impl Debug for OsRng

source§

impl Debug for Arguments<'_>

source§

impl Debug for gstd::prelude::fmt::Error

§

impl Debug for AHasher

§

impl Debug for AbortHandle

§

impl Debug for AbortRegistration

§

impl Debug for Aborted

§

impl Debug for AllocError

§

impl Debug for Alphabet

§

impl Debug for AtomicWaker

§

impl Debug for BigEndian

§

impl Debug for BitSafeU8

§

impl Debug for BitSafeU16

§

impl Debug for BitSafeU32

§

impl Debug for BitSafeU64

§

impl Debug for BitSafeUsize

§

impl Debug for BlockNumberWithHash

§

impl Debug for Bytes

§

impl Debug for BytesMut

§

impl Debug for Canceled

§

impl Debug for Const

§

impl Debug for DIR

§

impl Debug for Dl_info

§

impl Debug for Elf32_Chdr

§

impl Debug for Elf32_Ehdr

§

impl Debug for Elf32_Phdr

§

impl Debug for Elf32_Shdr

§

impl Debug for Elf32_Sym

§

impl Debug for Elf64_Chdr

§

impl Debug for Elf64_Ehdr

§

impl Debug for Elf64_Phdr

§

impl Debug for Elf64_Shdr

§

impl Debug for Elf64_Sym

§

impl Debug for Empty

§

impl Debug for Enter

§

impl Debug for EnterError

§

impl Debug for EnvVars

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for ErrorBytes

§

impl Debug for ErrorWithBlockNumberAndValue

§

impl Debug for ErrorWithGas

§

impl Debug for ErrorWithHandle

§

impl Debug for ErrorWithHash

§

impl Debug for ErrorWithReplyCode

§

impl Debug for ErrorWithSignalCode

§

impl Debug for ErrorWithTwoHashes

§

impl Debug for FILE

§

impl Debug for FinderBuilder

§

impl Debug for FromDecStrErr

§

impl Debug for FromHexError

§

impl Debug for FromHexError

§

impl Debug for FromStrRadixErr

§

impl Debug for FromStrRadixErrKind

§

impl Debug for Global

§

impl Debug for H128

§

impl Debug for H160

§

impl Debug for H256

§

impl Debug for H384

§

impl Debug for H512

§

impl Debug for H768

§

impl Debug for HashWithValue

§

impl Debug for LittleEndian

§

impl Debug for LocalPool

§

impl Debug for LocalSpawner

§

impl Debug for Lsb0

§

impl Debug for MetaForm

§

impl Debug for Msb0

§

impl Debug for Mut

§

impl Debug for NullPtrError

§

impl Debug for OnceBool

§

impl Debug for OnceNonZeroUsize

§

impl Debug for OptionBool

§

impl Debug for PathError

§

impl Debug for PollNext

§

impl Debug for PortableForm

§

impl Debug for PortableRegistry

§

impl Debug for PortableRegistryBuilder

§

impl Debug for PortableType

§

impl Debug for Prefilter

§

impl Debug for RandomState

§

impl Debug for Registry

§

impl Debug for Repeat

§

impl Debug for SendError

§

impl Debug for Sink

§

impl Debug for SpawnError

§

impl Debug for ThreadPool

§

impl Debug for ThreadPoolBuilder

§

impl Debug for TryRecvError

§

impl Debug for TwoHashes

§

impl Debug for TwoHashesWithValue

§

impl Debug for TypeDefPrimitive

§

impl Debug for U128

§

impl Debug for U256

§

impl Debug for U512

§

impl Debug for UninitSlice

§

impl Debug for __c_anonymous_ifr_ifru

§

impl Debug for __c_anonymous_ifru_map

§

impl Debug for __c_anonymous_ptrace_syscall_info_data

§

impl Debug for __c_anonymous_ptrace_syscall_info_entry

§

impl Debug for __c_anonymous_ptrace_syscall_info_exit

§

impl Debug for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Debug for __c_anonymous_sockaddr_can_j1939

§

impl Debug for __c_anonymous_sockaddr_can_tp

§

impl Debug for __exit_status

§

impl Debug for __timeval

§

impl Debug for _libc_fpstate

§

impl Debug for _libc_fpxreg

§

impl Debug for _libc_xmmreg

§

impl Debug for addrinfo

§

impl Debug for af_alg_iv

§

impl Debug for aiocb

§

impl Debug for arpd_request

§

impl Debug for arphdr

§

impl Debug for arpreq

§

impl Debug for arpreq_old

§

impl Debug for can_filter

§

impl Debug for clone_args

§

impl Debug for cmsghdr

§

impl Debug for cpu_set_t

§

impl Debug for dirent

§

impl Debug for dirent64

§

impl Debug for dl_phdr_info

§

impl Debug for dqblk

source§

impl Debug for dyn Any

source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Sync + Send

§

impl Debug for epoll_event

§

impl Debug for fanotify_event_metadata

§

impl Debug for fanotify_response

§

impl Debug for fd_set

§

impl Debug for ff_condition_effect

§

impl Debug for ff_constant_effect

§

impl Debug for ff_effect

§

impl Debug for ff_envelope

§

impl Debug for ff_periodic_effect

§

impl Debug for ff_ramp_effect

§

impl Debug for ff_replay

§

impl Debug for ff_rumble_effect

§

impl Debug for ff_trigger

§

impl Debug for file_clone_range

§

impl Debug for flock

§

impl Debug for flock64

§

impl Debug for fpos64_t

§

impl Debug for fpos_t

§

impl Debug for fsid_t

§

impl Debug for genlmsghdr

§

impl Debug for glob64_t

§

impl Debug for glob_t

§

impl Debug for group

§

impl Debug for hostent

§

impl Debug for hwtstamp_config

§

impl Debug for if_nameindex

§

impl Debug for ifaddrs

§

impl Debug for ifreq

§

impl Debug for in6_addr

§

impl Debug for in6_ifreq

§

impl Debug for in6_pktinfo

§

impl Debug for in6_rtmsg

§

impl Debug for in_addr

§

impl Debug for in_pktinfo

§

impl Debug for inotify_event

§

impl Debug for input_absinfo

§

impl Debug for input_event

§

impl Debug for input_id

§

impl Debug for input_keymap_entry

§

impl Debug for input_mask

§

impl Debug for iovec

§

impl Debug for ip_mreq

§

impl Debug for ip_mreq_source

§

impl Debug for ip_mreqn

§

impl Debug for ipc_perm

§

impl Debug for ipv6_mreq

§

impl Debug for itimerspec

§

impl Debug for itimerval

§

impl Debug for j1939_filter

§

impl Debug for lconv

§

impl Debug for linger

§

impl Debug for mallinfo

§

impl Debug for mallinfo2

§

impl Debug for mcontext_t

§

impl Debug for mmsghdr

§

impl Debug for mntent

§

impl Debug for mq_attr

§

impl Debug for msghdr

§

impl Debug for msginfo

§

impl Debug for msqid_ds

§

impl Debug for nl_mmap_hdr

§

impl Debug for nl_mmap_req

§

impl Debug for nl_pktinfo

§

impl Debug for nlattr

§

impl Debug for nlmsgerr

§

impl Debug for nlmsghdr

§

impl Debug for ntptimeval

§

impl Debug for open_how

§

impl Debug for option

§

impl Debug for packet_mreq

§

impl Debug for passwd

§

impl Debug for pollfd

§

impl Debug for posix_spawn_file_actions_t

§

impl Debug for posix_spawnattr_t

§

impl Debug for protoent

§

impl Debug for pthread_attr_t

§

impl Debug for pthread_barrier_t

§

impl Debug for pthread_barrierattr_t

§

impl Debug for pthread_cond_t

§

impl Debug for pthread_condattr_t

§

impl Debug for pthread_mutex_t

§

impl Debug for pthread_mutexattr_t

§

impl Debug for pthread_rwlock_t

§

impl Debug for pthread_rwlockattr_t

§

impl Debug for ptrace_peeksiginfo_args

§

impl Debug for ptrace_rseq_configuration

§

impl Debug for ptrace_syscall_info

§

impl Debug for regex_t

§

impl Debug for regmatch_t

§

impl Debug for rlimit

§

impl Debug for rlimit64

§

impl Debug for rtentry

§

impl Debug for rusage

§

impl Debug for sched_param

§

impl Debug for sctp_authinfo

§

impl Debug for sctp_initmsg

§

impl Debug for sctp_nxtinfo

§

impl Debug for sctp_prinfo

§

impl Debug for sctp_rcvinfo

§

impl Debug for sctp_sndinfo

§

impl Debug for sctp_sndrcvinfo

§

impl Debug for seccomp_data

§

impl Debug for seccomp_notif_sizes

§

impl Debug for sem_t

§

impl Debug for sembuf

§

impl Debug for semid_ds

§

impl Debug for seminfo

§

impl Debug for servent

§

impl Debug for shmid_ds

§

impl Debug for sigaction

§

impl Debug for sigevent

§

impl Debug for siginfo_t

§

impl Debug for signalfd_siginfo

§

impl Debug for sigset_t

§

impl Debug for sigval

§

impl Debug for sock_extended_err

§

impl Debug for sock_filter

§

impl Debug for sock_fprog

§

impl Debug for sockaddr

§

impl Debug for sockaddr_alg

§

impl Debug for sockaddr_in

§

impl Debug for sockaddr_in6

§

impl Debug for sockaddr_ll

§

impl Debug for sockaddr_nl

§

impl Debug for sockaddr_storage

§

impl Debug for sockaddr_un

§

impl Debug for sockaddr_vm

§

impl Debug for spwd

§

impl Debug for stack_t

§

impl Debug for stat

§

impl Debug for stat64

§

impl Debug for statfs

§

impl Debug for statfs64

§

impl Debug for statvfs

§

impl Debug for statvfs64

§

impl Debug for statx

§

impl Debug for statx_timestamp

§

impl Debug for sysinfo

§

impl Debug for termios

§

impl Debug for termios2

§

impl Debug for timespec

§

impl Debug for timeval

§

impl Debug for timex

§

impl Debug for timezone

§

impl Debug for tm

§

impl Debug for tms

§

impl Debug for ucontext_t

§

impl Debug for ucred

§

impl Debug for uinput_abs_setup

§

impl Debug for uinput_ff_erase

§

impl Debug for uinput_ff_upload

§

impl Debug for uinput_setup

§

impl Debug for uinput_user_dev

§

impl Debug for user

§

impl Debug for user_fpregs_struct

§

impl Debug for user_regs_struct

§

impl Debug for utimbuf

§

impl Debug for utmpx

§

impl Debug for utsname

§

impl Debug for winsize

source§

impl<'a> Debug for Component<'a>

source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Unexpected<'a>

source§

impl<'a> Debug for IndexVecIter<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

source§

impl<'a> Debug for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Debug for gstd::prelude::str::Lines<'a>

source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

source§

impl<'a> Debug for std::net::tcp::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

§

impl<'a> Debug for WakerRef<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>where +

Implementors§

source§

impl Debug for gstd::errors::Error

§

impl Debug for ErrorReplyReason

§

impl Debug for ExecutionError

§

impl Debug for ExtError

§

impl Debug for MemoryError

§

impl Debug for MessageError

§

impl Debug for ProgramRentError

§

impl Debug for ReplyCode

§

impl Debug for ReservationError

§

impl Debug for SignalCode

§

impl Debug for SimpleExecutionError

§

impl Debug for SimpleProgramCreationError

§

impl Debug for SuccessReplyReason

source§

impl Debug for AsciiChar

source§

impl Debug for gstd::prelude::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

§

impl Debug for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Debug for Infallible

1.16.0 · source§

impl Debug for c_void

source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for SearchStep

1.28.0 · source§

impl Debug for gstd::prelude::fmt::Alignment

source§

impl Debug for Which

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

source§

impl Debug for core::net::socket_addr::SocketAddr

source§

impl Debug for core::sync::atomic::Ordering

1.65.0 · source§

impl Debug for BacktraceStatus

source§

impl Debug for VarError

source§

impl Debug for SeekFrom

source§

impl Debug for ErrorKind

source§

impl Debug for Shutdown

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

1.12.0 · source§

impl Debug for RecvTimeoutError

source§

impl Debug for std::sync::mpsc::TryRecvError

source§

impl Debug for _Unwind_Reason_Code

source§

impl Debug for hex::error::FromHexError

source§

impl Debug for BernoulliError

source§

impl Debug for WeightedError

source§

impl Debug for IndexVec

source§

impl Debug for IndexVecIntoIter

source§

impl Debug for bool

source§

impl Debug for char

source§

impl Debug for f32

source§

impl Debug for f64

source§

impl Debug for i8

source§

impl Debug for i16

source§

impl Debug for i32

source§

impl Debug for i64

source§

impl Debug for i128

source§

impl Debug for isize

source§

impl Debug for !

source§

impl Debug for str

source§

impl Debug for u8

source§

impl Debug for u16

source§

impl Debug for u32

source§

impl Debug for u64

source§

impl Debug for u128

source§

impl Debug for ()

source§

impl Debug for usize

§

impl Debug for SyscallError

source§

impl Debug for gstd::msg::MessageHandle

source§

impl Debug for gstd::ActorId

source§

impl Debug for gstd::CodeId

§

impl Debug for GasMultiplier

source§

impl Debug for gstd::MessageId

§

impl Debug for Percent

source§

impl Debug for Reservation

source§

impl Debug for gstd::ReservationId

source§

impl Debug for Reservations

§

impl Debug for MetaType

source§

impl Debug for TypeId

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for gstd::prelude::ascii::EscapeDefault

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for gstd::prelude::char::EscapeDebug

source§

impl Debug for gstd::prelude::char::EscapeDefault

source§

impl Debug for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

source§

impl Debug for ToLowercase

source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

1.57.0 · source§

impl Debug for gstd::prelude::collections::TryReserveError

1.3.0 · source§

impl Debug for CStr

source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

source§

impl Debug for SipHasher

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.34.0 · source§

impl Debug for NonZeroI8

1.34.0 · source§

impl Debug for NonZeroI16

1.34.0 · source§

impl Debug for NonZeroI32

1.34.0 · source§

impl Debug for NonZeroI64

1.34.0 · source§

impl Debug for NonZeroI128

1.34.0 · source§

impl Debug for NonZeroIsize

1.28.0 · source§

impl Debug for NonZeroU8

1.28.0 · source§

impl Debug for NonZeroU16

1.28.0 · source§

impl Debug for NonZeroU32

1.28.0 · source§

impl Debug for NonZeroU64

1.28.0 · source§

impl Debug for NonZeroU128

1.28.0 · source§

impl Debug for NonZeroUsize

source§

impl Debug for ParseFloatError

source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

source§

impl Debug for RangeFull

source§

impl Debug for gstd::prelude::ptr::Alignment

source§

impl Debug for TimSortRun

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

source§

impl Debug for ParseBoolError

source§

impl Debug for Utf8Chunks<'_>

source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for gstd::prelude::string::Drain<'_>

source§

impl Debug for FromUtf8Error

source§

impl Debug for FromUtf16Error

source§

impl Debug for String

1.36.0 · source§

impl Debug for Context<'_>

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.27.0 · source§

impl Debug for Duration

1.66.0 · source§

impl Debug for TryFromFloatSecsError

source§

impl Debug for alloc::alloc::Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

source§

impl Debug for core::alloc::AllocError

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

1.27.0 · source§

impl Debug for __m256i

1.74.0-nightly · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.74.0-nightly · source§

impl Debug for __m512d

1.74.0-nightly · source§

impl Debug for __m512i

source§

impl Debug for Ipv4Addr

source§

impl Debug for Ipv6Addr

source§

impl Debug for AddrParseError

source§

impl Debug for SocketAddrV4

source§

impl Debug for SocketAddrV6

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.28.0 · source§

impl Debug for System

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for std::collections::hash::map::RandomState

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for OsStr

source§

impl Debug for OsString

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

source§

impl Debug for File

source§

impl Debug for FileTimes

1.1.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

source§

impl Debug for OpenOptions

source§

impl Debug for Permissions

source§

impl Debug for ReadDir

1.56.0 · source§

impl Debug for WriterPanicked

source§

impl Debug for std::io::error::Error

source§

impl Debug for BorrowedBuf<'_>

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

source§

impl Debug for std::io::util::Empty

1.16.0 · source§

impl Debug for std::io::util::Repeat

source§

impl Debug for std::io::util::Sink

source§

impl Debug for IntoIncoming

source§

impl Debug for TcpListener

source§

impl Debug for TcpStream

source§

impl Debug for UdpSocket

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

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

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

source§

impl Debug for UCred

1.13.0 · source§

impl Debug for Components<'_>

source§

impl Debug for Display<'_>

1.13.0 · source§

impl Debug for std::path::Iter<'_>

source§

impl Debug for std::path::Path

source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.5.0 · source§

impl Debug for WaitTimeoutResult

source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for std::sync::once::Once

1.16.0 · source§

impl Debug for OnceState

1.26.0 · source§

impl Debug for AccessError

1.63.0 · source§

impl Debug for Scope<'_, '_>

source§

impl Debug for Builder

source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

source§

impl Debug for getrandom::error::Error

source§

impl Debug for IgnoredAny

source§

impl Debug for serde::de::value::Error

source§

impl Debug for Bernoulli

source§

impl Debug for Open01

source§

impl Debug for OpenClosed01

source§

impl Debug for Alphanumeric

source§

impl Debug for Standard

source§

impl Debug for UniformChar

source§

impl Debug for UniformDuration

source§

impl Debug for ReadError

source§

impl Debug for StepRng

source§

impl Debug for SmallRng

source§

impl Debug for StdRng

source§

impl Debug for ThreadRng

source§

impl Debug for ChaCha8Core

source§

impl Debug for ChaCha8Rng

source§

impl Debug for ChaCha12Core

source§

impl Debug for ChaCha12Rng

source§

impl Debug for ChaCha20Core

source§

impl Debug for ChaCha20Rng

source§

impl Debug for rand_core::error::Error

source§

impl Debug for OsRng

source§

impl Debug for Arguments<'_>

source§

impl Debug for gstd::prelude::fmt::Error

§

impl Debug for AHasher

§

impl Debug for AbortHandle

§

impl Debug for AbortRegistration

§

impl Debug for Aborted

§

impl Debug for ActorId

§

impl Debug for AllocError

§

impl Debug for Alphabet

§

impl Debug for AtomicWaker

§

impl Debug for BigEndian

§

impl Debug for BitSafeU8

§

impl Debug for BitSafeU16

§

impl Debug for BitSafeU32

§

impl Debug for BitSafeU64

§

impl Debug for BitSafeUsize

§

impl Debug for BlockNumberWithHash

§

impl Debug for Bytes

§

impl Debug for BytesMut

§

impl Debug for Canceled

§

impl Debug for CodeId

§

impl Debug for Const

§

impl Debug for DIR

§

impl Debug for Dl_info

§

impl Debug for Elf32_Chdr

§

impl Debug for Elf32_Ehdr

§

impl Debug for Elf32_Phdr

§

impl Debug for Elf32_Shdr

§

impl Debug for Elf32_Sym

§

impl Debug for Elf64_Chdr

§

impl Debug for Elf64_Ehdr

§

impl Debug for Elf64_Phdr

§

impl Debug for Elf64_Shdr

§

impl Debug for Elf64_Sym

§

impl Debug for Empty

§

impl Debug for Enter

§

impl Debug for EnterError

§

impl Debug for EnvVars

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for Error

§

impl Debug for ErrorBytes

§

impl Debug for ErrorWithBlockNumberAndValue

§

impl Debug for ErrorWithGas

§

impl Debug for ErrorWithHandle

§

impl Debug for ErrorWithHash

§

impl Debug for ErrorWithReplyCode

§

impl Debug for ErrorWithSignalCode

§

impl Debug for ErrorWithTwoHashes

§

impl Debug for FILE

§

impl Debug for FinderBuilder

§

impl Debug for FromDecStrErr

§

impl Debug for FromHexError

§

impl Debug for FromHexError

§

impl Debug for FromStrRadixErr

§

impl Debug for FromStrRadixErrKind

§

impl Debug for Global

§

impl Debug for H128

§

impl Debug for H160

§

impl Debug for H256

§

impl Debug for H384

§

impl Debug for H512

§

impl Debug for H768

§

impl Debug for HashWithValue

§

impl Debug for LittleEndian

§

impl Debug for LocalPool

§

impl Debug for LocalSpawner

§

impl Debug for Lsb0

§

impl Debug for MessageHandle

§

impl Debug for MessageId

§

impl Debug for MetaForm

§

impl Debug for Msb0

§

impl Debug for Mut

§

impl Debug for NullPtrError

§

impl Debug for OnceBool

§

impl Debug for OnceNonZeroUsize

§

impl Debug for OptionBool

§

impl Debug for PathError

§

impl Debug for PollNext

§

impl Debug for PortableForm

§

impl Debug for PortableRegistry

§

impl Debug for PortableRegistryBuilder

§

impl Debug for PortableType

§

impl Debug for Prefilter

§

impl Debug for RandomState

§

impl Debug for Registry

§

impl Debug for Repeat

§

impl Debug for ReservationId

§

impl Debug for SendError

§

impl Debug for Sink

§

impl Debug for SpawnError

§

impl Debug for ThreadPool

§

impl Debug for ThreadPoolBuilder

§

impl Debug for TryRecvError

§

impl Debug for TwoHashes

§

impl Debug for TwoHashesWithValue

§

impl Debug for TypeDefPrimitive

§

impl Debug for U128

§

impl Debug for U256

§

impl Debug for U512

§

impl Debug for UninitSlice

§

impl Debug for __c_anonymous_ifr_ifru

§

impl Debug for __c_anonymous_ifru_map

§

impl Debug for __c_anonymous_ptrace_syscall_info_data

§

impl Debug for __c_anonymous_ptrace_syscall_info_entry

§

impl Debug for __c_anonymous_ptrace_syscall_info_exit

§

impl Debug for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Debug for __c_anonymous_sockaddr_can_j1939

§

impl Debug for __c_anonymous_sockaddr_can_tp

§

impl Debug for __exit_status

§

impl Debug for __timeval

§

impl Debug for _libc_fpstate

§

impl Debug for _libc_fpxreg

§

impl Debug for _libc_xmmreg

§

impl Debug for addrinfo

§

impl Debug for af_alg_iv

§

impl Debug for aiocb

§

impl Debug for arpd_request

§

impl Debug for arphdr

§

impl Debug for arpreq

§

impl Debug for arpreq_old

§

impl Debug for can_filter

§

impl Debug for clone_args

§

impl Debug for cmsghdr

§

impl Debug for cpu_set_t

§

impl Debug for dirent

§

impl Debug for dirent64

§

impl Debug for dl_phdr_info

§

impl Debug for dqblk

source§

impl Debug for dyn Any

source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Sync + Send

§

impl Debug for epoll_event

§

impl Debug for fanotify_event_metadata

§

impl Debug for fanotify_response

§

impl Debug for fd_set

§

impl Debug for ff_condition_effect

§

impl Debug for ff_constant_effect

§

impl Debug for ff_effect

§

impl Debug for ff_envelope

§

impl Debug for ff_periodic_effect

§

impl Debug for ff_ramp_effect

§

impl Debug for ff_replay

§

impl Debug for ff_rumble_effect

§

impl Debug for ff_trigger

§

impl Debug for file_clone_range

§

impl Debug for flock

§

impl Debug for flock64

§

impl Debug for fpos64_t

§

impl Debug for fpos_t

§

impl Debug for fsid_t

§

impl Debug for genlmsghdr

§

impl Debug for glob64_t

§

impl Debug for glob_t

§

impl Debug for group

§

impl Debug for hostent

§

impl Debug for hwtstamp_config

§

impl Debug for if_nameindex

§

impl Debug for ifaddrs

§

impl Debug for ifreq

§

impl Debug for in6_addr

§

impl Debug for in6_ifreq

§

impl Debug for in6_pktinfo

§

impl Debug for in6_rtmsg

§

impl Debug for in_addr

§

impl Debug for in_pktinfo

§

impl Debug for inotify_event

§

impl Debug for input_absinfo

§

impl Debug for input_event

§

impl Debug for input_id

§

impl Debug for input_keymap_entry

§

impl Debug for input_mask

§

impl Debug for iovec

§

impl Debug for ip_mreq

§

impl Debug for ip_mreq_source

§

impl Debug for ip_mreqn

§

impl Debug for ipc_perm

§

impl Debug for ipv6_mreq

§

impl Debug for itimerspec

§

impl Debug for itimerval

§

impl Debug for j1939_filter

§

impl Debug for lconv

§

impl Debug for linger

§

impl Debug for mallinfo

§

impl Debug for mallinfo2

§

impl Debug for mcontext_t

§

impl Debug for mmsghdr

§

impl Debug for mntent

§

impl Debug for mq_attr

§

impl Debug for msghdr

§

impl Debug for msginfo

§

impl Debug for msqid_ds

§

impl Debug for nl_mmap_hdr

§

impl Debug for nl_mmap_req

§

impl Debug for nl_pktinfo

§

impl Debug for nlattr

§

impl Debug for nlmsgerr

§

impl Debug for nlmsghdr

§

impl Debug for ntptimeval

§

impl Debug for open_how

§

impl Debug for option

§

impl Debug for packet_mreq

§

impl Debug for passwd

§

impl Debug for pollfd

§

impl Debug for posix_spawn_file_actions_t

§

impl Debug for posix_spawnattr_t

§

impl Debug for protoent

§

impl Debug for pthread_attr_t

§

impl Debug for pthread_barrier_t

§

impl Debug for pthread_barrierattr_t

§

impl Debug for pthread_cond_t

§

impl Debug for pthread_condattr_t

§

impl Debug for pthread_mutex_t

§

impl Debug for pthread_mutexattr_t

§

impl Debug for pthread_rwlock_t

§

impl Debug for pthread_rwlockattr_t

§

impl Debug for ptrace_peeksiginfo_args

§

impl Debug for ptrace_rseq_configuration

§

impl Debug for ptrace_syscall_info

§

impl Debug for regex_t

§

impl Debug for regmatch_t

§

impl Debug for rlimit

§

impl Debug for rlimit64

§

impl Debug for rtentry

§

impl Debug for rusage

§

impl Debug for sched_param

§

impl Debug for sctp_authinfo

§

impl Debug for sctp_initmsg

§

impl Debug for sctp_nxtinfo

§

impl Debug for sctp_prinfo

§

impl Debug for sctp_rcvinfo

§

impl Debug for sctp_sndinfo

§

impl Debug for sctp_sndrcvinfo

§

impl Debug for seccomp_data

§

impl Debug for seccomp_notif_sizes

§

impl Debug for sem_t

§

impl Debug for sembuf

§

impl Debug for semid_ds

§

impl Debug for seminfo

§

impl Debug for servent

§

impl Debug for shmid_ds

§

impl Debug for sigaction

§

impl Debug for sigevent

§

impl Debug for siginfo_t

§

impl Debug for signalfd_siginfo

§

impl Debug for sigset_t

§

impl Debug for sigval

§

impl Debug for sock_extended_err

§

impl Debug for sock_filter

§

impl Debug for sock_fprog

§

impl Debug for sockaddr

§

impl Debug for sockaddr_alg

§

impl Debug for sockaddr_in

§

impl Debug for sockaddr_in6

§

impl Debug for sockaddr_ll

§

impl Debug for sockaddr_nl

§

impl Debug for sockaddr_storage

§

impl Debug for sockaddr_un

§

impl Debug for sockaddr_vm

§

impl Debug for spwd

§

impl Debug for stack_t

§

impl Debug for stat

§

impl Debug for stat64

§

impl Debug for statfs

§

impl Debug for statfs64

§

impl Debug for statvfs

§

impl Debug for statvfs64

§

impl Debug for statx

§

impl Debug for statx_timestamp

§

impl Debug for sysinfo

§

impl Debug for termios

§

impl Debug for termios2

§

impl Debug for timespec

§

impl Debug for timeval

§

impl Debug for timex

§

impl Debug for timezone

§

impl Debug for tm

§

impl Debug for tms

§

impl Debug for ucontext_t

§

impl Debug for ucred

§

impl Debug for uinput_abs_setup

§

impl Debug for uinput_ff_erase

§

impl Debug for uinput_ff_upload

§

impl Debug for uinput_setup

§

impl Debug for uinput_user_dev

§

impl Debug for user

§

impl Debug for user_fpregs_struct

§

impl Debug for user_regs_struct

§

impl Debug for utimbuf

§

impl Debug for utmpx

§

impl Debug for utsname

§

impl Debug for winsize

source§

impl<'a> Debug for Component<'a>

source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Unexpected<'a>

source§

impl<'a> Debug for IndexVecIter<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

source§

impl<'a> Debug for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Debug for gstd::prelude::str::Lines<'a>

source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

source§

impl<'a> Debug for std::net::tcp::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

§

impl<'a> Debug for WakerRef<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>where 'f: 'a,

source§

impl<'a, A> Debug for gstd::prelude::option::Iter<'a, A>where A: Debug + 'a,

source§

impl<'a, A> Debug for gstd::prelude::option::IterMut<'a, A>where A: Debug + 'a,

source§

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

source§

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

source§

impl<'a, E> Debug for StrDeserializer<'a, E>

§

impl<'a, Fut> Debug for Iter<'a, Fut>where diff --git a/pr-3467/gstd/prelude/fmt/trait.Display.html b/pr-3467/gstd/prelude/fmt/trait.Display.html index 6bc349e3594..8239969e0e9 100644 --- a/pr-3467/gstd/prelude/fmt/trait.Display.html +++ b/pr-3467/gstd/prelude/fmt/trait.Display.html @@ -45,9 +45,9 @@
Examples
assert_eq!("(1.987, 2.983)", format!("{}", Position { longitude: 1.987, latitude: 2.983, }));

-

Implementors§

source§

impl Display for gcore::errors::Error

source§

impl Display for gstd::errors::Error

§

impl Display for ErrorReplyReason

§

impl Display for ExecutionError

§

impl Display for ExtError

§

impl Display for MemoryError

§

impl Display for MessageError

§

impl Display for ProgramRentError

§

impl Display for ReplyCode

§

impl Display for ReservationError

§

impl Display for SignalCode

§

impl Display for SimpleExecutionError

§

impl Display for SimpleProgramCreationError

§

impl Display for SuccessReplyReason

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.7.0 · source§

impl Display for IpAddr

source§

impl Display for SocketAddr

source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.15.0 · source§

impl Display for RecvTimeoutError

source§

impl Display for std::sync::mpsc::TryRecvError

source§

impl Display for hex::error::FromHexError

source§

impl Display for BernoulliError

source§

impl Display for WeightedError

source§

impl Display for bool

source§

impl Display for char

source§

impl Display for f32

source§

impl Display for f64

source§

impl Display for i8

source§

impl Display for i16

source§

impl Display for i32

source§

impl Display for i64

source§

impl Display for i128

source§

impl Display for isize

source§

impl Display for !

source§

impl Display for str

source§

impl Display for u8

source§

impl Display for u16

source§

impl Display for u32

source§

impl Display for u64

source§

impl Display for u128

source§

impl Display for usize

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for gstd::prelude::ascii::EscapeDefault

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for gstd::prelude::char::EscapeDebug

1.16.0 · source§

impl Display for gstd::prelude::char::EscapeDefault

1.16.0 · source§

impl Display for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

1.57.0 · source§

impl Display for TryReserveError

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

source§

impl Display for NulError

1.34.0 · source§

impl Display for NonZeroI8

1.34.0 · source§

impl Display for NonZeroI16

1.34.0 · source§

impl Display for NonZeroI32

1.34.0 · source§

impl Display for NonZeroI64

1.34.0 · source§

impl Display for NonZeroI128

1.34.0 · source§

impl Display for NonZeroIsize

1.28.0 · source§

impl Display for NonZeroU8

1.28.0 · source§

impl Display for NonZeroU16

1.28.0 · source§

impl Display for NonZeroU32

1.28.0 · source§

impl Display for NonZeroU64

1.28.0 · source§

impl Display for NonZeroU128

1.28.0 · source§

impl Display for NonZeroUsize

source§

impl Display for ParseFloatError

source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicInfo<'_>

source§

impl Display for ParseBoolError

source§

impl Display for Utf8Error

source§

impl Display for FromUtf8Error

source§

impl Display for FromUtf16Error

source§

impl Display for String

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.28.0 · source§

impl Display for LayoutError

source§

impl Display for core::alloc::AllocError

source§

impl Display for Ipv4Addr

source§

impl Display for Ipv6Addr

Write an Ipv6Addr, conforming to the canonical style described by +

Implementors§

source§

impl Display for gstd::errors::Error

§

impl Display for ErrorReplyReason

§

impl Display for ExecutionError

§

impl Display for ExtError

§

impl Display for MemoryError

§

impl Display for MessageError

§

impl Display for ProgramRentError

§

impl Display for ReplyCode

§

impl Display for ReservationError

§

impl Display for SignalCode

§

impl Display for SimpleExecutionError

§

impl Display for SimpleProgramCreationError

§

impl Display for SuccessReplyReason

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.7.0 · source§

impl Display for IpAddr

source§

impl Display for SocketAddr

source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.15.0 · source§

impl Display for RecvTimeoutError

source§

impl Display for std::sync::mpsc::TryRecvError

source§

impl Display for hex::error::FromHexError

source§

impl Display for BernoulliError

source§

impl Display for WeightedError

source§

impl Display for bool

source§

impl Display for char

source§

impl Display for f32

source§

impl Display for f64

source§

impl Display for i8

source§

impl Display for i16

source§

impl Display for i32

source§

impl Display for i64

source§

impl Display for i128

source§

impl Display for isize

source§

impl Display for !

source§

impl Display for str

source§

impl Display for u8

source§

impl Display for u16

source§

impl Display for u32

source§

impl Display for u64

source§

impl Display for u128

source§

impl Display for usize

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for gstd::prelude::ascii::EscapeDefault

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for gstd::prelude::char::EscapeDebug

1.16.0 · source§

impl Display for gstd::prelude::char::EscapeDefault

1.16.0 · source§

impl Display for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

1.57.0 · source§

impl Display for TryReserveError

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

source§

impl Display for NulError

1.34.0 · source§

impl Display for NonZeroI8

1.34.0 · source§

impl Display for NonZeroI16

1.34.0 · source§

impl Display for NonZeroI32

1.34.0 · source§

impl Display for NonZeroI64

1.34.0 · source§

impl Display for NonZeroI128

1.34.0 · source§

impl Display for NonZeroIsize

1.28.0 · source§

impl Display for NonZeroU8

1.28.0 · source§

impl Display for NonZeroU16

1.28.0 · source§

impl Display for NonZeroU32

1.28.0 · source§

impl Display for NonZeroU64

1.28.0 · source§

impl Display for NonZeroU128

1.28.0 · source§

impl Display for NonZeroUsize

source§

impl Display for ParseFloatError

source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicInfo<'_>

source§

impl Display for ParseBoolError

source§

impl Display for Utf8Error

source§

impl Display for FromUtf8Error

source§

impl Display for FromUtf16Error

source§

impl Display for String

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.28.0 · source§

impl Display for LayoutError

source§

impl Display for core::alloc::AllocError

source§

impl Display for Ipv4Addr

source§

impl Display for Ipv6Addr

Write an Ipv6Addr, conforming to the canonical style described by RFC 5952.

-
1.4.0 · source§

impl Display for AddrParseError

source§

impl Display for SocketAddrV4

source§

impl Display for SocketAddrV6

1.65.0 · source§

impl Display for Backtrace

source§

impl Display for JoinPathsError

1.56.0 · source§

impl Display for WriterPanicked

source§

impl Display for std::io::error::Error

source§

impl Display for Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

source§

impl Display for ExitStatus

source§

impl Display for ExitStatusError

source§

impl Display for RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

source§

impl Display for getrandom::error::Error

source§

impl Display for serde::de::value::Error

source§

impl Display for ReadError

source§

impl Display for rand_core::error::Error

source§

impl Display for Arguments<'_>

source§

impl Display for gstd::prelude::fmt::Error

§

impl Display for Aborted

§

impl Display for AllocError

§

impl Display for Canceled

§

impl Display for EnterError

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for FromDecStrErr

§

impl Display for FromHexError

§

impl Display for FromHexError

§

impl Display for FromStrRadixErr

§

impl Display for H128

§

impl Display for H160

§

impl Display for H256

§

impl Display for H384

§

impl Display for H512

§

impl Display for H768

§

impl Display for NullPtrError

§

impl Display for Path<PortableForm>

§

impl Display for SendError

§

impl Display for SpawnError

§

impl Display for TryRecvError

§

impl Display for U128

§

impl Display for U256

§

impl Display for U512

source§

impl<'a> Display for Unexpected<'a>

1.60.0 · source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Display for dyn Expected + 'a

source§

impl<'a, K, V> Display for std::collections::hash::map::OccupiedError<'a, K, V>where +

1.4.0 · source§

impl Display for AddrParseError

source§

impl Display for SocketAddrV4

source§

impl Display for SocketAddrV6

1.65.0 · source§

impl Display for Backtrace

source§

impl Display for JoinPathsError

1.56.0 · source§

impl Display for WriterPanicked

source§

impl Display for std::io::error::Error

source§

impl Display for Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

source§

impl Display for ExitStatus

source§

impl Display for ExitStatusError

source§

impl Display for RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

source§

impl Display for getrandom::error::Error

source§

impl Display for serde::de::value::Error

source§

impl Display for ReadError

source§

impl Display for rand_core::error::Error

source§

impl Display for Arguments<'_>

source§

impl Display for gstd::prelude::fmt::Error

§

impl Display for Aborted

§

impl Display for AllocError

§

impl Display for Canceled

§

impl Display for EnterError

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for Error

§

impl Display for FromDecStrErr

§

impl Display for FromHexError

§

impl Display for FromHexError

§

impl Display for FromStrRadixErr

§

impl Display for H128

§

impl Display for H160

§

impl Display for H256

§

impl Display for H384

§

impl Display for H512

§

impl Display for H768

§

impl Display for NullPtrError

§

impl Display for Path<PortableForm>

§

impl Display for SendError

§

impl Display for SpawnError

§

impl Display for TryRecvError

§

impl Display for U128

§

impl Display for U256

§

impl Display for U512

source§

impl<'a> Display for Unexpected<'a>

1.60.0 · source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Display for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Display for dyn Expected + 'a

source§

impl<'a, K, V> Display for std::collections::hash::map::OccupiedError<'a, K, V>where K: Debug, V: Debug,

source§

impl<'a, K, V, A> Display for gstd::prelude::collections::btree_map::OccupiedError<'a, K, V, A>where K: Debug + Ord, diff --git a/pr-3467/gstd/prelude/hash/trait.Hash.html b/pr-3467/gstd/prelude/hash/trait.Hash.html index 85f930f7c1b..5f587b4acde 100644 --- a/pr-3467/gstd/prelude/hash/trait.Hash.html +++ b/pr-3467/gstd/prelude/hash/trait.Hash.html @@ -99,7 +99,7 @@
Examples
let numbers = [6, 28, 496, 8128]; Hash::hash_slice(&numbers, &mut hasher); println!("Hash is {:x}!", hasher.finish());

-

Implementors§

§

impl Hash for ErrorReplyReason

§

impl Hash for ExecutionError

§

impl Hash for ExtError

§

impl Hash for MemoryError

§

impl Hash for MessageError

§

impl Hash for ProgramRentError

§

impl Hash for ReplyCode

§

impl Hash for ReservationError

§

impl Hash for SignalCode

§

impl Hash for SimpleExecutionError

§

impl Hash for SimpleProgramCreationError

§

impl Hash for SuccessReplyReason

source§

impl Hash for AsciiChar

source§

impl Hash for gstd::prelude::cmp::Ordering

1.44.0 · source§

impl Hash for Infallible

source§

impl Hash for Which

1.7.0 · source§

impl Hash for IpAddr

source§

impl Hash for Ipv6MulticastScope

source§

impl Hash for SocketAddr

source§

impl Hash for core::sync::atomic::Ordering

source§

impl Hash for ErrorKind

source§

impl Hash for bool

source§

impl Hash for char

source§

impl Hash for i8

source§

impl Hash for i16

source§

impl Hash for i32

source§

impl Hash for i64

source§

impl Hash for i128

source§

impl Hash for isize

1.29.0 · source§

impl Hash for !

source§

impl Hash for str

source§

impl Hash for u8

source§

impl Hash for u16

source§

impl Hash for u32

source§

impl Hash for u64

source§

impl Hash for u128

source§

impl Hash for ()

source§

impl Hash for usize

source§

impl Hash for gcore::general::ActorId

source§

impl Hash for gcore::general::CodeId

source§

impl Hash for gcore::general::MessageId

source§

impl Hash for gcore::general::ReservationId

source§

impl Hash for gstd::ActorId

source§

impl Hash for gstd::CodeId

source§

impl Hash for gstd::MessageId

source§

impl Hash for Reservation

source§

impl Hash for gstd::ReservationId

source§

impl Hash for Reservations

§

impl Hash for MetaType

source§

impl Hash for TypeId

1.64.0 · source§

impl Hash for CStr

1.64.0 · source§

impl Hash for CString

source§

impl Hash for Error

1.33.0 · source§

impl Hash for PhantomPinned

1.34.0 · source§

impl Hash for NonZeroI8

1.34.0 · source§

impl Hash for NonZeroI16

1.34.0 · source§

impl Hash for NonZeroI32

1.34.0 · source§

impl Hash for NonZeroI64

1.34.0 · source§

impl Hash for NonZeroI128

1.34.0 · source§

impl Hash for NonZeroIsize

1.28.0 · source§

impl Hash for NonZeroU8

1.28.0 · source§

impl Hash for NonZeroU16

1.28.0 · source§

impl Hash for NonZeroU32

1.28.0 · source§

impl Hash for NonZeroU64

1.28.0 · source§

impl Hash for NonZeroU128

1.28.0 · source§

impl Hash for NonZeroUsize

source§

impl Hash for RangeFull

source§

impl Hash for Alignment

source§

impl Hash for String

1.3.0 · source§

impl Hash for Duration

1.28.0 · source§

impl Hash for Layout

source§

impl Hash for Ipv4Addr

source§

impl Hash for Ipv6Addr

source§

impl Hash for SocketAddrV4

source§

impl Hash for SocketAddrV6

source§

impl Hash for OsStr

source§

impl Hash for OsString

1.1.0 · source§

impl Hash for FileType

source§

impl Hash for UCred

source§

impl Hash for Path

source§

impl Hash for PathBuf

source§

impl Hash for PrefixComponent<'_>

1.19.0 · source§

impl Hash for ThreadId

1.8.0 · source§

impl Hash for Instant

1.8.0 · source§

impl Hash for SystemTime

§

impl Hash for BigEndian

§

impl Hash for Bytes

§

impl Hash for BytesMut

§

impl Hash for Const

§

impl Hash for Dl_info

§

impl Hash for Elf32_Chdr

§

impl Hash for Elf32_Ehdr

§

impl Hash for Elf32_Phdr

§

impl Hash for Elf32_Shdr

§

impl Hash for Elf32_Sym

§

impl Hash for Elf64_Chdr

§

impl Hash for Elf64_Ehdr

§

impl Hash for Elf64_Phdr

§

impl Hash for Elf64_Shdr

§

impl Hash for Elf64_Sym

§

impl Hash for FromStrRadixErrKind

§

impl Hash for H128

§

impl Hash for H160

§

impl Hash for H256

§

impl Hash for H384

§

impl Hash for H512

§

impl Hash for H768

§

impl Hash for LittleEndian

§

impl Hash for Lsb0

§

impl Hash for Msb0

§

impl Hash for Mut

§

impl Hash for NullPtrError

§

impl Hash for PollNext

§

impl Hash for U128

§

impl Hash for U256

§

impl Hash for U512

§

impl Hash for __c_anonymous_ifru_map

§

impl Hash for __c_anonymous_ptrace_syscall_info_data

§

impl Hash for __c_anonymous_ptrace_syscall_info_entry

§

impl Hash for __c_anonymous_ptrace_syscall_info_exit

§

impl Hash for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Hash for __c_anonymous_sockaddr_can_j1939

§

impl Hash for __c_anonymous_sockaddr_can_tp

§

impl Hash for __exit_status

§

impl Hash for __timeval

§

impl Hash for _libc_fpstate

§

impl Hash for _libc_fpxreg

§

impl Hash for _libc_xmmreg

§

impl Hash for addrinfo

§

impl Hash for af_alg_iv

§

impl Hash for aiocb

§

impl Hash for arpd_request

§

impl Hash for arphdr

§

impl Hash for arpreq

§

impl Hash for arpreq_old

§

impl Hash for can_filter

§

impl Hash for clone_args

§

impl Hash for cmsghdr

§

impl Hash for cpu_set_t

§

impl Hash for dirent

§

impl Hash for dirent64

§

impl Hash for dl_phdr_info

§

impl Hash for dqblk

§

impl Hash for epoll_event

§

impl Hash for fanotify_event_metadata

§

impl Hash for fanotify_response

§

impl Hash for fd_set

§

impl Hash for ff_condition_effect

§

impl Hash for ff_constant_effect

§

impl Hash for ff_effect

§

impl Hash for ff_envelope

§

impl Hash for ff_periodic_effect

§

impl Hash for ff_ramp_effect

§

impl Hash for ff_replay

§

impl Hash for ff_rumble_effect

§

impl Hash for ff_trigger

§

impl Hash for file_clone_range

§

impl Hash for flock

§

impl Hash for flock64

§

impl Hash for fsid_t

§

impl Hash for genlmsghdr

§

impl Hash for glob64_t

§

impl Hash for glob_t

§

impl Hash for group

§

impl Hash for hostent

§

impl Hash for hwtstamp_config

§

impl Hash for if_nameindex

§

impl Hash for ifaddrs

§

impl Hash for in6_addr

§

impl Hash for in6_ifreq

§

impl Hash for in6_pktinfo

§

impl Hash for in6_rtmsg

§

impl Hash for in_addr

§

impl Hash for in_pktinfo

§

impl Hash for inotify_event

§

impl Hash for input_absinfo

§

impl Hash for input_event

§

impl Hash for input_id

§

impl Hash for input_keymap_entry

§

impl Hash for input_mask

§

impl Hash for iovec

§

impl Hash for ip_mreq

§

impl Hash for ip_mreq_source

§

impl Hash for ip_mreqn

§

impl Hash for ipc_perm

§

impl Hash for ipv6_mreq

§

impl Hash for itimerspec

§

impl Hash for itimerval

§

impl Hash for j1939_filter

§

impl Hash for lconv

§

impl Hash for linger

§

impl Hash for mallinfo

§

impl Hash for mallinfo2

§

impl Hash for mcontext_t

§

impl Hash for mmsghdr

§

impl Hash for mntent

§

impl Hash for mq_attr

§

impl Hash for msghdr

§

impl Hash for msginfo

§

impl Hash for msqid_ds

§

impl Hash for nl_mmap_hdr

§

impl Hash for nl_mmap_req

§

impl Hash for nl_pktinfo

§

impl Hash for nlattr

§

impl Hash for nlmsgerr

§

impl Hash for nlmsghdr

§

impl Hash for ntptimeval

§

impl Hash for open_how

§

impl Hash for option

§

impl Hash for packet_mreq

§

impl Hash for passwd

§

impl Hash for pollfd

§

impl Hash for posix_spawn_file_actions_t

§

impl Hash for posix_spawnattr_t

§

impl Hash for protoent

§

impl Hash for pthread_attr_t

§

impl Hash for pthread_barrier_t

§

impl Hash for pthread_barrierattr_t

§

impl Hash for pthread_cond_t

§

impl Hash for pthread_condattr_t

§

impl Hash for pthread_mutex_t

§

impl Hash for pthread_mutexattr_t

§

impl Hash for pthread_rwlock_t

§

impl Hash for pthread_rwlockattr_t

§

impl Hash for ptrace_peeksiginfo_args

§

impl Hash for ptrace_rseq_configuration

§

impl Hash for ptrace_syscall_info

§

impl Hash for regex_t

§

impl Hash for regmatch_t

§

impl Hash for rlimit

§

impl Hash for rlimit64

§

impl Hash for rtentry

§

impl Hash for rusage

§

impl Hash for sched_param

§

impl Hash for sctp_authinfo

§

impl Hash for sctp_initmsg

§

impl Hash for sctp_nxtinfo

§

impl Hash for sctp_prinfo

§

impl Hash for sctp_rcvinfo

§

impl Hash for sctp_sndinfo

§

impl Hash for sctp_sndrcvinfo

§

impl Hash for seccomp_data

§

impl Hash for seccomp_notif_sizes

§

impl Hash for sem_t

§

impl Hash for sembuf

§

impl Hash for semid_ds

§

impl Hash for seminfo

§

impl Hash for servent

§

impl Hash for shmid_ds

§

impl Hash for sigaction

§

impl Hash for sigevent

§

impl Hash for siginfo_t

§

impl Hash for signalfd_siginfo

§

impl Hash for sigset_t

§

impl Hash for sigval

§

impl Hash for sock_extended_err

§

impl Hash for sock_filter

§

impl Hash for sock_fprog

§

impl Hash for sockaddr

§

impl Hash for sockaddr_alg

§

impl Hash for sockaddr_in

§

impl Hash for sockaddr_in6

§

impl Hash for sockaddr_ll

§

impl Hash for sockaddr_nl

§

impl Hash for sockaddr_storage

§

impl Hash for sockaddr_un

§

impl Hash for sockaddr_vm

§

impl Hash for spwd

§

impl Hash for stack_t

§

impl Hash for stat

§

impl Hash for stat64

§

impl Hash for statfs

§

impl Hash for statfs64

§

impl Hash for statvfs

§

impl Hash for statvfs64

§

impl Hash for statx

§

impl Hash for statx_timestamp

§

impl Hash for sysinfo

§

impl Hash for termios

§

impl Hash for termios2

§

impl Hash for timespec

§

impl Hash for timeval

§

impl Hash for timex

§

impl Hash for tm

§

impl Hash for tms

§

impl Hash for ucontext_t

§

impl Hash for ucred

§

impl Hash for uinput_abs_setup

§

impl Hash for uinput_ff_erase

§

impl Hash for uinput_ff_upload

§

impl Hash for uinput_setup

§

impl Hash for uinput_user_dev

§

impl Hash for user

§

impl Hash for user_fpregs_struct

§

impl Hash for user_regs_struct

§

impl Hash for utimbuf

§

impl Hash for utmpx

§

impl Hash for utsname

§

impl Hash for winsize

source§

impl<'a> Hash for Component<'a>

source§

impl<'a> Hash for Prefix<'a>

1.10.0 · source§

impl<'a> Hash for Location<'a>

§

impl<'a, M, T, O> Hash for PartialElement<'a, M, T, O>where +

Implementors§

§

impl Hash for ErrorReplyReason

§

impl Hash for ExecutionError

§

impl Hash for ExtError

§

impl Hash for MemoryError

§

impl Hash for MessageError

§

impl Hash for ProgramRentError

§

impl Hash for ReplyCode

§

impl Hash for ReservationError

§

impl Hash for SignalCode

§

impl Hash for SimpleExecutionError

§

impl Hash for SimpleProgramCreationError

§

impl Hash for SuccessReplyReason

source§

impl Hash for AsciiChar

source§

impl Hash for gstd::prelude::cmp::Ordering

1.44.0 · source§

impl Hash for Infallible

source§

impl Hash for Which

1.7.0 · source§

impl Hash for IpAddr

source§

impl Hash for Ipv6MulticastScope

source§

impl Hash for SocketAddr

source§

impl Hash for core::sync::atomic::Ordering

source§

impl Hash for ErrorKind

source§

impl Hash for bool

source§

impl Hash for char

source§

impl Hash for i8

source§

impl Hash for i16

source§

impl Hash for i32

source§

impl Hash for i64

source§

impl Hash for i128

source§

impl Hash for isize

1.29.0 · source§

impl Hash for !

source§

impl Hash for str

source§

impl Hash for u8

source§

impl Hash for u16

source§

impl Hash for u32

source§

impl Hash for u64

source§

impl Hash for u128

source§

impl Hash for ()

source§

impl Hash for usize

source§

impl Hash for gstd::ActorId

source§

impl Hash for gstd::CodeId

source§

impl Hash for gstd::MessageId

source§

impl Hash for Reservation

source§

impl Hash for gstd::ReservationId

source§

impl Hash for Reservations

§

impl Hash for MetaType

source§

impl Hash for TypeId

1.64.0 · source§

impl Hash for CStr

1.64.0 · source§

impl Hash for CString

source§

impl Hash for Error

1.33.0 · source§

impl Hash for PhantomPinned

1.34.0 · source§

impl Hash for NonZeroI8

1.34.0 · source§

impl Hash for NonZeroI16

1.34.0 · source§

impl Hash for NonZeroI32

1.34.0 · source§

impl Hash for NonZeroI64

1.34.0 · source§

impl Hash for NonZeroI128

1.34.0 · source§

impl Hash for NonZeroIsize

1.28.0 · source§

impl Hash for NonZeroU8

1.28.0 · source§

impl Hash for NonZeroU16

1.28.0 · source§

impl Hash for NonZeroU32

1.28.0 · source§

impl Hash for NonZeroU64

1.28.0 · source§

impl Hash for NonZeroU128

1.28.0 · source§

impl Hash for NonZeroUsize

source§

impl Hash for RangeFull

source§

impl Hash for Alignment

source§

impl Hash for String

1.3.0 · source§

impl Hash for Duration

1.28.0 · source§

impl Hash for Layout

source§

impl Hash for Ipv4Addr

source§

impl Hash for Ipv6Addr

source§

impl Hash for SocketAddrV4

source§

impl Hash for SocketAddrV6

source§

impl Hash for OsStr

source§

impl Hash for OsString

1.1.0 · source§

impl Hash for FileType

source§

impl Hash for UCred

source§

impl Hash for Path

source§

impl Hash for PathBuf

source§

impl Hash for PrefixComponent<'_>

1.19.0 · source§

impl Hash for ThreadId

1.8.0 · source§

impl Hash for Instant

1.8.0 · source§

impl Hash for SystemTime

§

impl Hash for ActorId

§

impl Hash for BigEndian

§

impl Hash for Bytes

§

impl Hash for BytesMut

§

impl Hash for CodeId

§

impl Hash for Const

§

impl Hash for Dl_info

§

impl Hash for Elf32_Chdr

§

impl Hash for Elf32_Ehdr

§

impl Hash for Elf32_Phdr

§

impl Hash for Elf32_Shdr

§

impl Hash for Elf32_Sym

§

impl Hash for Elf64_Chdr

§

impl Hash for Elf64_Ehdr

§

impl Hash for Elf64_Phdr

§

impl Hash for Elf64_Shdr

§

impl Hash for Elf64_Sym

§

impl Hash for FromStrRadixErrKind

§

impl Hash for H128

§

impl Hash for H160

§

impl Hash for H256

§

impl Hash for H384

§

impl Hash for H512

§

impl Hash for H768

§

impl Hash for LittleEndian

§

impl Hash for Lsb0

§

impl Hash for MessageId

§

impl Hash for Msb0

§

impl Hash for Mut

§

impl Hash for NullPtrError

§

impl Hash for PollNext

§

impl Hash for ReservationId

§

impl Hash for U128

§

impl Hash for U256

§

impl Hash for U512

§

impl Hash for __c_anonymous_ifru_map

§

impl Hash for __c_anonymous_ptrace_syscall_info_data

§

impl Hash for __c_anonymous_ptrace_syscall_info_entry

§

impl Hash for __c_anonymous_ptrace_syscall_info_exit

§

impl Hash for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Hash for __c_anonymous_sockaddr_can_j1939

§

impl Hash for __c_anonymous_sockaddr_can_tp

§

impl Hash for __exit_status

§

impl Hash for __timeval

§

impl Hash for _libc_fpstate

§

impl Hash for _libc_fpxreg

§

impl Hash for _libc_xmmreg

§

impl Hash for addrinfo

§

impl Hash for af_alg_iv

§

impl Hash for aiocb

§

impl Hash for arpd_request

§

impl Hash for arphdr

§

impl Hash for arpreq

§

impl Hash for arpreq_old

§

impl Hash for can_filter

§

impl Hash for clone_args

§

impl Hash for cmsghdr

§

impl Hash for cpu_set_t

§

impl Hash for dirent

§

impl Hash for dirent64

§

impl Hash for dl_phdr_info

§

impl Hash for dqblk

§

impl Hash for epoll_event

§

impl Hash for fanotify_event_metadata

§

impl Hash for fanotify_response

§

impl Hash for fd_set

§

impl Hash for ff_condition_effect

§

impl Hash for ff_constant_effect

§

impl Hash for ff_effect

§

impl Hash for ff_envelope

§

impl Hash for ff_periodic_effect

§

impl Hash for ff_ramp_effect

§

impl Hash for ff_replay

§

impl Hash for ff_rumble_effect

§

impl Hash for ff_trigger

§

impl Hash for file_clone_range

§

impl Hash for flock

§

impl Hash for flock64

§

impl Hash for fsid_t

§

impl Hash for genlmsghdr

§

impl Hash for glob64_t

§

impl Hash for glob_t

§

impl Hash for group

§

impl Hash for hostent

§

impl Hash for hwtstamp_config

§

impl Hash for if_nameindex

§

impl Hash for ifaddrs

§

impl Hash for in6_addr

§

impl Hash for in6_ifreq

§

impl Hash for in6_pktinfo

§

impl Hash for in6_rtmsg

§

impl Hash for in_addr

§

impl Hash for in_pktinfo

§

impl Hash for inotify_event

§

impl Hash for input_absinfo

§

impl Hash for input_event

§

impl Hash for input_id

§

impl Hash for input_keymap_entry

§

impl Hash for input_mask

§

impl Hash for iovec

§

impl Hash for ip_mreq

§

impl Hash for ip_mreq_source

§

impl Hash for ip_mreqn

§

impl Hash for ipc_perm

§

impl Hash for ipv6_mreq

§

impl Hash for itimerspec

§

impl Hash for itimerval

§

impl Hash for j1939_filter

§

impl Hash for lconv

§

impl Hash for linger

§

impl Hash for mallinfo

§

impl Hash for mallinfo2

§

impl Hash for mcontext_t

§

impl Hash for mmsghdr

§

impl Hash for mntent

§

impl Hash for mq_attr

§

impl Hash for msghdr

§

impl Hash for msginfo

§

impl Hash for msqid_ds

§

impl Hash for nl_mmap_hdr

§

impl Hash for nl_mmap_req

§

impl Hash for nl_pktinfo

§

impl Hash for nlattr

§

impl Hash for nlmsgerr

§

impl Hash for nlmsghdr

§

impl Hash for ntptimeval

§

impl Hash for open_how

§

impl Hash for option

§

impl Hash for packet_mreq

§

impl Hash for passwd

§

impl Hash for pollfd

§

impl Hash for posix_spawn_file_actions_t

§

impl Hash for posix_spawnattr_t

§

impl Hash for protoent

§

impl Hash for pthread_attr_t

§

impl Hash for pthread_barrier_t

§

impl Hash for pthread_barrierattr_t

§

impl Hash for pthread_cond_t

§

impl Hash for pthread_condattr_t

§

impl Hash for pthread_mutex_t

§

impl Hash for pthread_mutexattr_t

§

impl Hash for pthread_rwlock_t

§

impl Hash for pthread_rwlockattr_t

§

impl Hash for ptrace_peeksiginfo_args

§

impl Hash for ptrace_rseq_configuration

§

impl Hash for ptrace_syscall_info

§

impl Hash for regex_t

§

impl Hash for regmatch_t

§

impl Hash for rlimit

§

impl Hash for rlimit64

§

impl Hash for rtentry

§

impl Hash for rusage

§

impl Hash for sched_param

§

impl Hash for sctp_authinfo

§

impl Hash for sctp_initmsg

§

impl Hash for sctp_nxtinfo

§

impl Hash for sctp_prinfo

§

impl Hash for sctp_rcvinfo

§

impl Hash for sctp_sndinfo

§

impl Hash for sctp_sndrcvinfo

§

impl Hash for seccomp_data

§

impl Hash for seccomp_notif_sizes

§

impl Hash for sem_t

§

impl Hash for sembuf

§

impl Hash for semid_ds

§

impl Hash for seminfo

§

impl Hash for servent

§

impl Hash for shmid_ds

§

impl Hash for sigaction

§

impl Hash for sigevent

§

impl Hash for siginfo_t

§

impl Hash for signalfd_siginfo

§

impl Hash for sigset_t

§

impl Hash for sigval

§

impl Hash for sock_extended_err

§

impl Hash for sock_filter

§

impl Hash for sock_fprog

§

impl Hash for sockaddr

§

impl Hash for sockaddr_alg

§

impl Hash for sockaddr_in

§

impl Hash for sockaddr_in6

§

impl Hash for sockaddr_ll

§

impl Hash for sockaddr_nl

§

impl Hash for sockaddr_storage

§

impl Hash for sockaddr_un

§

impl Hash for sockaddr_vm

§

impl Hash for spwd

§

impl Hash for stack_t

§

impl Hash for stat

§

impl Hash for stat64

§

impl Hash for statfs

§

impl Hash for statfs64

§

impl Hash for statvfs

§

impl Hash for statvfs64

§

impl Hash for statx

§

impl Hash for statx_timestamp

§

impl Hash for sysinfo

§

impl Hash for termios

§

impl Hash for termios2

§

impl Hash for timespec

§

impl Hash for timeval

§

impl Hash for timex

§

impl Hash for tm

§

impl Hash for tms

§

impl Hash for ucontext_t

§

impl Hash for ucred

§

impl Hash for uinput_abs_setup

§

impl Hash for uinput_ff_erase

§

impl Hash for uinput_ff_upload

§

impl Hash for uinput_setup

§

impl Hash for uinput_user_dev

§

impl Hash for user

§

impl Hash for user_fpregs_struct

§

impl Hash for user_regs_struct

§

impl Hash for utimbuf

§

impl Hash for utmpx

§

impl Hash for utsname

§

impl Hash for winsize

source§

impl<'a> Hash for Component<'a>

source§

impl<'a> Hash for Prefix<'a>

1.10.0 · source§

impl<'a> Hash for Location<'a>

§

impl<'a, M, T, O> Hash for PartialElement<'a, M, T, O>where M: Mutability, T: 'a + BitStore, O: BitOrder,

§

impl<A, O> Hash for BitArray<A, O>where diff --git a/pr-3467/gstd/prelude/marker/trait.Copy.html b/pr-3467/gstd/prelude/marker/trait.Copy.html index b20433fc0c1..72c4fdda650 100644 --- a/pr-3467/gstd/prelude/marker/trait.Copy.html +++ b/pr-3467/gstd/prelude/marker/trait.Copy.html @@ -112,7 +112,7 @@

Additional i (even if the referent doesn’t), while variables captured by mutable reference never implement Copy. -

Implementors§

§

impl Copy for ErrorReplyReason

§

impl Copy for ExecutionError

§

impl Copy for ExtError

§

impl Copy for MemoryError

§

impl Copy for MessageError

§

impl Copy for ProgramRentError

§

impl Copy for ReplyCode

§

impl Copy for ReservationError

§

impl Copy for SignalCode

§

impl Copy for SimpleExecutionError

§

impl Copy for SimpleProgramCreationError

§

impl Copy for SuccessReplyReason

source§

impl Copy for AsciiChar

source§

impl Copy for gstd::prelude::cmp::Ordering

1.34.0 · source§

impl Copy for Infallible

1.28.0 · source§

impl Copy for gstd::prelude::fmt::Alignment

source§

impl Copy for FpCategory

source§

impl Copy for SearchStep

source§

impl Copy for Which

1.7.0 · source§

impl Copy for IpAddr

source§

impl Copy for Ipv6MulticastScope

source§

impl Copy for SocketAddr

source§

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

source§

impl Copy for SeekFrom

source§

impl Copy for ErrorKind

source§

impl Copy for Shutdown

source§

impl Copy for BacktraceStyle

1.12.0 · source§

impl Copy for RecvTimeoutError

source§

impl Copy for TryRecvError

source§

impl Copy for _Unwind_Action

source§

impl Copy for _Unwind_Reason_Code

source§

impl Copy for hex::error::FromHexError

source§

impl Copy for BernoulliError

source§

impl Copy for WeightedError

source§

impl Copy for bool

source§

impl Copy for char

source§

impl Copy for f32

source§

impl Copy for f64

source§

impl Copy for i8

source§

impl Copy for i16

source§

impl Copy for i32

source§

impl Copy for i64

source§

impl Copy for i128

source§

impl Copy for isize

source§

impl Copy for !

source§

impl Copy for u8

source§

impl Copy for u16

source§

impl Copy for u32

source§

impl Copy for u64

source§

impl Copy for u128

source§

impl Copy for usize

source§

impl Copy for gcore::general::ActorId

source§

impl Copy for gcore::general::CodeId

source§

impl Copy for gcore::general::MessageHandle

source§

impl Copy for gcore::general::MessageId

source§

impl Copy for gcore::general::ReservationId

source§

impl Copy for SyscallError

source§

impl Copy for gstd::msg::MessageHandle

source§

impl Copy for gstd::ActorId

source§

impl Copy for gstd::CodeId

§

impl Copy for GasMultiplier

source§

impl Copy for gstd::MessageId

§

impl Copy for Percent

source§

impl Copy for Reservation

source§

impl Copy for gstd::ReservationId

§

impl Copy for MetaType

source§

impl Copy for TypeId

1.34.0 · source§

impl Copy for TryFromSliceError

1.34.0 · source§

impl Copy for CharTryFromError

1.59.0 · source§

impl Copy for TryFromCharError

source§

impl Copy for gstd::prelude::fmt::Error

source§

impl Copy for Assume

1.34.0 · source§

impl Copy for NonZeroI8

1.34.0 · source§

impl Copy for NonZeroI16

1.34.0 · source§

impl Copy for NonZeroI32

1.34.0 · source§

impl Copy for NonZeroI64

1.34.0 · source§

impl Copy for NonZeroI128

1.34.0 · source§

impl Copy for NonZeroIsize

1.28.0 · source§

impl Copy for NonZeroU8

1.28.0 · source§

impl Copy for NonZeroU16

1.28.0 · source§

impl Copy for NonZeroU32

1.28.0 · source§

impl Copy for NonZeroU64

1.28.0 · source§

impl Copy for NonZeroU128

1.28.0 · source§

impl Copy for NonZeroUsize

1.34.0 · source§

impl Copy for TryFromIntError

source§

impl Copy for RangeFull

source§

impl Copy for gstd::prelude::ptr::Alignment

source§

impl Copy for TimSortRun

source§

impl Copy for Utf8Error

1.36.0 · source§

impl Copy for RawWakerVTable

1.3.0 · source§

impl Copy for Duration

source§

impl Copy for alloc::alloc::Global

1.28.0 · source§

impl Copy for Layout

source§

impl Copy for core::alloc::AllocError

1.27.0 · source§

impl Copy for CpuidResult

1.27.0 · source§

impl Copy for __m128

source§

impl Copy for __m128bh

1.27.0 · source§

impl Copy for __m128d

1.27.0 · source§

impl Copy for __m128i

1.27.0 · source§

impl Copy for __m256

source§

impl Copy for __m256bh

1.27.0 · source§

impl Copy for __m256d

1.27.0 · source§

impl Copy for __m256i

1.74.0-nightly · source§

impl Copy for __m512

source§

impl Copy for __m512bh

1.74.0-nightly · source§

impl Copy for __m512d

1.74.0-nightly · source§

impl Copy for __m512i

source§

impl Copy for Ipv4Addr

source§

impl Copy for Ipv6Addr

source§

impl Copy for SocketAddrV4

source§

impl Copy for SocketAddrV6

1.28.0 · source§

impl Copy for System

source§

impl Copy for FileTimes

1.1.0 · source§

impl Copy for FileType

source§

impl Copy for Empty

source§

impl Copy for Sink

source§

impl Copy for UCred

1.61.0 · source§

impl Copy for ExitCode

source§

impl Copy for ExitStatus

source§

impl Copy for ExitStatusError

1.5.0 · source§

impl Copy for WaitTimeoutResult

source§

impl Copy for RecvError

1.26.0 · source§

impl Copy for AccessError

1.19.0 · source§

impl Copy for ThreadId

1.8.0 · source§

impl Copy for Instant

1.8.0 · source§

impl Copy for SystemTime

source§

impl Copy for getrandom::error::Error

source§

impl Copy for IgnoredAny

source§

impl Copy for Bernoulli

source§

impl Copy for Open01

source§

impl Copy for OpenClosed01

source§

impl Copy for Alphanumeric

source§

impl Copy for Standard

source§

impl Copy for UniformChar

source§

impl Copy for UniformDuration

source§

impl Copy for OsRng

1.33.0 · source§

impl Copy for PhantomPinned

§

impl Copy for Aborted

§

impl Copy for AllocError

§

impl Copy for Alphabet

§

impl Copy for BigEndian

§

impl Copy for Canceled

§

impl Copy for Const

§

impl Copy for DIR

§

impl Copy for Dl_info

§

impl Copy for Elf32_Chdr

§

impl Copy for Elf32_Ehdr

§

impl Copy for Elf32_Phdr

§

impl Copy for Elf32_Shdr

§

impl Copy for Elf32_Sym

§

impl Copy for Elf64_Chdr

§

impl Copy for Elf64_Ehdr

§

impl Copy for Elf64_Phdr

§

impl Copy for Elf64_Shdr

§

impl Copy for Elf64_Sym

§

impl Copy for EnvVars

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for FILE

§

impl Copy for FromHexError

§

impl Copy for FromStrRadixErrKind

§

impl Copy for Global

§

impl Copy for H128

§

impl Copy for H160

§

impl Copy for H256

§

impl Copy for H384

§

impl Copy for H512

§

impl Copy for H768

§

impl Copy for LittleEndian

§

impl Copy for Lsb0

§

impl Copy for MetaForm

§

impl Copy for Msb0

§

impl Copy for Mut

§

impl Copy for NoA1

§

impl Copy for NoA2

§

impl Copy for NoNI

§

impl Copy for NoS3

§

impl Copy for NoS4

§

impl Copy for NullPtrError

§

impl Copy for OptionBool

§

impl Copy for PollNext

§

impl Copy for PortableForm

§

impl Copy for Prefilter

§

impl Copy for U128

§

impl Copy for U256

§

impl Copy for U512

§

impl Copy for YesA1

§

impl Copy for YesA2

§

impl Copy for YesNI

§

impl Copy for YesS3

§

impl Copy for YesS4

§

impl Copy for __c_anonymous_ifr_ifru

§

impl Copy for __c_anonymous_ifru_map

§

impl Copy for __c_anonymous_ptrace_syscall_info_data

§

impl Copy for __c_anonymous_ptrace_syscall_info_entry

§

impl Copy for __c_anonymous_ptrace_syscall_info_exit

§

impl Copy for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Copy for __c_anonymous_sockaddr_can_can_addr

§

impl Copy for __c_anonymous_sockaddr_can_j1939

§

impl Copy for __c_anonymous_sockaddr_can_tp

§

impl Copy for __exit_status

§

impl Copy for __timeval

§

impl Copy for _libc_fpstate

§

impl Copy for _libc_fpxreg

§

impl Copy for _libc_xmmreg

§

impl Copy for addrinfo

§

impl Copy for af_alg_iv

§

impl Copy for aiocb

§

impl Copy for arpd_request

§

impl Copy for arphdr

§

impl Copy for arpreq

§

impl Copy for arpreq_old

§

impl Copy for can_filter

§

impl Copy for can_frame

§

impl Copy for canfd_frame

§

impl Copy for canxl_frame

§

impl Copy for clone_args

§

impl Copy for cmsghdr

§

impl Copy for cpu_set_t

§

impl Copy for dirent

§

impl Copy for dirent64

§

impl Copy for dl_phdr_info

§

impl Copy for dqblk

§

impl Copy for epoll_event

§

impl Copy for fanotify_event_metadata

§

impl Copy for fanotify_response

§

impl Copy for fd_set

§

impl Copy for ff_condition_effect

§

impl Copy for ff_constant_effect

§

impl Copy for ff_effect

§

impl Copy for ff_envelope

§

impl Copy for ff_periodic_effect

§

impl Copy for ff_ramp_effect

§

impl Copy for ff_replay

§

impl Copy for ff_rumble_effect

§

impl Copy for ff_trigger

§

impl Copy for file_clone_range

§

impl Copy for flock

§

impl Copy for flock64

§

impl Copy for fpos64_t

§

impl Copy for fpos_t

§

impl Copy for fsid_t

§

impl Copy for genlmsghdr

§

impl Copy for glob64_t

§

impl Copy for glob_t

§

impl Copy for group

§

impl Copy for hostent

§

impl Copy for hwtstamp_config

§

impl Copy for if_nameindex

§

impl Copy for ifaddrs

§

impl Copy for ifreq

§

impl Copy for in6_addr

§

impl Copy for in6_ifreq

§

impl Copy for in6_pktinfo

§

impl Copy for in6_rtmsg

§

impl Copy for in_addr

§

impl Copy for in_pktinfo

§

impl Copy for inotify_event

§

impl Copy for input_absinfo

§

impl Copy for input_event

§

impl Copy for input_id

§

impl Copy for input_keymap_entry

§

impl Copy for input_mask

§

impl Copy for iovec

§

impl Copy for ip_mreq

§

impl Copy for ip_mreq_source

§

impl Copy for ip_mreqn

§

impl Copy for ipc_perm

§

impl Copy for ipv6_mreq

§

impl Copy for itimerspec

§

impl Copy for itimerval

§

impl Copy for j1939_filter

§

impl Copy for lconv

§

impl Copy for linger

§

impl Copy for mallinfo

§

impl Copy for mallinfo2

§

impl Copy for max_align_t

§

impl Copy for mcontext_t

§

impl Copy for mmsghdr

§

impl Copy for mntent

§

impl Copy for mq_attr

§

impl Copy for msghdr

§

impl Copy for msginfo

§

impl Copy for msqid_ds

§

impl Copy for nl_mmap_hdr

§

impl Copy for nl_mmap_req

§

impl Copy for nl_pktinfo

§

impl Copy for nlattr

§

impl Copy for nlmsgerr

§

impl Copy for nlmsghdr

§

impl Copy for ntptimeval

§

impl Copy for open_how

§

impl Copy for option

§

impl Copy for packet_mreq

§

impl Copy for passwd

§

impl Copy for pollfd

§

impl Copy for posix_spawn_file_actions_t

§

impl Copy for posix_spawnattr_t

§

impl Copy for protoent

§

impl Copy for pthread_attr_t

§

impl Copy for pthread_barrier_t

§

impl Copy for pthread_barrierattr_t

§

impl Copy for pthread_cond_t

§

impl Copy for pthread_condattr_t

§

impl Copy for pthread_mutex_t

§

impl Copy for pthread_mutexattr_t

§

impl Copy for pthread_rwlock_t

§

impl Copy for pthread_rwlockattr_t

§

impl Copy for ptrace_peeksiginfo_args

§

impl Copy for ptrace_rseq_configuration

§

impl Copy for ptrace_syscall_info

§

impl Copy for regex_t

§

impl Copy for regmatch_t

§

impl Copy for rlimit

§

impl Copy for rlimit64

§

impl Copy for rtentry

§

impl Copy for rusage

§

impl Copy for sched_param

§

impl Copy for sctp_authinfo

§

impl Copy for sctp_initmsg

§

impl Copy for sctp_nxtinfo

§

impl Copy for sctp_prinfo

§

impl Copy for sctp_rcvinfo

§

impl Copy for sctp_sndinfo

§

impl Copy for sctp_sndrcvinfo

§

impl Copy for seccomp_data

§

impl Copy for seccomp_notif_sizes

§

impl Copy for sem_t

§

impl Copy for sembuf

§

impl Copy for semid_ds

§

impl Copy for seminfo

§

impl Copy for servent

§

impl Copy for shmid_ds

§

impl Copy for sigaction

§

impl Copy for sigevent

§

impl Copy for siginfo_t

§

impl Copy for signalfd_siginfo

§

impl Copy for sigset_t

§

impl Copy for sigval

§

impl Copy for sock_extended_err

§

impl Copy for sock_filter

§

impl Copy for sock_fprog

§

impl Copy for sock_txtime

§

impl Copy for sockaddr

§

impl Copy for sockaddr_alg

§

impl Copy for sockaddr_can

§

impl Copy for sockaddr_in

§

impl Copy for sockaddr_in6

§

impl Copy for sockaddr_ll

§

impl Copy for sockaddr_nl

§

impl Copy for sockaddr_storage

§

impl Copy for sockaddr_un

§

impl Copy for sockaddr_vm

§

impl Copy for spwd

§

impl Copy for stack_t

§

impl Copy for stat

§

impl Copy for stat64

§

impl Copy for statfs

§

impl Copy for statfs64

§

impl Copy for statvfs

§

impl Copy for statvfs64

§

impl Copy for statx

§

impl Copy for statx_timestamp

§

impl Copy for sysinfo

§

impl Copy for termios

§

impl Copy for termios2

§

impl Copy for timespec

§

impl Copy for timeval

§

impl Copy for timex

§

impl Copy for timezone

§

impl Copy for tm

§

impl Copy for tms

§

impl Copy for ucontext_t

§

impl Copy for ucred

§

impl Copy for uinput_abs_setup

§

impl Copy for uinput_ff_erase

§

impl Copy for uinput_ff_upload

§

impl Copy for uinput_setup

§

impl Copy for uinput_user_dev

§

impl Copy for user

§

impl Copy for user_fpregs_struct

§

impl Copy for user_regs_struct

§

impl Copy for utimbuf

§

impl Copy for utmpx

§

impl Copy for utsname

§

impl Copy for vec128_storage

§

impl Copy for vec256_storage

§

impl Copy for vec512_storage

§

impl Copy for winsize

source§

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

source§

impl<'a> Copy for Prefix<'a>

source§

impl<'a> Copy for Unexpected<'a>

source§

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

1.10.0 · source§

impl<'a> Copy for Location<'a>

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

Implementors§

§

impl Copy for ErrorReplyReason

§

impl Copy for ExecutionError

§

impl Copy for ExtError

§

impl Copy for MemoryError

§

impl Copy for MessageError

§

impl Copy for ProgramRentError

§

impl Copy for ReplyCode

§

impl Copy for ReservationError

§

impl Copy for SignalCode

§

impl Copy for SimpleExecutionError

§

impl Copy for SimpleProgramCreationError

§

impl Copy for SuccessReplyReason

source§

impl Copy for AsciiChar

source§

impl Copy for gstd::prelude::cmp::Ordering

1.34.0 · source§

impl Copy for Infallible

1.28.0 · source§

impl Copy for gstd::prelude::fmt::Alignment

source§

impl Copy for FpCategory

source§

impl Copy for SearchStep

source§

impl Copy for Which

1.7.0 · source§

impl Copy for IpAddr

source§

impl Copy for Ipv6MulticastScope

source§

impl Copy for SocketAddr

source§

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

source§

impl Copy for SeekFrom

source§

impl Copy for ErrorKind

source§

impl Copy for Shutdown

source§

impl Copy for BacktraceStyle

1.12.0 · source§

impl Copy for RecvTimeoutError

source§

impl Copy for TryRecvError

source§

impl Copy for _Unwind_Action

source§

impl Copy for _Unwind_Reason_Code

source§

impl Copy for hex::error::FromHexError

source§

impl Copy for BernoulliError

source§

impl Copy for WeightedError

source§

impl Copy for bool

source§

impl Copy for char

source§

impl Copy for f32

source§

impl Copy for f64

source§

impl Copy for i8

source§

impl Copy for i16

source§

impl Copy for i32

source§

impl Copy for i64

source§

impl Copy for i128

source§

impl Copy for isize

source§

impl Copy for !

source§

impl Copy for u8

source§

impl Copy for u16

source§

impl Copy for u32

source§

impl Copy for u64

source§

impl Copy for u128

source§

impl Copy for usize

§

impl Copy for SyscallError

source§

impl Copy for gstd::msg::MessageHandle

source§

impl Copy for gstd::ActorId

source§

impl Copy for gstd::CodeId

§

impl Copy for GasMultiplier

source§

impl Copy for gstd::MessageId

§

impl Copy for Percent

source§

impl Copy for Reservation

source§

impl Copy for gstd::ReservationId

§

impl Copy for MetaType

source§

impl Copy for TypeId

1.34.0 · source§

impl Copy for TryFromSliceError

1.34.0 · source§

impl Copy for CharTryFromError

1.59.0 · source§

impl Copy for TryFromCharError

source§

impl Copy for gstd::prelude::fmt::Error

source§

impl Copy for Assume

1.34.0 · source§

impl Copy for NonZeroI8

1.34.0 · source§

impl Copy for NonZeroI16

1.34.0 · source§

impl Copy for NonZeroI32

1.34.0 · source§

impl Copy for NonZeroI64

1.34.0 · source§

impl Copy for NonZeroI128

1.34.0 · source§

impl Copy for NonZeroIsize

1.28.0 · source§

impl Copy for NonZeroU8

1.28.0 · source§

impl Copy for NonZeroU16

1.28.0 · source§

impl Copy for NonZeroU32

1.28.0 · source§

impl Copy for NonZeroU64

1.28.0 · source§

impl Copy for NonZeroU128

1.28.0 · source§

impl Copy for NonZeroUsize

1.34.0 · source§

impl Copy for TryFromIntError

source§

impl Copy for RangeFull

source§

impl Copy for gstd::prelude::ptr::Alignment

source§

impl Copy for TimSortRun

source§

impl Copy for Utf8Error

1.36.0 · source§

impl Copy for RawWakerVTable

1.3.0 · source§

impl Copy for Duration

source§

impl Copy for alloc::alloc::Global

1.28.0 · source§

impl Copy for Layout

source§

impl Copy for core::alloc::AllocError

1.27.0 · source§

impl Copy for CpuidResult

1.27.0 · source§

impl Copy for __m128

source§

impl Copy for __m128bh

1.27.0 · source§

impl Copy for __m128d

1.27.0 · source§

impl Copy for __m128i

1.27.0 · source§

impl Copy for __m256

source§

impl Copy for __m256bh

1.27.0 · source§

impl Copy for __m256d

1.27.0 · source§

impl Copy for __m256i

1.74.0-nightly · source§

impl Copy for __m512

source§

impl Copy for __m512bh

1.74.0-nightly · source§

impl Copy for __m512d

1.74.0-nightly · source§

impl Copy for __m512i

source§

impl Copy for Ipv4Addr

source§

impl Copy for Ipv6Addr

source§

impl Copy for SocketAddrV4

source§

impl Copy for SocketAddrV6

1.28.0 · source§

impl Copy for System

source§

impl Copy for FileTimes

1.1.0 · source§

impl Copy for FileType

source§

impl Copy for Empty

source§

impl Copy for Sink

source§

impl Copy for UCred

1.61.0 · source§

impl Copy for ExitCode

source§

impl Copy for ExitStatus

source§

impl Copy for ExitStatusError

1.5.0 · source§

impl Copy for WaitTimeoutResult

source§

impl Copy for RecvError

1.26.0 · source§

impl Copy for AccessError

1.19.0 · source§

impl Copy for ThreadId

1.8.0 · source§

impl Copy for Instant

1.8.0 · source§

impl Copy for SystemTime

source§

impl Copy for getrandom::error::Error

source§

impl Copy for IgnoredAny

source§

impl Copy for Bernoulli

source§

impl Copy for Open01

source§

impl Copy for OpenClosed01

source§

impl Copy for Alphanumeric

source§

impl Copy for Standard

source§

impl Copy for UniformChar

source§

impl Copy for UniformDuration

source§

impl Copy for OsRng

1.33.0 · source§

impl Copy for PhantomPinned

§

impl Copy for Aborted

§

impl Copy for ActorId

§

impl Copy for AllocError

§

impl Copy for Alphabet

§

impl Copy for BigEndian

§

impl Copy for Canceled

§

impl Copy for CodeId

§

impl Copy for Const

§

impl Copy for DIR

§

impl Copy for Dl_info

§

impl Copy for Elf32_Chdr

§

impl Copy for Elf32_Ehdr

§

impl Copy for Elf32_Phdr

§

impl Copy for Elf32_Shdr

§

impl Copy for Elf32_Sym

§

impl Copy for Elf64_Chdr

§

impl Copy for Elf64_Ehdr

§

impl Copy for Elf64_Phdr

§

impl Copy for Elf64_Shdr

§

impl Copy for Elf64_Sym

§

impl Copy for EnvVars

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for FILE

§

impl Copy for FromHexError

§

impl Copy for FromStrRadixErrKind

§

impl Copy for Global

§

impl Copy for H128

§

impl Copy for H160

§

impl Copy for H256

§

impl Copy for H384

§

impl Copy for H512

§

impl Copy for H768

§

impl Copy for LittleEndian

§

impl Copy for Lsb0

§

impl Copy for MessageHandle

§

impl Copy for MessageId

§

impl Copy for MetaForm

§

impl Copy for Msb0

§

impl Copy for Mut

§

impl Copy for NoA1

§

impl Copy for NoA2

§

impl Copy for NoNI

§

impl Copy for NoS3

§

impl Copy for NoS4

§

impl Copy for NullPtrError

§

impl Copy for OptionBool

§

impl Copy for PollNext

§

impl Copy for PortableForm

§

impl Copy for Prefilter

§

impl Copy for ReservationId

§

impl Copy for U128

§

impl Copy for U256

§

impl Copy for U512

§

impl Copy for YesA1

§

impl Copy for YesA2

§

impl Copy for YesNI

§

impl Copy for YesS3

§

impl Copy for YesS4

§

impl Copy for __c_anonymous_ifr_ifru

§

impl Copy for __c_anonymous_ifru_map

§

impl Copy for __c_anonymous_ptrace_syscall_info_data

§

impl Copy for __c_anonymous_ptrace_syscall_info_entry

§

impl Copy for __c_anonymous_ptrace_syscall_info_exit

§

impl Copy for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Copy for __c_anonymous_sockaddr_can_can_addr

§

impl Copy for __c_anonymous_sockaddr_can_j1939

§

impl Copy for __c_anonymous_sockaddr_can_tp

§

impl Copy for __exit_status

§

impl Copy for __timeval

§

impl Copy for _libc_fpstate

§

impl Copy for _libc_fpxreg

§

impl Copy for _libc_xmmreg

§

impl Copy for addrinfo

§

impl Copy for af_alg_iv

§

impl Copy for aiocb

§

impl Copy for arpd_request

§

impl Copy for arphdr

§

impl Copy for arpreq

§

impl Copy for arpreq_old

§

impl Copy for can_filter

§

impl Copy for can_frame

§

impl Copy for canfd_frame

§

impl Copy for canxl_frame

§

impl Copy for clone_args

§

impl Copy for cmsghdr

§

impl Copy for cpu_set_t

§

impl Copy for dirent

§

impl Copy for dirent64

§

impl Copy for dl_phdr_info

§

impl Copy for dqblk

§

impl Copy for epoll_event

§

impl Copy for fanotify_event_metadata

§

impl Copy for fanotify_response

§

impl Copy for fd_set

§

impl Copy for ff_condition_effect

§

impl Copy for ff_constant_effect

§

impl Copy for ff_effect

§

impl Copy for ff_envelope

§

impl Copy for ff_periodic_effect

§

impl Copy for ff_ramp_effect

§

impl Copy for ff_replay

§

impl Copy for ff_rumble_effect

§

impl Copy for ff_trigger

§

impl Copy for file_clone_range

§

impl Copy for flock

§

impl Copy for flock64

§

impl Copy for fpos64_t

§

impl Copy for fpos_t

§

impl Copy for fsid_t

§

impl Copy for genlmsghdr

§

impl Copy for glob64_t

§

impl Copy for glob_t

§

impl Copy for group

§

impl Copy for hostent

§

impl Copy for hwtstamp_config

§

impl Copy for if_nameindex

§

impl Copy for ifaddrs

§

impl Copy for ifreq

§

impl Copy for in6_addr

§

impl Copy for in6_ifreq

§

impl Copy for in6_pktinfo

§

impl Copy for in6_rtmsg

§

impl Copy for in_addr

§

impl Copy for in_pktinfo

§

impl Copy for inotify_event

§

impl Copy for input_absinfo

§

impl Copy for input_event

§

impl Copy for input_id

§

impl Copy for input_keymap_entry

§

impl Copy for input_mask

§

impl Copy for iovec

§

impl Copy for ip_mreq

§

impl Copy for ip_mreq_source

§

impl Copy for ip_mreqn

§

impl Copy for ipc_perm

§

impl Copy for ipv6_mreq

§

impl Copy for itimerspec

§

impl Copy for itimerval

§

impl Copy for j1939_filter

§

impl Copy for lconv

§

impl Copy for linger

§

impl Copy for mallinfo

§

impl Copy for mallinfo2

§

impl Copy for max_align_t

§

impl Copy for mcontext_t

§

impl Copy for mmsghdr

§

impl Copy for mntent

§

impl Copy for mq_attr

§

impl Copy for msghdr

§

impl Copy for msginfo

§

impl Copy for msqid_ds

§

impl Copy for nl_mmap_hdr

§

impl Copy for nl_mmap_req

§

impl Copy for nl_pktinfo

§

impl Copy for nlattr

§

impl Copy for nlmsgerr

§

impl Copy for nlmsghdr

§

impl Copy for ntptimeval

§

impl Copy for open_how

§

impl Copy for option

§

impl Copy for packet_mreq

§

impl Copy for passwd

§

impl Copy for pollfd

§

impl Copy for posix_spawn_file_actions_t

§

impl Copy for posix_spawnattr_t

§

impl Copy for protoent

§

impl Copy for pthread_attr_t

§

impl Copy for pthread_barrier_t

§

impl Copy for pthread_barrierattr_t

§

impl Copy for pthread_cond_t

§

impl Copy for pthread_condattr_t

§

impl Copy for pthread_mutex_t

§

impl Copy for pthread_mutexattr_t

§

impl Copy for pthread_rwlock_t

§

impl Copy for pthread_rwlockattr_t

§

impl Copy for ptrace_peeksiginfo_args

§

impl Copy for ptrace_rseq_configuration

§

impl Copy for ptrace_syscall_info

§

impl Copy for regex_t

§

impl Copy for regmatch_t

§

impl Copy for rlimit

§

impl Copy for rlimit64

§

impl Copy for rtentry

§

impl Copy for rusage

§

impl Copy for sched_param

§

impl Copy for sctp_authinfo

§

impl Copy for sctp_initmsg

§

impl Copy for sctp_nxtinfo

§

impl Copy for sctp_prinfo

§

impl Copy for sctp_rcvinfo

§

impl Copy for sctp_sndinfo

§

impl Copy for sctp_sndrcvinfo

§

impl Copy for seccomp_data

§

impl Copy for seccomp_notif_sizes

§

impl Copy for sem_t

§

impl Copy for sembuf

§

impl Copy for semid_ds

§

impl Copy for seminfo

§

impl Copy for servent

§

impl Copy for shmid_ds

§

impl Copy for sigaction

§

impl Copy for sigevent

§

impl Copy for siginfo_t

§

impl Copy for signalfd_siginfo

§

impl Copy for sigset_t

§

impl Copy for sigval

§

impl Copy for sock_extended_err

§

impl Copy for sock_filter

§

impl Copy for sock_fprog

§

impl Copy for sock_txtime

§

impl Copy for sockaddr

§

impl Copy for sockaddr_alg

§

impl Copy for sockaddr_can

§

impl Copy for sockaddr_in

§

impl Copy for sockaddr_in6

§

impl Copy for sockaddr_ll

§

impl Copy for sockaddr_nl

§

impl Copy for sockaddr_storage

§

impl Copy for sockaddr_un

§

impl Copy for sockaddr_vm

§

impl Copy for spwd

§

impl Copy for stack_t

§

impl Copy for stat

§

impl Copy for stat64

§

impl Copy for statfs

§

impl Copy for statfs64

§

impl Copy for statvfs

§

impl Copy for statvfs64

§

impl Copy for statx

§

impl Copy for statx_timestamp

§

impl Copy for sysinfo

§

impl Copy for termios

§

impl Copy for termios2

§

impl Copy for timespec

§

impl Copy for timeval

§

impl Copy for timex

§

impl Copy for timezone

§

impl Copy for tm

§

impl Copy for tms

§

impl Copy for ucontext_t

§

impl Copy for ucred

§

impl Copy for uinput_abs_setup

§

impl Copy for uinput_ff_erase

§

impl Copy for uinput_ff_upload

§

impl Copy for uinput_setup

§

impl Copy for uinput_user_dev

§

impl Copy for user

§

impl Copy for user_fpregs_struct

§

impl Copy for user_regs_struct

§

impl Copy for utimbuf

§

impl Copy for utmpx

§

impl Copy for utsname

§

impl Copy for vec128_storage

§

impl Copy for vec256_storage

§

impl Copy for vec512_storage

§

impl Copy for winsize

source§

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

source§

impl<'a> Copy for Prefix<'a>

source§

impl<'a> Copy for Unexpected<'a>

source§

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

1.10.0 · source§

impl<'a> Copy for Location<'a>

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

§

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

§

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

§

impl<'a, T, O> Copy for IterOnes<'a, T, O>where diff --git a/pr-3467/gstd/prelude/marker/trait.StructuralEq.html b/pr-3467/gstd/prelude/marker/trait.StructuralEq.html index 983599ee98b..4d614c80789 100644 --- a/pr-3467/gstd/prelude/marker/trait.StructuralEq.html +++ b/pr-3467/gstd/prelude/marker/trait.StructuralEq.html @@ -33,7 +33,7 @@

Background

As a hack to work around this, we use two separate traits injected by each of the two derives (#[derive(PartialEq)] and #[derive(Eq)]) and check that both of them are present as part of structural-match checking.

-

Implementors§

source§

impl StructuralEq for gcore::errors::Error

source§

impl StructuralEq for gstd::errors::Error

§

impl StructuralEq for ErrorReplyReason

§

impl StructuralEq for ExecutionError

§

impl StructuralEq for ExtError

§

impl StructuralEq for MemoryError

§

impl StructuralEq for MessageError

§

impl StructuralEq for ProgramRentError

§

impl StructuralEq for ReplyCode

§

impl StructuralEq for ReservationError

§

impl StructuralEq for SignalCode

§

impl StructuralEq for SimpleExecutionError

§

impl StructuralEq for SimpleProgramCreationError

§

impl StructuralEq for SuccessReplyReason

source§

impl StructuralEq for AsciiChar

1.0.0 · source§

impl StructuralEq for gstd::prelude::cmp::Ordering

source§

impl StructuralEq for TryReserveErrorKind

§

impl StructuralEq for gstd::prelude::collections::hashbrown::TryReserveError

1.28.0 · source§

impl StructuralEq for gstd::prelude::fmt::Alignment

1.0.0 · source§

impl StructuralEq for FpCategory

1.55.0 · source§

impl StructuralEq for IntErrorKind

source§

impl StructuralEq for SearchStep

source§

impl StructuralEq for Which

1.7.0 · source§

impl StructuralEq for IpAddr

source§

impl StructuralEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralEq for SocketAddr

1.0.0 · source§

impl StructuralEq for core::sync::atomic::Ordering

1.65.0 · source§

impl StructuralEq for BacktraceStatus

1.0.0 · source§

impl StructuralEq for VarError

1.0.0 · source§

impl StructuralEq for SeekFrom

1.0.0 · source§

impl StructuralEq for ErrorKind

1.0.0 · source§

impl StructuralEq for Shutdown

source§

impl StructuralEq for BacktraceStyle

1.12.0 · source§

impl StructuralEq for RecvTimeoutError

1.0.0 · source§

impl StructuralEq for TryRecvError

source§

impl StructuralEq for BernoulliError

source§

impl StructuralEq for WeightedError

source§

impl StructuralEq for bool

source§

impl StructuralEq for char

source§

impl StructuralEq for i8

source§

impl StructuralEq for i16

source§

impl StructuralEq for i32

source§

impl StructuralEq for i64

source§

impl StructuralEq for i128

source§

impl StructuralEq for isize

source§

impl StructuralEq for str

source§

impl StructuralEq for u8

source§

impl StructuralEq for u16

source§

impl StructuralEq for u32

source§

impl StructuralEq for u64

source§

impl StructuralEq for u128

source§

impl StructuralEq for ()

source§

impl StructuralEq for usize

source§

impl StructuralEq for gcore::general::ActorId

source§

impl StructuralEq for gcore::general::CodeId

source§

impl StructuralEq for gcore::general::MessageHandle

source§

impl StructuralEq for gcore::general::MessageId

source§

impl StructuralEq for gcore::general::ReservationId

source§

impl StructuralEq for SyscallError

source§

impl StructuralEq for gstd::msg::MessageHandle

source§

impl StructuralEq for gstd::ActorId

source§

impl StructuralEq for gstd::CodeId

source§

impl StructuralEq for gstd::MessageId

§

impl StructuralEq for Percent

source§

impl StructuralEq for gstd::ReservationId

1.0.0 · source§

impl StructuralEq for TypeId

1.34.0 · source§

impl StructuralEq for CharTryFromError

1.9.0 · source§

impl StructuralEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralEq for ParseCharError

1.59.0 · source§

impl StructuralEq for TryFromCharError

1.57.0 · source§

impl StructuralEq for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl StructuralEq for CString

1.69.0 · source§

impl StructuralEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralEq for FromVecWithNulError

1.64.0 · source§

impl StructuralEq for IntoStringError

1.64.0 · source§

impl StructuralEq for NulError

1.0.0 · source§

impl StructuralEq for gstd::prelude::fmt::Error

source§

impl StructuralEq for Assume

1.34.0 · source§

impl StructuralEq for NonZeroI8

1.34.0 · source§

impl StructuralEq for NonZeroI16

1.34.0 · source§

impl StructuralEq for NonZeroI32

1.34.0 · source§

impl StructuralEq for NonZeroI64

1.34.0 · source§

impl StructuralEq for NonZeroI128

1.34.0 · source§

impl StructuralEq for NonZeroIsize

1.28.0 · source§

impl StructuralEq for NonZeroU8

1.28.0 · source§

impl StructuralEq for NonZeroU16

1.28.0 · source§

impl StructuralEq for NonZeroU32

1.28.0 · source§

impl StructuralEq for NonZeroU64

1.28.0 · source§

impl StructuralEq for NonZeroU128

1.28.0 · source§

impl StructuralEq for NonZeroUsize

1.0.0 · source§

impl StructuralEq for ParseFloatError

1.0.0 · source§

impl StructuralEq for ParseIntError

1.34.0 · source§

impl StructuralEq for TryFromIntError

1.0.0 · source§

impl StructuralEq for RangeFull

source§

impl StructuralEq for gstd::prelude::ptr::Alignment

1.0.0 · source§

impl StructuralEq for ParseBoolError

1.0.0 · source§

impl StructuralEq for Utf8Error

1.0.0 · source§

impl StructuralEq for FromUtf8Error

1.0.0 · source§

impl StructuralEq for String

1.3.0 · source§

impl StructuralEq for Duration

1.66.0 · source§

impl StructuralEq for TryFromFloatSecsError

1.28.0 · source§

impl StructuralEq for Layout

1.50.0 · source§

impl StructuralEq for LayoutError

source§

impl StructuralEq for core::alloc::AllocError

1.27.0 · source§

impl StructuralEq for CpuidResult

1.0.0 · source§

impl StructuralEq for Ipv4Addr

1.0.0 · source§

impl StructuralEq for Ipv6Addr

1.0.0 · source§

impl StructuralEq for AddrParseError

1.0.0 · source§

impl StructuralEq for SocketAddrV4

1.0.0 · source§

impl StructuralEq for SocketAddrV6

1.1.0 · source§

impl StructuralEq for FileType

1.0.0 · source§

impl StructuralEq for Permissions

source§

impl StructuralEq for UCred

1.7.0 · source§

impl StructuralEq for StripPrefixError

1.0.0 · source§

impl StructuralEq for ExitStatus

source§

impl StructuralEq for ExitStatusError

1.0.0 · source§

impl StructuralEq for Output

1.5.0 · source§

impl StructuralEq for WaitTimeoutResult

1.0.0 · source§

impl StructuralEq for RecvError

1.26.0 · source§

impl StructuralEq for AccessError

1.19.0 · source§

impl StructuralEq for ThreadId

1.8.0 · source§

impl StructuralEq for Instant

1.8.0 · source§

impl StructuralEq for SystemTime

source§

impl StructuralEq for getrandom::error::Error

source§

impl StructuralEq for StepRng

source§

impl StructuralEq for SmallRng

source§

impl StructuralEq for StdRng

source§

impl StructuralEq for ChaCha8Core

source§

impl StructuralEq for ChaCha12Core

source§

impl StructuralEq for ChaCha20Core

1.33.0 · source§

impl StructuralEq for PhantomPinned

§

impl StructuralEq for Aborted

§

impl StructuralEq for AllocError

§

impl StructuralEq for BigEndian

§

impl StructuralEq for Canceled

§

impl StructuralEq for Const

§

impl StructuralEq for Dl_info

§

impl StructuralEq for Elf32_Chdr

§

impl StructuralEq for Elf32_Ehdr

§

impl StructuralEq for Elf32_Phdr

§

impl StructuralEq for Elf32_Shdr

§

impl StructuralEq for Elf32_Sym

§

impl StructuralEq for Elf64_Chdr

§

impl StructuralEq for Elf64_Ehdr

§

impl StructuralEq for Elf64_Phdr

§

impl StructuralEq for Elf64_Shdr

§

impl StructuralEq for Elf64_Sym

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for FromStrRadixErrKind

§

impl StructuralEq for LittleEndian

§

impl StructuralEq for Lsb0

§

impl StructuralEq for MetaForm

§

impl StructuralEq for Msb0

§

impl StructuralEq for Mut

§

impl StructuralEq for NullPtrError

§

impl StructuralEq for OptionBool

§

impl StructuralEq for PathError

§

impl StructuralEq for PollNext

§

impl StructuralEq for PortableForm

§

impl StructuralEq for PortableRegistry

§

impl StructuralEq for PortableType

§

impl StructuralEq for Registry

§

impl StructuralEq for SendError

§

impl StructuralEq for TypeDefPrimitive

§

impl StructuralEq for U128

§

impl StructuralEq for U256

§

impl StructuralEq for U512

§

impl StructuralEq for __c_anonymous_ifru_map

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_entry

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_exit

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl StructuralEq for __c_anonymous_sockaddr_can_j1939

§

impl StructuralEq for __c_anonymous_sockaddr_can_tp

§

impl StructuralEq for __exit_status

§

impl StructuralEq for __timeval

§

impl StructuralEq for _libc_fpstate

§

impl StructuralEq for _libc_fpxreg

§

impl StructuralEq for _libc_xmmreg

§

impl StructuralEq for addrinfo

§

impl StructuralEq for aiocb

§

impl StructuralEq for arpd_request

§

impl StructuralEq for arphdr

§

impl StructuralEq for arpreq

§

impl StructuralEq for arpreq_old

§

impl StructuralEq for can_filter

§

impl StructuralEq for clone_args

§

impl StructuralEq for cmsghdr

§

impl StructuralEq for cpu_set_t

§

impl StructuralEq for dl_phdr_info

§

impl StructuralEq for dqblk

§

impl StructuralEq for fanotify_event_metadata

§

impl StructuralEq for fanotify_response

§

impl StructuralEq for fd_set

§

impl StructuralEq for ff_condition_effect

§

impl StructuralEq for ff_constant_effect

§

impl StructuralEq for ff_effect

§

impl StructuralEq for ff_envelope

§

impl StructuralEq for ff_periodic_effect

§

impl StructuralEq for ff_ramp_effect

§

impl StructuralEq for ff_replay

§

impl StructuralEq for ff_rumble_effect

§

impl StructuralEq for ff_trigger

§

impl StructuralEq for file_clone_range

§

impl StructuralEq for flock

§

impl StructuralEq for flock64

§

impl StructuralEq for fsid_t

§

impl StructuralEq for genlmsghdr

§

impl StructuralEq for glob64_t

§

impl StructuralEq for glob_t

§

impl StructuralEq for group

§

impl StructuralEq for hostent

§

impl StructuralEq for if_nameindex

§

impl StructuralEq for ifaddrs

§

impl StructuralEq for in6_addr

§

impl StructuralEq for in6_ifreq

§

impl StructuralEq for in6_pktinfo

§

impl StructuralEq for in6_rtmsg

§

impl StructuralEq for in_addr

§

impl StructuralEq for in_pktinfo

§

impl StructuralEq for inotify_event

§

impl StructuralEq for input_absinfo

§

impl StructuralEq for input_event

§

impl StructuralEq for input_id

§

impl StructuralEq for input_keymap_entry

§

impl StructuralEq for input_mask

§

impl StructuralEq for iovec

§

impl StructuralEq for ip_mreq

§

impl StructuralEq for ip_mreq_source

§

impl StructuralEq for ip_mreqn

§

impl StructuralEq for ipc_perm

§

impl StructuralEq for ipv6_mreq

§

impl StructuralEq for itimerspec

§

impl StructuralEq for itimerval

§

impl StructuralEq for j1939_filter

§

impl StructuralEq for lconv

§

impl StructuralEq for linger

§

impl StructuralEq for mallinfo

§

impl StructuralEq for mallinfo2

§

impl StructuralEq for mcontext_t

§

impl StructuralEq for mmsghdr

§

impl StructuralEq for mntent

§

impl StructuralEq for msghdr

§

impl StructuralEq for msginfo

§

impl StructuralEq for msqid_ds

§

impl StructuralEq for nl_mmap_hdr

§

impl StructuralEq for nl_mmap_req

§

impl StructuralEq for nl_pktinfo

§

impl StructuralEq for nlattr

§

impl StructuralEq for nlmsgerr

§

impl StructuralEq for nlmsghdr

§

impl StructuralEq for ntptimeval

§

impl StructuralEq for open_how

§

impl StructuralEq for option

§

impl StructuralEq for packet_mreq

§

impl StructuralEq for passwd

§

impl StructuralEq for pollfd

§

impl StructuralEq for posix_spawn_file_actions_t

§

impl StructuralEq for posix_spawnattr_t

§

impl StructuralEq for protoent

§

impl StructuralEq for pthread_attr_t

§

impl StructuralEq for pthread_barrierattr_t

§

impl StructuralEq for pthread_condattr_t

§

impl StructuralEq for pthread_mutexattr_t

§

impl StructuralEq for pthread_rwlockattr_t

§

impl StructuralEq for ptrace_peeksiginfo_args

§

impl StructuralEq for ptrace_rseq_configuration

§

impl StructuralEq for ptrace_syscall_info

§

impl StructuralEq for regex_t

§

impl StructuralEq for regmatch_t

§

impl StructuralEq for rlimit

§

impl StructuralEq for rlimit64

§

impl StructuralEq for rtentry

§

impl StructuralEq for rusage

§

impl StructuralEq for sched_param

§

impl StructuralEq for sctp_authinfo

§

impl StructuralEq for sctp_initmsg

§

impl StructuralEq for sctp_nxtinfo

§

impl StructuralEq for sctp_prinfo

§

impl StructuralEq for sctp_rcvinfo

§

impl StructuralEq for sctp_sndinfo

§

impl StructuralEq for sctp_sndrcvinfo

§

impl StructuralEq for seccomp_data

§

impl StructuralEq for seccomp_notif_sizes

§

impl StructuralEq for sem_t

§

impl StructuralEq for sembuf

§

impl StructuralEq for semid_ds

§

impl StructuralEq for seminfo

§

impl StructuralEq for servent

§

impl StructuralEq for shmid_ds

§

impl StructuralEq for sigaction

§

impl StructuralEq for siginfo_t

§

impl StructuralEq for signalfd_siginfo

§

impl StructuralEq for sigset_t

§

impl StructuralEq for sigval

§

impl StructuralEq for sock_extended_err

§

impl StructuralEq for sock_filter

§

impl StructuralEq for sock_fprog

§

impl StructuralEq for sockaddr

§

impl StructuralEq for sockaddr_in

§

impl StructuralEq for sockaddr_in6

§

impl StructuralEq for sockaddr_ll

§

impl StructuralEq for sockaddr_vm

§

impl StructuralEq for spwd

§

impl StructuralEq for stack_t

§

impl StructuralEq for stat

§

impl StructuralEq for stat64

§

impl StructuralEq for statfs

§

impl StructuralEq for statfs64

§

impl StructuralEq for statvfs

§

impl StructuralEq for statvfs64

§

impl StructuralEq for statx

§

impl StructuralEq for statx_timestamp

§

impl StructuralEq for sysinfo

§

impl StructuralEq for termios

§

impl StructuralEq for termios2

§

impl StructuralEq for timespec

§

impl StructuralEq for timeval

§

impl StructuralEq for timex

§

impl StructuralEq for tm

§

impl StructuralEq for tms

§

impl StructuralEq for ucred

§

impl StructuralEq for uinput_abs_setup

§

impl StructuralEq for uinput_ff_erase

§

impl StructuralEq for uinput_ff_upload

§

impl StructuralEq for user

§

impl StructuralEq for user_regs_struct

§

impl StructuralEq for utimbuf

§

impl StructuralEq for winsize

1.0.0 · source§

impl<'a> StructuralEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralEq for Location<'a>

source§

impl<'a> StructuralEq for Utf8Chunk<'a>

1.0.0 · source§

impl<'a> StructuralEq for PrefixComponent<'a>

§

impl<'a, T> StructuralEq for CompactRef<'a, T>

§

impl<'a, T> StructuralEq for Symbol<'a, T>where +

Implementors§

source§

impl StructuralEq for gstd::errors::Error

§

impl StructuralEq for ErrorReplyReason

§

impl StructuralEq for ExecutionError

§

impl StructuralEq for ExtError

§

impl StructuralEq for MemoryError

§

impl StructuralEq for MessageError

§

impl StructuralEq for ProgramRentError

§

impl StructuralEq for ReplyCode

§

impl StructuralEq for ReservationError

§

impl StructuralEq for SignalCode

§

impl StructuralEq for SimpleExecutionError

§

impl StructuralEq for SimpleProgramCreationError

§

impl StructuralEq for SuccessReplyReason

source§

impl StructuralEq for AsciiChar

1.0.0 · source§

impl StructuralEq for gstd::prelude::cmp::Ordering

source§

impl StructuralEq for TryReserveErrorKind

§

impl StructuralEq for gstd::prelude::collections::hashbrown::TryReserveError

1.28.0 · source§

impl StructuralEq for gstd::prelude::fmt::Alignment

1.0.0 · source§

impl StructuralEq for FpCategory

1.55.0 · source§

impl StructuralEq for IntErrorKind

source§

impl StructuralEq for SearchStep

source§

impl StructuralEq for Which

1.7.0 · source§

impl StructuralEq for IpAddr

source§

impl StructuralEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralEq for SocketAddr

1.0.0 · source§

impl StructuralEq for core::sync::atomic::Ordering

1.65.0 · source§

impl StructuralEq for BacktraceStatus

1.0.0 · source§

impl StructuralEq for VarError

1.0.0 · source§

impl StructuralEq for SeekFrom

1.0.0 · source§

impl StructuralEq for ErrorKind

1.0.0 · source§

impl StructuralEq for Shutdown

source§

impl StructuralEq for BacktraceStyle

1.12.0 · source§

impl StructuralEq for RecvTimeoutError

1.0.0 · source§

impl StructuralEq for TryRecvError

source§

impl StructuralEq for BernoulliError

source§

impl StructuralEq for WeightedError

source§

impl StructuralEq for bool

source§

impl StructuralEq for char

source§

impl StructuralEq for i8

source§

impl StructuralEq for i16

source§

impl StructuralEq for i32

source§

impl StructuralEq for i64

source§

impl StructuralEq for i128

source§

impl StructuralEq for isize

source§

impl StructuralEq for str

source§

impl StructuralEq for u8

source§

impl StructuralEq for u16

source§

impl StructuralEq for u32

source§

impl StructuralEq for u64

source§

impl StructuralEq for u128

source§

impl StructuralEq for ()

source§

impl StructuralEq for usize

§

impl StructuralEq for SyscallError

source§

impl StructuralEq for gstd::msg::MessageHandle

source§

impl StructuralEq for gstd::ActorId

source§

impl StructuralEq for gstd::CodeId

source§

impl StructuralEq for gstd::MessageId

§

impl StructuralEq for Percent

source§

impl StructuralEq for gstd::ReservationId

1.0.0 · source§

impl StructuralEq for TypeId

1.34.0 · source§

impl StructuralEq for CharTryFromError

1.9.0 · source§

impl StructuralEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralEq for ParseCharError

1.59.0 · source§

impl StructuralEq for TryFromCharError

1.57.0 · source§

impl StructuralEq for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl StructuralEq for CString

1.69.0 · source§

impl StructuralEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralEq for FromVecWithNulError

1.64.0 · source§

impl StructuralEq for IntoStringError

1.64.0 · source§

impl StructuralEq for NulError

1.0.0 · source§

impl StructuralEq for gstd::prelude::fmt::Error

source§

impl StructuralEq for Assume

1.34.0 · source§

impl StructuralEq for NonZeroI8

1.34.0 · source§

impl StructuralEq for NonZeroI16

1.34.0 · source§

impl StructuralEq for NonZeroI32

1.34.0 · source§

impl StructuralEq for NonZeroI64

1.34.0 · source§

impl StructuralEq for NonZeroI128

1.34.0 · source§

impl StructuralEq for NonZeroIsize

1.28.0 · source§

impl StructuralEq for NonZeroU8

1.28.0 · source§

impl StructuralEq for NonZeroU16

1.28.0 · source§

impl StructuralEq for NonZeroU32

1.28.0 · source§

impl StructuralEq for NonZeroU64

1.28.0 · source§

impl StructuralEq for NonZeroU128

1.28.0 · source§

impl StructuralEq for NonZeroUsize

1.0.0 · source§

impl StructuralEq for ParseFloatError

1.0.0 · source§

impl StructuralEq for ParseIntError

1.34.0 · source§

impl StructuralEq for TryFromIntError

1.0.0 · source§

impl StructuralEq for RangeFull

source§

impl StructuralEq for gstd::prelude::ptr::Alignment

1.0.0 · source§

impl StructuralEq for ParseBoolError

1.0.0 · source§

impl StructuralEq for Utf8Error

1.0.0 · source§

impl StructuralEq for FromUtf8Error

1.0.0 · source§

impl StructuralEq for String

1.3.0 · source§

impl StructuralEq for Duration

1.66.0 · source§

impl StructuralEq for TryFromFloatSecsError

1.28.0 · source§

impl StructuralEq for Layout

1.50.0 · source§

impl StructuralEq for LayoutError

source§

impl StructuralEq for core::alloc::AllocError

1.27.0 · source§

impl StructuralEq for CpuidResult

1.0.0 · source§

impl StructuralEq for Ipv4Addr

1.0.0 · source§

impl StructuralEq for Ipv6Addr

1.0.0 · source§

impl StructuralEq for AddrParseError

1.0.0 · source§

impl StructuralEq for SocketAddrV4

1.0.0 · source§

impl StructuralEq for SocketAddrV6

1.1.0 · source§

impl StructuralEq for FileType

1.0.0 · source§

impl StructuralEq for Permissions

source§

impl StructuralEq for UCred

1.7.0 · source§

impl StructuralEq for StripPrefixError

1.0.0 · source§

impl StructuralEq for ExitStatus

source§

impl StructuralEq for ExitStatusError

1.0.0 · source§

impl StructuralEq for Output

1.5.0 · source§

impl StructuralEq for WaitTimeoutResult

1.0.0 · source§

impl StructuralEq for RecvError

1.26.0 · source§

impl StructuralEq for AccessError

1.19.0 · source§

impl StructuralEq for ThreadId

1.8.0 · source§

impl StructuralEq for Instant

1.8.0 · source§

impl StructuralEq for SystemTime

source§

impl StructuralEq for getrandom::error::Error

source§

impl StructuralEq for StepRng

source§

impl StructuralEq for SmallRng

source§

impl StructuralEq for StdRng

source§

impl StructuralEq for ChaCha8Core

source§

impl StructuralEq for ChaCha12Core

source§

impl StructuralEq for ChaCha20Core

1.33.0 · source§

impl StructuralEq for PhantomPinned

§

impl StructuralEq for Aborted

§

impl StructuralEq for ActorId

§

impl StructuralEq for AllocError

§

impl StructuralEq for BigEndian

§

impl StructuralEq for Canceled

§

impl StructuralEq for CodeId

§

impl StructuralEq for Const

§

impl StructuralEq for Dl_info

§

impl StructuralEq for Elf32_Chdr

§

impl StructuralEq for Elf32_Ehdr

§

impl StructuralEq for Elf32_Phdr

§

impl StructuralEq for Elf32_Shdr

§

impl StructuralEq for Elf32_Sym

§

impl StructuralEq for Elf64_Chdr

§

impl StructuralEq for Elf64_Ehdr

§

impl StructuralEq for Elf64_Phdr

§

impl StructuralEq for Elf64_Shdr

§

impl StructuralEq for Elf64_Sym

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for Error

§

impl StructuralEq for FromStrRadixErrKind

§

impl StructuralEq for LittleEndian

§

impl StructuralEq for Lsb0

§

impl StructuralEq for MessageHandle

§

impl StructuralEq for MessageId

§

impl StructuralEq for MetaForm

§

impl StructuralEq for Msb0

§

impl StructuralEq for Mut

§

impl StructuralEq for NullPtrError

§

impl StructuralEq for OptionBool

§

impl StructuralEq for PathError

§

impl StructuralEq for PollNext

§

impl StructuralEq for PortableForm

§

impl StructuralEq for PortableRegistry

§

impl StructuralEq for PortableType

§

impl StructuralEq for Registry

§

impl StructuralEq for ReservationId

§

impl StructuralEq for SendError

§

impl StructuralEq for TypeDefPrimitive

§

impl StructuralEq for U128

§

impl StructuralEq for U256

§

impl StructuralEq for U512

§

impl StructuralEq for __c_anonymous_ifru_map

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_entry

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_exit

§

impl StructuralEq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl StructuralEq for __c_anonymous_sockaddr_can_j1939

§

impl StructuralEq for __c_anonymous_sockaddr_can_tp

§

impl StructuralEq for __exit_status

§

impl StructuralEq for __timeval

§

impl StructuralEq for _libc_fpstate

§

impl StructuralEq for _libc_fpxreg

§

impl StructuralEq for _libc_xmmreg

§

impl StructuralEq for addrinfo

§

impl StructuralEq for aiocb

§

impl StructuralEq for arpd_request

§

impl StructuralEq for arphdr

§

impl StructuralEq for arpreq

§

impl StructuralEq for arpreq_old

§

impl StructuralEq for can_filter

§

impl StructuralEq for clone_args

§

impl StructuralEq for cmsghdr

§

impl StructuralEq for cpu_set_t

§

impl StructuralEq for dl_phdr_info

§

impl StructuralEq for dqblk

§

impl StructuralEq for fanotify_event_metadata

§

impl StructuralEq for fanotify_response

§

impl StructuralEq for fd_set

§

impl StructuralEq for ff_condition_effect

§

impl StructuralEq for ff_constant_effect

§

impl StructuralEq for ff_effect

§

impl StructuralEq for ff_envelope

§

impl StructuralEq for ff_periodic_effect

§

impl StructuralEq for ff_ramp_effect

§

impl StructuralEq for ff_replay

§

impl StructuralEq for ff_rumble_effect

§

impl StructuralEq for ff_trigger

§

impl StructuralEq for file_clone_range

§

impl StructuralEq for flock

§

impl StructuralEq for flock64

§

impl StructuralEq for fsid_t

§

impl StructuralEq for genlmsghdr

§

impl StructuralEq for glob64_t

§

impl StructuralEq for glob_t

§

impl StructuralEq for group

§

impl StructuralEq for hostent

§

impl StructuralEq for if_nameindex

§

impl StructuralEq for ifaddrs

§

impl StructuralEq for in6_addr

§

impl StructuralEq for in6_ifreq

§

impl StructuralEq for in6_pktinfo

§

impl StructuralEq for in6_rtmsg

§

impl StructuralEq for in_addr

§

impl StructuralEq for in_pktinfo

§

impl StructuralEq for inotify_event

§

impl StructuralEq for input_absinfo

§

impl StructuralEq for input_event

§

impl StructuralEq for input_id

§

impl StructuralEq for input_keymap_entry

§

impl StructuralEq for input_mask

§

impl StructuralEq for iovec

§

impl StructuralEq for ip_mreq

§

impl StructuralEq for ip_mreq_source

§

impl StructuralEq for ip_mreqn

§

impl StructuralEq for ipc_perm

§

impl StructuralEq for ipv6_mreq

§

impl StructuralEq for itimerspec

§

impl StructuralEq for itimerval

§

impl StructuralEq for j1939_filter

§

impl StructuralEq for lconv

§

impl StructuralEq for linger

§

impl StructuralEq for mallinfo

§

impl StructuralEq for mallinfo2

§

impl StructuralEq for mcontext_t

§

impl StructuralEq for mmsghdr

§

impl StructuralEq for mntent

§

impl StructuralEq for msghdr

§

impl StructuralEq for msginfo

§

impl StructuralEq for msqid_ds

§

impl StructuralEq for nl_mmap_hdr

§

impl StructuralEq for nl_mmap_req

§

impl StructuralEq for nl_pktinfo

§

impl StructuralEq for nlattr

§

impl StructuralEq for nlmsgerr

§

impl StructuralEq for nlmsghdr

§

impl StructuralEq for ntptimeval

§

impl StructuralEq for open_how

§

impl StructuralEq for option

§

impl StructuralEq for packet_mreq

§

impl StructuralEq for passwd

§

impl StructuralEq for pollfd

§

impl StructuralEq for posix_spawn_file_actions_t

§

impl StructuralEq for posix_spawnattr_t

§

impl StructuralEq for protoent

§

impl StructuralEq for pthread_attr_t

§

impl StructuralEq for pthread_barrierattr_t

§

impl StructuralEq for pthread_condattr_t

§

impl StructuralEq for pthread_mutexattr_t

§

impl StructuralEq for pthread_rwlockattr_t

§

impl StructuralEq for ptrace_peeksiginfo_args

§

impl StructuralEq for ptrace_rseq_configuration

§

impl StructuralEq for ptrace_syscall_info

§

impl StructuralEq for regex_t

§

impl StructuralEq for regmatch_t

§

impl StructuralEq for rlimit

§

impl StructuralEq for rlimit64

§

impl StructuralEq for rtentry

§

impl StructuralEq for rusage

§

impl StructuralEq for sched_param

§

impl StructuralEq for sctp_authinfo

§

impl StructuralEq for sctp_initmsg

§

impl StructuralEq for sctp_nxtinfo

§

impl StructuralEq for sctp_prinfo

§

impl StructuralEq for sctp_rcvinfo

§

impl StructuralEq for sctp_sndinfo

§

impl StructuralEq for sctp_sndrcvinfo

§

impl StructuralEq for seccomp_data

§

impl StructuralEq for seccomp_notif_sizes

§

impl StructuralEq for sem_t

§

impl StructuralEq for sembuf

§

impl StructuralEq for semid_ds

§

impl StructuralEq for seminfo

§

impl StructuralEq for servent

§

impl StructuralEq for shmid_ds

§

impl StructuralEq for sigaction

§

impl StructuralEq for siginfo_t

§

impl StructuralEq for signalfd_siginfo

§

impl StructuralEq for sigset_t

§

impl StructuralEq for sigval

§

impl StructuralEq for sock_extended_err

§

impl StructuralEq for sock_filter

§

impl StructuralEq for sock_fprog

§

impl StructuralEq for sockaddr

§

impl StructuralEq for sockaddr_in

§

impl StructuralEq for sockaddr_in6

§

impl StructuralEq for sockaddr_ll

§

impl StructuralEq for sockaddr_vm

§

impl StructuralEq for spwd

§

impl StructuralEq for stack_t

§

impl StructuralEq for stat

§

impl StructuralEq for stat64

§

impl StructuralEq for statfs

§

impl StructuralEq for statfs64

§

impl StructuralEq for statvfs

§

impl StructuralEq for statvfs64

§

impl StructuralEq for statx

§

impl StructuralEq for statx_timestamp

§

impl StructuralEq for sysinfo

§

impl StructuralEq for termios

§

impl StructuralEq for termios2

§

impl StructuralEq for timespec

§

impl StructuralEq for timeval

§

impl StructuralEq for timex

§

impl StructuralEq for tm

§

impl StructuralEq for tms

§

impl StructuralEq for ucred

§

impl StructuralEq for uinput_abs_setup

§

impl StructuralEq for uinput_ff_erase

§

impl StructuralEq for uinput_ff_upload

§

impl StructuralEq for user

§

impl StructuralEq for user_regs_struct

§

impl StructuralEq for utimbuf

§

impl StructuralEq for winsize

1.0.0 · source§

impl<'a> StructuralEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralEq for Location<'a>

source§

impl<'a> StructuralEq for Utf8Chunk<'a>

1.0.0 · source§

impl<'a> StructuralEq for PrefixComponent<'a>

§

impl<'a, T> StructuralEq for CompactRef<'a, T>

§

impl<'a, T> StructuralEq for Symbol<'a, T>where T: 'a,

§

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

§

impl<'a, T, O> StructuralEq for IterZeros<'a, T, O>where diff --git a/pr-3467/gstd/prelude/marker/trait.StructuralPartialEq.html b/pr-3467/gstd/prelude/marker/trait.StructuralPartialEq.html index 567f0299bbb..8323ae75c3b 100644 --- a/pr-3467/gstd/prelude/marker/trait.StructuralPartialEq.html +++ b/pr-3467/gstd/prelude/marker/trait.StructuralPartialEq.html @@ -11,7 +11,7 @@ a pattern match.

See also the structural match RFC, and issue 63438 which motivated migrating from attribute-based design to this trait.

-

Implementors§

source§

impl StructuralPartialEq for gcore::errors::Error

source§

impl StructuralPartialEq for gstd::errors::Error

§

impl StructuralPartialEq for ErrorReplyReason

§

impl StructuralPartialEq for ExecutionError

§

impl StructuralPartialEq for ExtError

§

impl StructuralPartialEq for MemoryError

§

impl StructuralPartialEq for MessageError

§

impl StructuralPartialEq for ProgramRentError

§

impl StructuralPartialEq for ReplyCode

§

impl StructuralPartialEq for ReservationError

§

impl StructuralPartialEq for SignalCode

§

impl StructuralPartialEq for SimpleExecutionError

§

impl StructuralPartialEq for SimpleProgramCreationError

§

impl StructuralPartialEq for SuccessReplyReason

source§

impl StructuralPartialEq for AsciiChar

1.0.0 · source§

impl StructuralPartialEq for gstd::prelude::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

§

impl StructuralPartialEq for gstd::prelude::collections::hashbrown::TryReserveError

1.28.0 · source§

impl StructuralPartialEq for gstd::prelude::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for SearchStep

source§

impl StructuralPartialEq for Which

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for core::sync::atomic::Ordering

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for VarError

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for Shutdown

source§

impl StructuralPartialEq for BacktraceStyle

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for FromHexError

source§

impl StructuralPartialEq for BernoulliError

source§

impl StructuralPartialEq for WeightedError

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

source§

impl StructuralPartialEq for gcore::general::ActorId

source§

impl StructuralPartialEq for gcore::general::CodeId

source§

impl StructuralPartialEq for gcore::general::MessageHandle

source§

impl StructuralPartialEq for gcore::general::MessageId

source§

impl StructuralPartialEq for gcore::general::ReservationId

source§

impl StructuralPartialEq for SyscallError

source§

impl StructuralPartialEq for gstd::msg::MessageHandle

source§

impl StructuralPartialEq for gstd::ActorId

source§

impl StructuralPartialEq for gstd::CodeId

source§

impl StructuralPartialEq for gstd::MessageId

§

impl StructuralPartialEq for Percent

source§

impl StructuralPartialEq for gstd::ReservationId

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

1.57.0 · source§

impl StructuralPartialEq for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for gstd::prelude::fmt::Error

source§

impl StructuralPartialEq for Assume

1.34.0 · source§

impl StructuralPartialEq for NonZeroI8

1.34.0 · source§

impl StructuralPartialEq for NonZeroI16

1.34.0 · source§

impl StructuralPartialEq for NonZeroI32

1.34.0 · source§

impl StructuralPartialEq for NonZeroI64

1.34.0 · source§

impl StructuralPartialEq for NonZeroI128

1.34.0 · source§

impl StructuralPartialEq for NonZeroIsize

1.28.0 · source§

impl StructuralPartialEq for NonZeroU8

1.28.0 · source§

impl StructuralPartialEq for NonZeroU16

1.28.0 · source§

impl StructuralPartialEq for NonZeroU32

1.28.0 · source§

impl StructuralPartialEq for NonZeroU64

1.28.0 · source§

impl StructuralPartialEq for NonZeroU128

1.28.0 · source§

impl StructuralPartialEq for NonZeroUsize

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for gstd::prelude::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.3.0 · source§

impl StructuralPartialEq for Duration

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

source§

impl StructuralPartialEq for core::alloc::AllocError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

source§

impl StructuralPartialEq for getrandom::error::Error

source§

impl StructuralPartialEq for IgnoredAny

source§

impl StructuralPartialEq for serde::de::value::Error

source§

impl StructuralPartialEq for Bernoulli

source§

impl StructuralPartialEq for StepRng

source§

impl StructuralPartialEq for SmallRng

source§

impl StructuralPartialEq for StdRng

source§

impl StructuralPartialEq for ChaCha8Core

source§

impl StructuralPartialEq for ChaCha12Core

source§

impl StructuralPartialEq for ChaCha20Core

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

§

impl StructuralPartialEq for Aborted

§

impl StructuralPartialEq for AllocError

§

impl StructuralPartialEq for BigEndian

§

impl StructuralPartialEq for Canceled

§

impl StructuralPartialEq for Const

§

impl StructuralPartialEq for Dl_info

§

impl StructuralPartialEq for Elf32_Chdr

§

impl StructuralPartialEq for Elf32_Ehdr

§

impl StructuralPartialEq for Elf32_Phdr

§

impl StructuralPartialEq for Elf32_Shdr

§

impl StructuralPartialEq for Elf32_Sym

§

impl StructuralPartialEq for Elf64_Chdr

§

impl StructuralPartialEq for Elf64_Ehdr

§

impl StructuralPartialEq for Elf64_Phdr

§

impl StructuralPartialEq for Elf64_Shdr

§

impl StructuralPartialEq for Elf64_Sym

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for FromDecStrErr

§

impl StructuralPartialEq for FromStrRadixErrKind

§

impl StructuralPartialEq for LittleEndian

§

impl StructuralPartialEq for Lsb0

§

impl StructuralPartialEq for MetaForm

§

impl StructuralPartialEq for Msb0

§

impl StructuralPartialEq for Mut

§

impl StructuralPartialEq for NullPtrError

§

impl StructuralPartialEq for OptionBool

§

impl StructuralPartialEq for PathError

§

impl StructuralPartialEq for PollNext

§

impl StructuralPartialEq for PortableForm

§

impl StructuralPartialEq for PortableRegistry

§

impl StructuralPartialEq for PortableType

§

impl StructuralPartialEq for Registry

§

impl StructuralPartialEq for SendError

§

impl StructuralPartialEq for TypeDefPrimitive

§

impl StructuralPartialEq for U128

§

impl StructuralPartialEq for U256

§

impl StructuralPartialEq for U512

§

impl StructuralPartialEq for __c_anonymous_ifru_map

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_entry

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_exit

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl StructuralPartialEq for __c_anonymous_sockaddr_can_j1939

§

impl StructuralPartialEq for __c_anonymous_sockaddr_can_tp

§

impl StructuralPartialEq for __exit_status

§

impl StructuralPartialEq for __timeval

§

impl StructuralPartialEq for _libc_fpstate

§

impl StructuralPartialEq for _libc_fpxreg

§

impl StructuralPartialEq for _libc_xmmreg

§

impl StructuralPartialEq for addrinfo

§

impl StructuralPartialEq for aiocb

§

impl StructuralPartialEq for arpd_request

§

impl StructuralPartialEq for arphdr

§

impl StructuralPartialEq for arpreq

§

impl StructuralPartialEq for arpreq_old

§

impl StructuralPartialEq for can_filter

§

impl StructuralPartialEq for clone_args

§

impl StructuralPartialEq for cmsghdr

§

impl StructuralPartialEq for cpu_set_t

§

impl StructuralPartialEq for dl_phdr_info

§

impl StructuralPartialEq for dqblk

§

impl StructuralPartialEq for fanotify_event_metadata

§

impl StructuralPartialEq for fanotify_response

§

impl StructuralPartialEq for fd_set

§

impl StructuralPartialEq for ff_condition_effect

§

impl StructuralPartialEq for ff_constant_effect

§

impl StructuralPartialEq for ff_effect

§

impl StructuralPartialEq for ff_envelope

§

impl StructuralPartialEq for ff_periodic_effect

§

impl StructuralPartialEq for ff_ramp_effect

§

impl StructuralPartialEq for ff_replay

§

impl StructuralPartialEq for ff_rumble_effect

§

impl StructuralPartialEq for ff_trigger

§

impl StructuralPartialEq for file_clone_range

§

impl StructuralPartialEq for flock

§

impl StructuralPartialEq for flock64

§

impl StructuralPartialEq for fsid_t

§

impl StructuralPartialEq for genlmsghdr

§

impl StructuralPartialEq for glob64_t

§

impl StructuralPartialEq for glob_t

§

impl StructuralPartialEq for group

§

impl StructuralPartialEq for hostent

§

impl StructuralPartialEq for if_nameindex

§

impl StructuralPartialEq for ifaddrs

§

impl StructuralPartialEq for in6_addr

§

impl StructuralPartialEq for in6_ifreq

§

impl StructuralPartialEq for in6_pktinfo

§

impl StructuralPartialEq for in6_rtmsg

§

impl StructuralPartialEq for in_addr

§

impl StructuralPartialEq for in_pktinfo

§

impl StructuralPartialEq for inotify_event

§

impl StructuralPartialEq for input_absinfo

§

impl StructuralPartialEq for input_event

§

impl StructuralPartialEq for input_id

§

impl StructuralPartialEq for input_keymap_entry

§

impl StructuralPartialEq for input_mask

§

impl StructuralPartialEq for iovec

§

impl StructuralPartialEq for ip_mreq

§

impl StructuralPartialEq for ip_mreq_source

§

impl StructuralPartialEq for ip_mreqn

§

impl StructuralPartialEq for ipc_perm

§

impl StructuralPartialEq for ipv6_mreq

§

impl StructuralPartialEq for itimerspec

§

impl StructuralPartialEq for itimerval

§

impl StructuralPartialEq for j1939_filter

§

impl StructuralPartialEq for lconv

§

impl StructuralPartialEq for linger

§

impl StructuralPartialEq for mallinfo

§

impl StructuralPartialEq for mallinfo2

§

impl StructuralPartialEq for mcontext_t

§

impl StructuralPartialEq for mmsghdr

§

impl StructuralPartialEq for mntent

§

impl StructuralPartialEq for msghdr

§

impl StructuralPartialEq for msginfo

§

impl StructuralPartialEq for msqid_ds

§

impl StructuralPartialEq for nl_mmap_hdr

§

impl StructuralPartialEq for nl_mmap_req

§

impl StructuralPartialEq for nl_pktinfo

§

impl StructuralPartialEq for nlattr

§

impl StructuralPartialEq for nlmsgerr

§

impl StructuralPartialEq for nlmsghdr

§

impl StructuralPartialEq for ntptimeval

§

impl StructuralPartialEq for open_how

§

impl StructuralPartialEq for option

§

impl StructuralPartialEq for packet_mreq

§

impl StructuralPartialEq for passwd

§

impl StructuralPartialEq for pollfd

§

impl StructuralPartialEq for posix_spawn_file_actions_t

§

impl StructuralPartialEq for posix_spawnattr_t

§

impl StructuralPartialEq for protoent

§

impl StructuralPartialEq for pthread_attr_t

§

impl StructuralPartialEq for pthread_barrierattr_t

§

impl StructuralPartialEq for pthread_condattr_t

§

impl StructuralPartialEq for pthread_mutexattr_t

§

impl StructuralPartialEq for pthread_rwlockattr_t

§

impl StructuralPartialEq for ptrace_peeksiginfo_args

§

impl StructuralPartialEq for ptrace_rseq_configuration

§

impl StructuralPartialEq for ptrace_syscall_info

§

impl StructuralPartialEq for regex_t

§

impl StructuralPartialEq for regmatch_t

§

impl StructuralPartialEq for rlimit

§

impl StructuralPartialEq for rlimit64

§

impl StructuralPartialEq for rtentry

§

impl StructuralPartialEq for rusage

§

impl StructuralPartialEq for sched_param

§

impl StructuralPartialEq for sctp_authinfo

§

impl StructuralPartialEq for sctp_initmsg

§

impl StructuralPartialEq for sctp_nxtinfo

§

impl StructuralPartialEq for sctp_prinfo

§

impl StructuralPartialEq for sctp_rcvinfo

§

impl StructuralPartialEq for sctp_sndinfo

§

impl StructuralPartialEq for sctp_sndrcvinfo

§

impl StructuralPartialEq for seccomp_data

§

impl StructuralPartialEq for seccomp_notif_sizes

§

impl StructuralPartialEq for sem_t

§

impl StructuralPartialEq for sembuf

§

impl StructuralPartialEq for semid_ds

§

impl StructuralPartialEq for seminfo

§

impl StructuralPartialEq for servent

§

impl StructuralPartialEq for shmid_ds

§

impl StructuralPartialEq for sigaction

§

impl StructuralPartialEq for siginfo_t

§

impl StructuralPartialEq for signalfd_siginfo

§

impl StructuralPartialEq for sigset_t

§

impl StructuralPartialEq for sigval

§

impl StructuralPartialEq for sock_extended_err

§

impl StructuralPartialEq for sock_filter

§

impl StructuralPartialEq for sock_fprog

§

impl StructuralPartialEq for sockaddr

§

impl StructuralPartialEq for sockaddr_in

§

impl StructuralPartialEq for sockaddr_in6

§

impl StructuralPartialEq for sockaddr_ll

§

impl StructuralPartialEq for sockaddr_vm

§

impl StructuralPartialEq for spwd

§

impl StructuralPartialEq for stack_t

§

impl StructuralPartialEq for stat

§

impl StructuralPartialEq for stat64

§

impl StructuralPartialEq for statfs

§

impl StructuralPartialEq for statfs64

§

impl StructuralPartialEq for statvfs

§

impl StructuralPartialEq for statvfs64

§

impl StructuralPartialEq for statx

§

impl StructuralPartialEq for statx_timestamp

§

impl StructuralPartialEq for sysinfo

§

impl StructuralPartialEq for termios

§

impl StructuralPartialEq for termios2

§

impl StructuralPartialEq for timespec

§

impl StructuralPartialEq for timeval

§

impl StructuralPartialEq for timex

§

impl StructuralPartialEq for tm

§

impl StructuralPartialEq for tms

§

impl StructuralPartialEq for ucred

§

impl StructuralPartialEq for uinput_abs_setup

§

impl StructuralPartialEq for uinput_ff_erase

§

impl StructuralPartialEq for uinput_ff_upload

§

impl StructuralPartialEq for user

§

impl StructuralPartialEq for user_regs_struct

§

impl StructuralPartialEq for utimbuf

§

impl StructuralPartialEq for winsize

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

source§

impl<'a> StructuralPartialEq for Unexpected<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

§

impl<'a, T> StructuralPartialEq for CompactRef<'a, T>

§

impl<'a, T> StructuralPartialEq for Symbol<'a, T>where +

Implementors§

source§

impl StructuralPartialEq for gstd::errors::Error

§

impl StructuralPartialEq for ErrorReplyReason

§

impl StructuralPartialEq for ExecutionError

§

impl StructuralPartialEq for ExtError

§

impl StructuralPartialEq for MemoryError

§

impl StructuralPartialEq for MessageError

§

impl StructuralPartialEq for ProgramRentError

§

impl StructuralPartialEq for ReplyCode

§

impl StructuralPartialEq for ReservationError

§

impl StructuralPartialEq for SignalCode

§

impl StructuralPartialEq for SimpleExecutionError

§

impl StructuralPartialEq for SimpleProgramCreationError

§

impl StructuralPartialEq for SuccessReplyReason

source§

impl StructuralPartialEq for AsciiChar

1.0.0 · source§

impl StructuralPartialEq for gstd::prelude::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

§

impl StructuralPartialEq for gstd::prelude::collections::hashbrown::TryReserveError

1.28.0 · source§

impl StructuralPartialEq for gstd::prelude::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for SearchStep

source§

impl StructuralPartialEq for Which

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for core::sync::atomic::Ordering

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for VarError

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for Shutdown

source§

impl StructuralPartialEq for BacktraceStyle

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for FromHexError

source§

impl StructuralPartialEq for BernoulliError

source§

impl StructuralPartialEq for WeightedError

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

§

impl StructuralPartialEq for SyscallError

source§

impl StructuralPartialEq for gstd::msg::MessageHandle

source§

impl StructuralPartialEq for gstd::ActorId

source§

impl StructuralPartialEq for gstd::CodeId

source§

impl StructuralPartialEq for gstd::MessageId

§

impl StructuralPartialEq for Percent

source§

impl StructuralPartialEq for gstd::ReservationId

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

1.57.0 · source§

impl StructuralPartialEq for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for gstd::prelude::fmt::Error

source§

impl StructuralPartialEq for Assume

1.34.0 · source§

impl StructuralPartialEq for NonZeroI8

1.34.0 · source§

impl StructuralPartialEq for NonZeroI16

1.34.0 · source§

impl StructuralPartialEq for NonZeroI32

1.34.0 · source§

impl StructuralPartialEq for NonZeroI64

1.34.0 · source§

impl StructuralPartialEq for NonZeroI128

1.34.0 · source§

impl StructuralPartialEq for NonZeroIsize

1.28.0 · source§

impl StructuralPartialEq for NonZeroU8

1.28.0 · source§

impl StructuralPartialEq for NonZeroU16

1.28.0 · source§

impl StructuralPartialEq for NonZeroU32

1.28.0 · source§

impl StructuralPartialEq for NonZeroU64

1.28.0 · source§

impl StructuralPartialEq for NonZeroU128

1.28.0 · source§

impl StructuralPartialEq for NonZeroUsize

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for gstd::prelude::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.3.0 · source§

impl StructuralPartialEq for Duration

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

source§

impl StructuralPartialEq for core::alloc::AllocError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

source§

impl StructuralPartialEq for getrandom::error::Error

source§

impl StructuralPartialEq for IgnoredAny

source§

impl StructuralPartialEq for serde::de::value::Error

source§

impl StructuralPartialEq for Bernoulli

source§

impl StructuralPartialEq for StepRng

source§

impl StructuralPartialEq for SmallRng

source§

impl StructuralPartialEq for StdRng

source§

impl StructuralPartialEq for ChaCha8Core

source§

impl StructuralPartialEq for ChaCha12Core

source§

impl StructuralPartialEq for ChaCha20Core

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

§

impl StructuralPartialEq for Aborted

§

impl StructuralPartialEq for ActorId

§

impl StructuralPartialEq for AllocError

§

impl StructuralPartialEq for BigEndian

§

impl StructuralPartialEq for Canceled

§

impl StructuralPartialEq for CodeId

§

impl StructuralPartialEq for Const

§

impl StructuralPartialEq for Dl_info

§

impl StructuralPartialEq for Elf32_Chdr

§

impl StructuralPartialEq for Elf32_Ehdr

§

impl StructuralPartialEq for Elf32_Phdr

§

impl StructuralPartialEq for Elf32_Shdr

§

impl StructuralPartialEq for Elf32_Sym

§

impl StructuralPartialEq for Elf64_Chdr

§

impl StructuralPartialEq for Elf64_Ehdr

§

impl StructuralPartialEq for Elf64_Phdr

§

impl StructuralPartialEq for Elf64_Shdr

§

impl StructuralPartialEq for Elf64_Sym

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for Error

§

impl StructuralPartialEq for FromDecStrErr

§

impl StructuralPartialEq for FromStrRadixErrKind

§

impl StructuralPartialEq for LittleEndian

§

impl StructuralPartialEq for Lsb0

§

impl StructuralPartialEq for MessageHandle

§

impl StructuralPartialEq for MessageId

§

impl StructuralPartialEq for MetaForm

§

impl StructuralPartialEq for Msb0

§

impl StructuralPartialEq for Mut

§

impl StructuralPartialEq for NullPtrError

§

impl StructuralPartialEq for OptionBool

§

impl StructuralPartialEq for PathError

§

impl StructuralPartialEq for PollNext

§

impl StructuralPartialEq for PortableForm

§

impl StructuralPartialEq for PortableRegistry

§

impl StructuralPartialEq for PortableType

§

impl StructuralPartialEq for Registry

§

impl StructuralPartialEq for ReservationId

§

impl StructuralPartialEq for SendError

§

impl StructuralPartialEq for TypeDefPrimitive

§

impl StructuralPartialEq for U128

§

impl StructuralPartialEq for U256

§

impl StructuralPartialEq for U512

§

impl StructuralPartialEq for __c_anonymous_ifru_map

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_entry

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_exit

§

impl StructuralPartialEq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl StructuralPartialEq for __c_anonymous_sockaddr_can_j1939

§

impl StructuralPartialEq for __c_anonymous_sockaddr_can_tp

§

impl StructuralPartialEq for __exit_status

§

impl StructuralPartialEq for __timeval

§

impl StructuralPartialEq for _libc_fpstate

§

impl StructuralPartialEq for _libc_fpxreg

§

impl StructuralPartialEq for _libc_xmmreg

§

impl StructuralPartialEq for addrinfo

§

impl StructuralPartialEq for aiocb

§

impl StructuralPartialEq for arpd_request

§

impl StructuralPartialEq for arphdr

§

impl StructuralPartialEq for arpreq

§

impl StructuralPartialEq for arpreq_old

§

impl StructuralPartialEq for can_filter

§

impl StructuralPartialEq for clone_args

§

impl StructuralPartialEq for cmsghdr

§

impl StructuralPartialEq for cpu_set_t

§

impl StructuralPartialEq for dl_phdr_info

§

impl StructuralPartialEq for dqblk

§

impl StructuralPartialEq for fanotify_event_metadata

§

impl StructuralPartialEq for fanotify_response

§

impl StructuralPartialEq for fd_set

§

impl StructuralPartialEq for ff_condition_effect

§

impl StructuralPartialEq for ff_constant_effect

§

impl StructuralPartialEq for ff_effect

§

impl StructuralPartialEq for ff_envelope

§

impl StructuralPartialEq for ff_periodic_effect

§

impl StructuralPartialEq for ff_ramp_effect

§

impl StructuralPartialEq for ff_replay

§

impl StructuralPartialEq for ff_rumble_effect

§

impl StructuralPartialEq for ff_trigger

§

impl StructuralPartialEq for file_clone_range

§

impl StructuralPartialEq for flock

§

impl StructuralPartialEq for flock64

§

impl StructuralPartialEq for fsid_t

§

impl StructuralPartialEq for genlmsghdr

§

impl StructuralPartialEq for glob64_t

§

impl StructuralPartialEq for glob_t

§

impl StructuralPartialEq for group

§

impl StructuralPartialEq for hostent

§

impl StructuralPartialEq for if_nameindex

§

impl StructuralPartialEq for ifaddrs

§

impl StructuralPartialEq for in6_addr

§

impl StructuralPartialEq for in6_ifreq

§

impl StructuralPartialEq for in6_pktinfo

§

impl StructuralPartialEq for in6_rtmsg

§

impl StructuralPartialEq for in_addr

§

impl StructuralPartialEq for in_pktinfo

§

impl StructuralPartialEq for inotify_event

§

impl StructuralPartialEq for input_absinfo

§

impl StructuralPartialEq for input_event

§

impl StructuralPartialEq for input_id

§

impl StructuralPartialEq for input_keymap_entry

§

impl StructuralPartialEq for input_mask

§

impl StructuralPartialEq for iovec

§

impl StructuralPartialEq for ip_mreq

§

impl StructuralPartialEq for ip_mreq_source

§

impl StructuralPartialEq for ip_mreqn

§

impl StructuralPartialEq for ipc_perm

§

impl StructuralPartialEq for ipv6_mreq

§

impl StructuralPartialEq for itimerspec

§

impl StructuralPartialEq for itimerval

§

impl StructuralPartialEq for j1939_filter

§

impl StructuralPartialEq for lconv

§

impl StructuralPartialEq for linger

§

impl StructuralPartialEq for mallinfo

§

impl StructuralPartialEq for mallinfo2

§

impl StructuralPartialEq for mcontext_t

§

impl StructuralPartialEq for mmsghdr

§

impl StructuralPartialEq for mntent

§

impl StructuralPartialEq for msghdr

§

impl StructuralPartialEq for msginfo

§

impl StructuralPartialEq for msqid_ds

§

impl StructuralPartialEq for nl_mmap_hdr

§

impl StructuralPartialEq for nl_mmap_req

§

impl StructuralPartialEq for nl_pktinfo

§

impl StructuralPartialEq for nlattr

§

impl StructuralPartialEq for nlmsgerr

§

impl StructuralPartialEq for nlmsghdr

§

impl StructuralPartialEq for ntptimeval

§

impl StructuralPartialEq for open_how

§

impl StructuralPartialEq for option

§

impl StructuralPartialEq for packet_mreq

§

impl StructuralPartialEq for passwd

§

impl StructuralPartialEq for pollfd

§

impl StructuralPartialEq for posix_spawn_file_actions_t

§

impl StructuralPartialEq for posix_spawnattr_t

§

impl StructuralPartialEq for protoent

§

impl StructuralPartialEq for pthread_attr_t

§

impl StructuralPartialEq for pthread_barrierattr_t

§

impl StructuralPartialEq for pthread_condattr_t

§

impl StructuralPartialEq for pthread_mutexattr_t

§

impl StructuralPartialEq for pthread_rwlockattr_t

§

impl StructuralPartialEq for ptrace_peeksiginfo_args

§

impl StructuralPartialEq for ptrace_rseq_configuration

§

impl StructuralPartialEq for ptrace_syscall_info

§

impl StructuralPartialEq for regex_t

§

impl StructuralPartialEq for regmatch_t

§

impl StructuralPartialEq for rlimit

§

impl StructuralPartialEq for rlimit64

§

impl StructuralPartialEq for rtentry

§

impl StructuralPartialEq for rusage

§

impl StructuralPartialEq for sched_param

§

impl StructuralPartialEq for sctp_authinfo

§

impl StructuralPartialEq for sctp_initmsg

§

impl StructuralPartialEq for sctp_nxtinfo

§

impl StructuralPartialEq for sctp_prinfo

§

impl StructuralPartialEq for sctp_rcvinfo

§

impl StructuralPartialEq for sctp_sndinfo

§

impl StructuralPartialEq for sctp_sndrcvinfo

§

impl StructuralPartialEq for seccomp_data

§

impl StructuralPartialEq for seccomp_notif_sizes

§

impl StructuralPartialEq for sem_t

§

impl StructuralPartialEq for sembuf

§

impl StructuralPartialEq for semid_ds

§

impl StructuralPartialEq for seminfo

§

impl StructuralPartialEq for servent

§

impl StructuralPartialEq for shmid_ds

§

impl StructuralPartialEq for sigaction

§

impl StructuralPartialEq for siginfo_t

§

impl StructuralPartialEq for signalfd_siginfo

§

impl StructuralPartialEq for sigset_t

§

impl StructuralPartialEq for sigval

§

impl StructuralPartialEq for sock_extended_err

§

impl StructuralPartialEq for sock_filter

§

impl StructuralPartialEq for sock_fprog

§

impl StructuralPartialEq for sockaddr

§

impl StructuralPartialEq for sockaddr_in

§

impl StructuralPartialEq for sockaddr_in6

§

impl StructuralPartialEq for sockaddr_ll

§

impl StructuralPartialEq for sockaddr_vm

§

impl StructuralPartialEq for spwd

§

impl StructuralPartialEq for stack_t

§

impl StructuralPartialEq for stat

§

impl StructuralPartialEq for stat64

§

impl StructuralPartialEq for statfs

§

impl StructuralPartialEq for statfs64

§

impl StructuralPartialEq for statvfs

§

impl StructuralPartialEq for statvfs64

§

impl StructuralPartialEq for statx

§

impl StructuralPartialEq for statx_timestamp

§

impl StructuralPartialEq for sysinfo

§

impl StructuralPartialEq for termios

§

impl StructuralPartialEq for termios2

§

impl StructuralPartialEq for timespec

§

impl StructuralPartialEq for timeval

§

impl StructuralPartialEq for timex

§

impl StructuralPartialEq for tm

§

impl StructuralPartialEq for tms

§

impl StructuralPartialEq for ucred

§

impl StructuralPartialEq for uinput_abs_setup

§

impl StructuralPartialEq for uinput_ff_erase

§

impl StructuralPartialEq for uinput_ff_upload

§

impl StructuralPartialEq for user

§

impl StructuralPartialEq for user_regs_struct

§

impl StructuralPartialEq for utimbuf

§

impl StructuralPartialEq for winsize

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

source§

impl<'a> StructuralPartialEq for Unexpected<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

§

impl<'a, T> StructuralPartialEq for CompactRef<'a, T>

§

impl<'a, T> StructuralPartialEq for Symbol<'a, T>where T: 'a,

§

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

§

impl<'a, T, O> StructuralPartialEq for IterZeros<'a, T, O>where diff --git a/pr-3467/gstd/prelude/result/enum.Result.html b/pr-3467/gstd/prelude/result/enum.Result.html index e32fc588a01..ce69a8d6764 100644 --- a/pr-3467/gstd/prelude/result/enum.Result.html +++ b/pr-3467/gstd/prelude/result/enum.Result.html @@ -513,7 +513,7 @@
Examples
F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

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

source§

fn from(res: &StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
§

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

§

fn from(result: Result<[u8; 4], u32>) -> ErrorWithReplyCode

Converts to this type from the input type.
§

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

§

fn from(value: Result<(), u32>) -> ErrorBytes

Converts to this type from the input type.
§

impl<T1, T2> From<Result<(T1, T2), u32>> for ErrorWithTwoHasheswhere T1: Into<[u8; 32]>, T2: Into<[u8; 32]>,

§

fn from(result: Result<(T1, T2), u32>) -> ErrorWithTwoHashes

Converts to this type from the input type.
§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

fn from(result: Result<(u128, u32), u32>) -> ErrorWithBlockNumberAndValue

Converts to this type from the input type.
§

impl<T> From<Result<T, u32>> for ErrorWithHashwhere - T: Into<[u8; 32]>,

§

fn from(result: Result<T, u32>) -> ErrorWithHash

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithHandle

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithSignalCode

Converts to this type from the input type.
§

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

§

fn from(result: Result<u64, u32>) -> ErrorWithGas

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
source§

impl From<SyscallError> for Result<(), Error>

source§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where + T: Into<[u8; 32]>,

§

fn from(result: Result<T, u32>) -> ErrorWithHash

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithHandle

Converts to this type from the input type.
§

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

§

fn from(result: Result<u32, u32>) -> ErrorWithSignalCode

Converts to this type from the input type.
§

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

§

fn from(result: Result<u64, u32>) -> ErrorWithGas

Converts to this type from the input type.
source§

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

source§

fn from(res: StreamResult) -> Result<MZStatus, MZError>

Converts to this type from the input type.
§

impl From<SyscallError> for Result<(), Error>

§

fn from(value: SyscallError) -> Result<(), Error>

Converts to this type from the input type.
source§

impl<A, E, V> FromIterator<Result<A, E>> for Result<V, E>where V: FromIterator<A>,

source§

fn from_iter<I>(iter: I) -> Result<V, E>where I: IntoIterator<Item = Result<A, E>>,

Takes each element in the Iterator: if it is an Err, no further elements are taken, and the Err is returned. Should no Err occur, a diff --git a/pr-3467/gstd/prelude/trait.AsRef.html b/pr-3467/gstd/prelude/trait.AsRef.html index 46772ee5020..bf43c42d436 100644 --- a/pr-3467/gstd/prelude/trait.AsRef.html +++ b/pr-3467/gstd/prelude/trait.AsRef.html @@ -70,7 +70,7 @@

Examples

let s = "hello".to_string(); is_hello(s);

Required Methods§

source

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.

-

Implementors§

source§

impl AsRef<str> for str

source§

impl AsRef<str> for String

source§

impl AsRef<MessageHandle> for MessageHandle

1.7.0 · source§

impl AsRef<CStr> for CStr

1.7.0 · source§

impl AsRef<CStr> for CString

source§

impl AsRef<OsStr> for Component<'_>

source§

impl AsRef<OsStr> for str

source§

impl AsRef<OsStr> for OsStr

source§

impl AsRef<OsStr> for OsString

source§

impl AsRef<OsStr> for Components<'_>

source§

impl AsRef<OsStr> for std::path::Iter<'_>

source§

impl AsRef<OsStr> for Path

source§

impl AsRef<OsStr> for PathBuf

source§

impl AsRef<OsStr> for String

1.8.0 · source§

impl AsRef<Path> for Cow<'_, OsStr>

1.25.0 · source§

impl AsRef<Path> for Component<'_>

source§

impl AsRef<Path> for str

source§

impl AsRef<Path> for OsStr

source§

impl AsRef<Path> for OsString

source§

impl AsRef<Path> for Components<'_>

source§

impl AsRef<Path> for std::path::Iter<'_>

source§

impl AsRef<Path> for Path

source§

impl AsRef<Path> for PathBuf

source§

impl AsRef<Path> for String

source§

impl AsRef<[u8]> for str

source§

impl AsRef<[u8]> for ActorId

source§

impl AsRef<[u8]> for CodeId

source§

impl AsRef<[u8]> for MessageId

source§

impl AsRef<[u8]> for ReservationId

source§

impl AsRef<[u8]> for String

§

impl AsRef<[u8]> for Bytes

§

impl AsRef<[u8]> for BytesMut

§

impl AsRef<[u8]> for H128

§

impl AsRef<[u8]> for H160

§

impl AsRef<[u8]> for H256

§

impl AsRef<[u8]> for H384

§

impl AsRef<[u8]> for H512

§

impl AsRef<[u8]> for H768

§

impl AsRef<[u64]> for U128

Get a reference to the underlying little-endian words.

+

Implementors§

source§

impl AsRef<str> for str

source§

impl AsRef<str> for String

1.7.0 · source§

impl AsRef<CStr> for CStr

1.7.0 · source§

impl AsRef<CStr> for CString

source§

impl AsRef<OsStr> for Component<'_>

source§

impl AsRef<OsStr> for str

source§

impl AsRef<OsStr> for OsStr

source§

impl AsRef<OsStr> for OsString

source§

impl AsRef<OsStr> for Components<'_>

source§

impl AsRef<OsStr> for std::path::Iter<'_>

source§

impl AsRef<OsStr> for Path

source§

impl AsRef<OsStr> for PathBuf

source§

impl AsRef<OsStr> for String

1.8.0 · source§

impl AsRef<Path> for Cow<'_, OsStr>

1.25.0 · source§

impl AsRef<Path> for Component<'_>

source§

impl AsRef<Path> for str

source§

impl AsRef<Path> for OsStr

source§

impl AsRef<Path> for OsString

source§

impl AsRef<Path> for Components<'_>

source§

impl AsRef<Path> for std::path::Iter<'_>

source§

impl AsRef<Path> for Path

source§

impl AsRef<Path> for PathBuf

source§

impl AsRef<Path> for String

source§

impl AsRef<MessageHandle> for MessageHandle

source§

impl AsRef<[u8]> for str

source§

impl AsRef<[u8]> for ActorId

source§

impl AsRef<[u8]> for CodeId

source§

impl AsRef<[u8]> for MessageId

source§

impl AsRef<[u8]> for ReservationId

source§

impl AsRef<[u8]> for String

§

impl AsRef<[u8]> for Bytes

§

impl AsRef<[u8]> for BytesMut

§

impl AsRef<[u8]> for H128

§

impl AsRef<[u8]> for H160

§

impl AsRef<[u8]> for H256

§

impl AsRef<[u8]> for H384

§

impl AsRef<[u8]> for H512

§

impl AsRef<[u8]> for H768

§

impl AsRef<[u64]> for U128

Get a reference to the underlying little-endian words.

§

impl AsRef<[u64]> for U256

Get a reference to the underlying little-endian words.

§

impl AsRef<[u64]> for U512

Get a reference to the underlying little-endian words.

1.55.0 · source§

impl<'a> AsRef<str> for gstd::prelude::string::Drain<'a>

1.55.0 · source§

impl<'a> AsRef<[u8]> for gstd::prelude::string::Drain<'a>

source§

impl<'a, T> AsRef<T> for MutexGuard<'a, T>

source§

impl<'a, T> AsRef<T> for RwLockReadGuard<'a, T>

source§

impl<'a, T> AsRef<T> for RwLockWriteGuard<'a, T>

1.46.0 · source§

impl<'a, T, A> AsRef<[T]> for gstd::prelude::vec::Drain<'a, T, A>where diff --git a/pr-3467/gstd/prelude/trait.Clone.html b/pr-3467/gstd/prelude/trait.Clone.html index a03b3315f5f..10b2ed46d00 100644 --- a/pr-3467/gstd/prelude/trait.Clone.html +++ b/pr-3467/gstd/prelude/trait.Clone.html @@ -90,7 +90,7 @@
Examples

a.clone_from(&b) is equivalent to a = b.clone() in functionality, but can be overridden to reuse the resources of a to avoid unnecessary allocations.

-

Implementors§

source§

impl Clone for gcore::errors::Error

source§

impl Clone for gstd::errors::Error

§

impl Clone for ErrorReplyReason

§

impl Clone for ExecutionError

§

impl Clone for ExtError

§

impl Clone for MemoryError

§

impl Clone for MessageError

§

impl Clone for ProgramRentError

§

impl Clone for ReplyCode

§

impl Clone for ReservationError

§

impl Clone for SignalCode

§

impl Clone for SimpleExecutionError

§

impl Clone for SimpleProgramCreationError

§

impl Clone for SuccessReplyReason

source§

impl Clone for AsciiChar

source§

impl Clone for gstd::prelude::cmp::Ordering

source§

impl Clone for TryReserveErrorKind

§

impl Clone for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Clone for Infallible

1.28.0 · source§

impl Clone for gstd::prelude::fmt::Alignment

source§

impl Clone for Which

1.7.0 · source§

impl Clone for IpAddr

source§

impl Clone for Ipv6MulticastScope

source§

impl Clone for core::net::socket_addr::SocketAddr

source§

impl Clone for core::sync::atomic::Ordering

source§

impl Clone for VarError

source§

impl Clone for SeekFrom

source§

impl Clone for ErrorKind

source§

impl Clone for Shutdown

source§

impl Clone for BacktraceStyle

1.12.0 · source§

impl Clone for RecvTimeoutError

source§

impl Clone for TryRecvError

source§

impl Clone for _Unwind_Action

source§

impl Clone for _Unwind_Reason_Code

source§

impl Clone for hex::error::FromHexError

source§

impl Clone for BernoulliError

source§

impl Clone for WeightedError

source§

impl Clone for IndexVec

source§

impl Clone for IndexVecIntoIter

source§

impl Clone for FpCategory

1.55.0 · source§

impl Clone for IntErrorKind

source§

impl Clone for SearchStep

source§

impl Clone for bool

source§

impl Clone for char

source§

impl Clone for f32

source§

impl Clone for f64

source§

impl Clone for i8

source§

impl Clone for i16

source§

impl Clone for i32

source§

impl Clone for i64

source§

impl Clone for i128

source§

impl Clone for isize

source§

impl Clone for !

source§

impl Clone for u8

source§

impl Clone for u16

source§

impl Clone for u32

source§

impl Clone for u64

source§

impl Clone for u128

source§

impl Clone for usize

source§

impl Clone for gcore::general::ActorId

source§

impl Clone for gcore::general::CodeId

source§

impl Clone for gcore::general::MessageHandle

source§

impl Clone for gcore::general::MessageId

source§

impl Clone for gcore::general::ReservationId

source§

impl Clone for SyscallError

source§

impl Clone for gstd::msg::MessageHandle

source§

impl Clone for gstd::ActorId

source§

impl Clone for gstd::CodeId

§

impl Clone for GasMultiplier

source§

impl Clone for gstd::MessageId

§

impl Clone for Percent

source§

impl Clone for Reservation

source§

impl Clone for gstd::ReservationId

source§

impl Clone for Reservations

§

impl Clone for MetaType

source§

impl Clone for TypeId

1.34.0 · source§

impl Clone for TryFromSliceError

source§

impl Clone for gstd::prelude::ascii::EscapeDefault

1.34.0 · source§

impl Clone for CharTryFromError

1.9.0 · source§

impl Clone for DecodeUtf16Error

1.20.0 · source§

impl Clone for gstd::prelude::char::EscapeDebug

source§

impl Clone for gstd::prelude::char::EscapeDefault

source§

impl Clone for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Clone for ParseCharError

source§

impl Clone for ToLowercase

source§

impl Clone for ToUppercase

1.59.0 · source§

impl Clone for TryFromCharError

1.57.0 · source§

impl Clone for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl Clone for CString

1.69.0 · source§

impl Clone for FromBytesUntilNulError

1.64.0 · source§

impl Clone for FromBytesWithNulError

1.64.0 · source§

impl Clone for FromVecWithNulError

1.64.0 · source§

impl Clone for IntoStringError

1.64.0 · source§

impl Clone for NulError

source§

impl Clone for gstd::prelude::fmt::Error

source§

impl Clone for SipHasher

source§

impl Clone for alloc::alloc::Global

1.28.0 · source§

impl Clone for Layout

1.50.0 · source§

impl Clone for LayoutError

source§

impl Clone for core::alloc::AllocError

1.27.0 · source§

impl Clone for CpuidResult

1.27.0 · source§

impl Clone for __m128

source§

impl Clone for __m128bh

1.27.0 · source§

impl Clone for __m128d

1.27.0 · source§

impl Clone for __m128i

1.27.0 · source§

impl Clone for __m256

source§

impl Clone for __m256bh

1.27.0 · source§

impl Clone for __m256d

1.27.0 · source§

impl Clone for __m256i

1.74.0-nightly · source§

impl Clone for __m512

source§

impl Clone for __m512bh

1.74.0-nightly · source§

impl Clone for __m512d

1.74.0-nightly · source§

impl Clone for __m512i

source§

impl Clone for Ipv4Addr

source§

impl Clone for Ipv6Addr

source§

impl Clone for AddrParseError

source§

impl Clone for SocketAddrV4

source§

impl Clone for SocketAddrV6

1.28.0 · source§

impl Clone for System

1.13.0 · source§

impl Clone for DefaultHasher

1.7.0 · source§

impl Clone for std::collections::hash::map::RandomState

source§

impl Clone for OsString

source§

impl Clone for FileTimes

1.1.0 · source§

impl Clone for FileType

source§

impl Clone for Metadata

source§

impl Clone for OpenOptions

source§

impl Clone for Permissions

source§

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

source§

impl Clone for Sink

1.1.0 · source§

impl Clone for std::os::linux::raw::arch::stat

1.10.0 · source§

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

source§

impl Clone for SocketCred

source§

impl Clone for UCred

source§

impl Clone for PathBuf

1.7.0 · source§

impl Clone for StripPrefixError

1.61.0 · source§

impl Clone for ExitCode

source§

impl Clone for ExitStatus

source§

impl Clone for ExitStatusError

source§

impl Clone for Output

1.5.0 · source§

impl Clone for WaitTimeoutResult

source§

impl Clone for RecvError

1.26.0 · source§

impl Clone for AccessError

source§

impl Clone for Thread

1.19.0 · source§

impl Clone for ThreadId

1.8.0 · source§

impl Clone for Instant

1.8.0 · source§

impl Clone for SystemTime

1.8.0 · source§

impl Clone for SystemTimeError

source§

impl Clone for getrandom::error::Error

source§

impl Clone for IgnoredAny

source§

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

source§

impl Clone for Bernoulli

source§

impl Clone for Open01

source§

impl Clone for OpenClosed01

source§

impl Clone for Alphanumeric

source§

impl Clone for Standard

source§

impl Clone for UniformChar

source§

impl Clone for UniformDuration

source§

impl Clone for StepRng

source§

impl Clone for SmallRng

source§

impl Clone for StdRng

source§

impl Clone for ThreadRng

source§

impl Clone for ChaCha8Core

source§

impl Clone for ChaCha8Rng

source§

impl Clone for ChaCha12Core

source§

impl Clone for ChaCha12Rng

source§

impl Clone for ChaCha20Core

source§

impl Clone for ChaCha20Rng

source§

impl Clone for OsRng

1.33.0 · source§

impl Clone for PhantomPinned

source§

impl Clone for Assume

1.34.0 · source§

impl Clone for NonZeroI8

1.34.0 · source§

impl Clone for NonZeroI16

1.34.0 · source§

impl Clone for NonZeroI32

1.34.0 · source§

impl Clone for NonZeroI64

1.34.0 · source§

impl Clone for NonZeroI128

1.34.0 · source§

impl Clone for NonZeroIsize

1.28.0 · source§

impl Clone for NonZeroU8

1.28.0 · source§

impl Clone for NonZeroU16

1.28.0 · source§

impl Clone for NonZeroU32

1.28.0 · source§

impl Clone for NonZeroU64

1.28.0 · source§

impl Clone for NonZeroU128

1.28.0 · source§

impl Clone for NonZeroUsize

source§

impl Clone for ParseFloatError

source§

impl Clone for ParseIntError

1.34.0 · source§

impl Clone for TryFromIntError

source§

impl Clone for RangeFull

source§

impl Clone for gstd::prelude::ptr::Alignment

source§

impl Clone for TimSortRun

source§

impl Clone for ParseBoolError

source§

impl Clone for Utf8Error

source§

impl Clone for FromUtf8Error

1.3.0 · source§

impl Clone for gstd::prelude::Box<str, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<CStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<OsStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<Path, Global>

source§

impl Clone for String

1.36.0 · source§

impl Clone for RawWakerVTable

1.36.0 · source§

impl Clone for Waker

1.3.0 · source§

impl Clone for Duration

1.66.0 · source§

impl Clone for TryFromFloatSecsError

§

impl Clone for AHasher

§

impl Clone for AbortHandle

§

impl Clone for Aborted

§

impl Clone for AllocError

§

impl Clone for Alphabet

§

impl Clone for BigEndian

§

impl Clone for Box<str, Global>

§

impl Clone for Box<CStr, Global>

§

impl Clone for Bytes

§

impl Clone for BytesMut

§

impl Clone for Canceled

§

impl Clone for Const

§

impl Clone for DIR

§

impl Clone for Dl_info

§

impl Clone for Elf32_Chdr

§

impl Clone for Elf32_Ehdr

§

impl Clone for Elf32_Phdr

§

impl Clone for Elf32_Shdr

§

impl Clone for Elf32_Sym

§

impl Clone for Elf64_Chdr

§

impl Clone for Elf64_Ehdr

§

impl Clone for Elf64_Phdr

§

impl Clone for Elf64_Shdr

§

impl Clone for Elf64_Sym

§

impl Clone for EnvVars

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for FILE

§

impl Clone for FinderBuilder

§

impl Clone for FromHexError

§

impl Clone for FromStrRadixErrKind

§

impl Clone for Global

§

impl Clone for H128

§

impl Clone for H160

§

impl Clone for H256

§

impl Clone for H384

§

impl Clone for H512

§

impl Clone for H768

§

impl Clone for HashWithValue

§

impl Clone for LittleEndian

§

impl Clone for LocalSpawner

§

impl Clone for Lsb0

§

impl Clone for MetaForm

§

impl Clone for Msb0

§

impl Clone for Mut

§

impl Clone for NoA1

§

impl Clone for NoA2

§

impl Clone for NoNI

§

impl Clone for NoS3

§

impl Clone for NoS4

§

impl Clone for NullPtrError

§

impl Clone for OptionBool

§

impl Clone for PollNext

§

impl Clone for PortableForm

§

impl Clone for PortableRegistry

§

impl Clone for PortableType

§

impl Clone for Prefilter

§

impl Clone for RandomState

§

impl Clone for SendError

§

impl Clone for ThreadPool

§

impl Clone for TypeDefPrimitive

§

impl Clone for U128

§

impl Clone for U256

§

impl Clone for U512

§

impl Clone for YesA1

§

impl Clone for YesA2

§

impl Clone for YesNI

§

impl Clone for YesS3

§

impl Clone for YesS4

§

impl Clone for __c_anonymous_ifr_ifru

§

impl Clone for __c_anonymous_ifru_map

§

impl Clone for __c_anonymous_ptrace_syscall_info_data

§

impl Clone for __c_anonymous_ptrace_syscall_info_entry

§

impl Clone for __c_anonymous_ptrace_syscall_info_exit

§

impl Clone for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Clone for __c_anonymous_sockaddr_can_can_addr

§

impl Clone for __c_anonymous_sockaddr_can_j1939

§

impl Clone for __c_anonymous_sockaddr_can_tp

§

impl Clone for __exit_status

§

impl Clone for __timeval

§

impl Clone for _libc_fpstate

§

impl Clone for _libc_fpxreg

§

impl Clone for _libc_xmmreg

§

impl Clone for addrinfo

§

impl Clone for af_alg_iv

§

impl Clone for aiocb

§

impl Clone for arpd_request

§

impl Clone for arphdr

§

impl Clone for arpreq

§

impl Clone for arpreq_old

§

impl Clone for can_filter

§

impl Clone for can_frame

§

impl Clone for canfd_frame

§

impl Clone for canxl_frame

§

impl Clone for clone_args

§

impl Clone for cmsghdr

§

impl Clone for cpu_set_t

§

impl Clone for dirent

§

impl Clone for dirent64

§

impl Clone for dl_phdr_info

§

impl Clone for dqblk

§

impl Clone for epoll_event

§

impl Clone for fanotify_event_metadata

§

impl Clone for fanotify_response

§

impl Clone for fd_set

§

impl Clone for ff_condition_effect

§

impl Clone for ff_constant_effect

§

impl Clone for ff_effect

§

impl Clone for ff_envelope

§

impl Clone for ff_periodic_effect

§

impl Clone for ff_ramp_effect

§

impl Clone for ff_replay

§

impl Clone for ff_rumble_effect

§

impl Clone for ff_trigger

§

impl Clone for file_clone_range

§

impl Clone for flock

§

impl Clone for flock64

§

impl Clone for fpos64_t

§

impl Clone for fpos_t

§

impl Clone for fsid_t

§

impl Clone for genlmsghdr

§

impl Clone for glob64_t

§

impl Clone for glob_t

§

impl Clone for group

§

impl Clone for hostent

§

impl Clone for hwtstamp_config

§

impl Clone for if_nameindex

§

impl Clone for ifaddrs

§

impl Clone for ifreq

§

impl Clone for in6_addr

§

impl Clone for in6_ifreq

§

impl Clone for in6_pktinfo

§

impl Clone for in6_rtmsg

§

impl Clone for in_addr

§

impl Clone for in_pktinfo

§

impl Clone for inotify_event

§

impl Clone for input_absinfo

§

impl Clone for input_event

§

impl Clone for input_id

§

impl Clone for input_keymap_entry

§

impl Clone for input_mask

§

impl Clone for iovec

§

impl Clone for ip_mreq

§

impl Clone for ip_mreq_source

§

impl Clone for ip_mreqn

§

impl Clone for ipc_perm

§

impl Clone for ipv6_mreq

§

impl Clone for itimerspec

§

impl Clone for itimerval

§

impl Clone for j1939_filter

§

impl Clone for lconv

§

impl Clone for linger

§

impl Clone for mallinfo

§

impl Clone for mallinfo2

§

impl Clone for max_align_t

§

impl Clone for mcontext_t

§

impl Clone for mmsghdr

§

impl Clone for mntent

§

impl Clone for mq_attr

§

impl Clone for msghdr

§

impl Clone for msginfo

§

impl Clone for msqid_ds

§

impl Clone for nl_mmap_hdr

§

impl Clone for nl_mmap_req

§

impl Clone for nl_pktinfo

§

impl Clone for nlattr

§

impl Clone for nlmsgerr

§

impl Clone for nlmsghdr

§

impl Clone for ntptimeval

§

impl Clone for open_how

§

impl Clone for option

§

impl Clone for packet_mreq

§

impl Clone for passwd

§

impl Clone for pollfd

§

impl Clone for posix_spawn_file_actions_t

§

impl Clone for posix_spawnattr_t

§

impl Clone for protoent

§

impl Clone for pthread_attr_t

§

impl Clone for pthread_barrier_t

§

impl Clone for pthread_barrierattr_t

§

impl Clone for pthread_cond_t

§

impl Clone for pthread_condattr_t

§

impl Clone for pthread_mutex_t

§

impl Clone for pthread_mutexattr_t

§

impl Clone for pthread_rwlock_t

§

impl Clone for pthread_rwlockattr_t

§

impl Clone for ptrace_peeksiginfo_args

§

impl Clone for ptrace_rseq_configuration

§

impl Clone for ptrace_syscall_info

§

impl Clone for regex_t

§

impl Clone for regmatch_t

§

impl Clone for rlimit

§

impl Clone for rlimit64

§

impl Clone for rtentry

§

impl Clone for rusage

§

impl Clone for sched_param

§

impl Clone for sctp_authinfo

§

impl Clone for sctp_initmsg

§

impl Clone for sctp_nxtinfo

§

impl Clone for sctp_prinfo

§

impl Clone for sctp_rcvinfo

§

impl Clone for sctp_sndinfo

§

impl Clone for sctp_sndrcvinfo

§

impl Clone for seccomp_data

§

impl Clone for seccomp_notif_sizes

§

impl Clone for sem_t

§

impl Clone for sembuf

§

impl Clone for semid_ds

§

impl Clone for seminfo

§

impl Clone for servent

§

impl Clone for shmid_ds

§

impl Clone for sigaction

§

impl Clone for sigevent

§

impl Clone for siginfo_t

§

impl Clone for signalfd_siginfo

§

impl Clone for sigset_t

§

impl Clone for sigval

§

impl Clone for sock_extended_err

§

impl Clone for sock_filter

§

impl Clone for sock_fprog

§

impl Clone for sock_txtime

§

impl Clone for sockaddr

§

impl Clone for sockaddr_alg

§

impl Clone for sockaddr_can

§

impl Clone for sockaddr_in

§

impl Clone for sockaddr_in6

§

impl Clone for sockaddr_ll

§

impl Clone for sockaddr_nl

§

impl Clone for sockaddr_storage

§

impl Clone for sockaddr_un

§

impl Clone for sockaddr_vm

§

impl Clone for spwd

§

impl Clone for stack_t

§

impl Clone for stat

§

impl Clone for stat64

§

impl Clone for statfs

§

impl Clone for statfs64

§

impl Clone for statvfs

§

impl Clone for statvfs64

§

impl Clone for statx

§

impl Clone for statx_timestamp

§

impl Clone for sysinfo

§

impl Clone for termios

§

impl Clone for termios2

§

impl Clone for timespec

§

impl Clone for timeval

§

impl Clone for timex

§

impl Clone for timezone

§

impl Clone for tm

§

impl Clone for tms

§

impl Clone for ucontext_t

§

impl Clone for ucred

§

impl Clone for uinput_abs_setup

§

impl Clone for uinput_ff_erase

§

impl Clone for uinput_ff_upload

§

impl Clone for uinput_setup

§

impl Clone for uinput_user_dev

§

impl Clone for user

§

impl Clone for user_fpregs_struct

§

impl Clone for user_regs_struct

§

impl Clone for utimbuf

§

impl Clone for utmpx

§

impl Clone for utsname

§

impl Clone for vec128_storage

§

impl Clone for vec256_storage

§

impl Clone for vec512_storage

§

impl Clone for winsize

source§

impl<'a> Clone for Component<'a>

source§

impl<'a> Clone for Prefix<'a>

source§

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

source§

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

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

1.10.0 · source§

impl<'a> Clone for Location<'a>

1.60.0 · source§

impl<'a> Clone for EscapeAscii<'a>

source§

impl<'a> Clone for CharSearcher<'a>

source§

impl<'a> Clone for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Clone for CharIndices<'a>

source§

impl<'a> Clone for Chars<'a>

1.8.0 · source§

impl<'a> Clone for EncodeUtf16<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Clone for Lines<'a>

source§

impl<'a> Clone for LinesAny<'a>

1.34.0 · source§

impl<'a> Clone for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Clone for SplitWhitespace<'a>

source§

impl<'a> Clone for Utf8Chunk<'a>

source§

impl<'a> Clone for Utf8Chunks<'a>

source§

impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Clone for StrSearcher<'a, 'b>

source§

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

source§

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

source§

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

source§

impl<'a, F> Clone for CharPredicateSearcher<'a, F>where +

Implementors§

source§

impl Clone for gstd::errors::Error

§

impl Clone for ErrorReplyReason

§

impl Clone for ExecutionError

§

impl Clone for ExtError

§

impl Clone for MemoryError

§

impl Clone for MessageError

§

impl Clone for ProgramRentError

§

impl Clone for ReplyCode

§

impl Clone for ReservationError

§

impl Clone for SignalCode

§

impl Clone for SimpleExecutionError

§

impl Clone for SimpleProgramCreationError

§

impl Clone for SuccessReplyReason

source§

impl Clone for AsciiChar

source§

impl Clone for gstd::prelude::cmp::Ordering

source§

impl Clone for TryReserveErrorKind

§

impl Clone for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Clone for Infallible

1.28.0 · source§

impl Clone for gstd::prelude::fmt::Alignment

source§

impl Clone for Which

1.7.0 · source§

impl Clone for IpAddr

source§

impl Clone for Ipv6MulticastScope

source§

impl Clone for core::net::socket_addr::SocketAddr

source§

impl Clone for core::sync::atomic::Ordering

source§

impl Clone for VarError

source§

impl Clone for SeekFrom

source§

impl Clone for ErrorKind

source§

impl Clone for Shutdown

source§

impl Clone for BacktraceStyle

1.12.0 · source§

impl Clone for RecvTimeoutError

source§

impl Clone for TryRecvError

source§

impl Clone for _Unwind_Action

source§

impl Clone for _Unwind_Reason_Code

source§

impl Clone for hex::error::FromHexError

source§

impl Clone for BernoulliError

source§

impl Clone for WeightedError

source§

impl Clone for IndexVec

source§

impl Clone for IndexVecIntoIter

source§

impl Clone for FpCategory

1.55.0 · source§

impl Clone for IntErrorKind

source§

impl Clone for SearchStep

source§

impl Clone for bool

source§

impl Clone for char

source§

impl Clone for f32

source§

impl Clone for f64

source§

impl Clone for i8

source§

impl Clone for i16

source§

impl Clone for i32

source§

impl Clone for i64

source§

impl Clone for i128

source§

impl Clone for isize

source§

impl Clone for !

source§

impl Clone for u8

source§

impl Clone for u16

source§

impl Clone for u32

source§

impl Clone for u64

source§

impl Clone for u128

source§

impl Clone for usize

§

impl Clone for SyscallError

source§

impl Clone for gstd::msg::MessageHandle

source§

impl Clone for gstd::ActorId

source§

impl Clone for gstd::CodeId

§

impl Clone for GasMultiplier

source§

impl Clone for gstd::MessageId

§

impl Clone for Percent

source§

impl Clone for Reservation

source§

impl Clone for gstd::ReservationId

source§

impl Clone for Reservations

§

impl Clone for MetaType

source§

impl Clone for TypeId

1.34.0 · source§

impl Clone for TryFromSliceError

source§

impl Clone for gstd::prelude::ascii::EscapeDefault

1.34.0 · source§

impl Clone for CharTryFromError

1.9.0 · source§

impl Clone for DecodeUtf16Error

1.20.0 · source§

impl Clone for gstd::prelude::char::EscapeDebug

source§

impl Clone for gstd::prelude::char::EscapeDefault

source§

impl Clone for gstd::prelude::char::EscapeUnicode

1.20.0 · source§

impl Clone for ParseCharError

source§

impl Clone for ToLowercase

source§

impl Clone for ToUppercase

1.59.0 · source§

impl Clone for TryFromCharError

1.57.0 · source§

impl Clone for gstd::prelude::collections::TryReserveError

1.64.0 · source§

impl Clone for CString

1.69.0 · source§

impl Clone for FromBytesUntilNulError

1.64.0 · source§

impl Clone for FromBytesWithNulError

1.64.0 · source§

impl Clone for FromVecWithNulError

1.64.0 · source§

impl Clone for IntoStringError

1.64.0 · source§

impl Clone for NulError

source§

impl Clone for gstd::prelude::fmt::Error

source§

impl Clone for SipHasher

source§

impl Clone for alloc::alloc::Global

1.28.0 · source§

impl Clone for Layout

1.50.0 · source§

impl Clone for LayoutError

source§

impl Clone for core::alloc::AllocError

1.27.0 · source§

impl Clone for CpuidResult

1.27.0 · source§

impl Clone for __m128

source§

impl Clone for __m128bh

1.27.0 · source§

impl Clone for __m128d

1.27.0 · source§

impl Clone for __m128i

1.27.0 · source§

impl Clone for __m256

source§

impl Clone for __m256bh

1.27.0 · source§

impl Clone for __m256d

1.27.0 · source§

impl Clone for __m256i

1.74.0-nightly · source§

impl Clone for __m512

source§

impl Clone for __m512bh

1.74.0-nightly · source§

impl Clone for __m512d

1.74.0-nightly · source§

impl Clone for __m512i

source§

impl Clone for Ipv4Addr

source§

impl Clone for Ipv6Addr

source§

impl Clone for AddrParseError

source§

impl Clone for SocketAddrV4

source§

impl Clone for SocketAddrV6

1.28.0 · source§

impl Clone for System

1.13.0 · source§

impl Clone for DefaultHasher

1.7.0 · source§

impl Clone for std::collections::hash::map::RandomState

source§

impl Clone for OsString

source§

impl Clone for FileTimes

1.1.0 · source§

impl Clone for FileType

source§

impl Clone for Metadata

source§

impl Clone for OpenOptions

source§

impl Clone for Permissions

source§

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

source§

impl Clone for Sink

1.1.0 · source§

impl Clone for std::os::linux::raw::arch::stat

1.10.0 · source§

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

source§

impl Clone for SocketCred

source§

impl Clone for UCred

source§

impl Clone for PathBuf

1.7.0 · source§

impl Clone for StripPrefixError

1.61.0 · source§

impl Clone for ExitCode

source§

impl Clone for ExitStatus

source§

impl Clone for ExitStatusError

source§

impl Clone for Output

1.5.0 · source§

impl Clone for WaitTimeoutResult

source§

impl Clone for RecvError

1.26.0 · source§

impl Clone for AccessError

source§

impl Clone for Thread

1.19.0 · source§

impl Clone for ThreadId

1.8.0 · source§

impl Clone for Instant

1.8.0 · source§

impl Clone for SystemTime

1.8.0 · source§

impl Clone for SystemTimeError

source§

impl Clone for getrandom::error::Error

source§

impl Clone for IgnoredAny

source§

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

source§

impl Clone for Bernoulli

source§

impl Clone for Open01

source§

impl Clone for OpenClosed01

source§

impl Clone for Alphanumeric

source§

impl Clone for Standard

source§

impl Clone for UniformChar

source§

impl Clone for UniformDuration

source§

impl Clone for StepRng

source§

impl Clone for SmallRng

source§

impl Clone for StdRng

source§

impl Clone for ThreadRng

source§

impl Clone for ChaCha8Core

source§

impl Clone for ChaCha8Rng

source§

impl Clone for ChaCha12Core

source§

impl Clone for ChaCha12Rng

source§

impl Clone for ChaCha20Core

source§

impl Clone for ChaCha20Rng

source§

impl Clone for OsRng

1.33.0 · source§

impl Clone for PhantomPinned

source§

impl Clone for Assume

1.34.0 · source§

impl Clone for NonZeroI8

1.34.0 · source§

impl Clone for NonZeroI16

1.34.0 · source§

impl Clone for NonZeroI32

1.34.0 · source§

impl Clone for NonZeroI64

1.34.0 · source§

impl Clone for NonZeroI128

1.34.0 · source§

impl Clone for NonZeroIsize

1.28.0 · source§

impl Clone for NonZeroU8

1.28.0 · source§

impl Clone for NonZeroU16

1.28.0 · source§

impl Clone for NonZeroU32

1.28.0 · source§

impl Clone for NonZeroU64

1.28.0 · source§

impl Clone for NonZeroU128

1.28.0 · source§

impl Clone for NonZeroUsize

source§

impl Clone for ParseFloatError

source§

impl Clone for ParseIntError

1.34.0 · source§

impl Clone for TryFromIntError

source§

impl Clone for RangeFull

source§

impl Clone for gstd::prelude::ptr::Alignment

source§

impl Clone for TimSortRun

source§

impl Clone for ParseBoolError

source§

impl Clone for Utf8Error

source§

impl Clone for FromUtf8Error

1.3.0 · source§

impl Clone for gstd::prelude::Box<str, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<CStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<OsStr, Global>

1.29.0 · source§

impl Clone for gstd::prelude::Box<Path, Global>

source§

impl Clone for String

1.36.0 · source§

impl Clone for RawWakerVTable

1.36.0 · source§

impl Clone for Waker

1.3.0 · source§

impl Clone for Duration

1.66.0 · source§

impl Clone for TryFromFloatSecsError

§

impl Clone for AHasher

§

impl Clone for AbortHandle

§

impl Clone for Aborted

§

impl Clone for ActorId

§

impl Clone for AllocError

§

impl Clone for Alphabet

§

impl Clone for BigEndian

§

impl Clone for Box<str, Global>

§

impl Clone for Box<CStr, Global>

§

impl Clone for Bytes

§

impl Clone for BytesMut

§

impl Clone for Canceled

§

impl Clone for CodeId

§

impl Clone for Const

§

impl Clone for DIR

§

impl Clone for Dl_info

§

impl Clone for Elf32_Chdr

§

impl Clone for Elf32_Ehdr

§

impl Clone for Elf32_Phdr

§

impl Clone for Elf32_Shdr

§

impl Clone for Elf32_Sym

§

impl Clone for Elf64_Chdr

§

impl Clone for Elf64_Ehdr

§

impl Clone for Elf64_Phdr

§

impl Clone for Elf64_Shdr

§

impl Clone for Elf64_Sym

§

impl Clone for EnvVars

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for Error

§

impl Clone for FILE

§

impl Clone for FinderBuilder

§

impl Clone for FromHexError

§

impl Clone for FromStrRadixErrKind

§

impl Clone for Global

§

impl Clone for H128

§

impl Clone for H160

§

impl Clone for H256

§

impl Clone for H384

§

impl Clone for H512

§

impl Clone for H768

§

impl Clone for HashWithValue

§

impl Clone for LittleEndian

§

impl Clone for LocalSpawner

§

impl Clone for Lsb0

§

impl Clone for MessageHandle

§

impl Clone for MessageId

§

impl Clone for MetaForm

§

impl Clone for Msb0

§

impl Clone for Mut

§

impl Clone for NoA1

§

impl Clone for NoA2

§

impl Clone for NoNI

§

impl Clone for NoS3

§

impl Clone for NoS4

§

impl Clone for NullPtrError

§

impl Clone for OptionBool

§

impl Clone for PollNext

§

impl Clone for PortableForm

§

impl Clone for PortableRegistry

§

impl Clone for PortableType

§

impl Clone for Prefilter

§

impl Clone for RandomState

§

impl Clone for ReservationId

§

impl Clone for SendError

§

impl Clone for ThreadPool

§

impl Clone for TypeDefPrimitive

§

impl Clone for U128

§

impl Clone for U256

§

impl Clone for U512

§

impl Clone for YesA1

§

impl Clone for YesA2

§

impl Clone for YesNI

§

impl Clone for YesS3

§

impl Clone for YesS4

§

impl Clone for __c_anonymous_ifr_ifru

§

impl Clone for __c_anonymous_ifru_map

§

impl Clone for __c_anonymous_ptrace_syscall_info_data

§

impl Clone for __c_anonymous_ptrace_syscall_info_entry

§

impl Clone for __c_anonymous_ptrace_syscall_info_exit

§

impl Clone for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Clone for __c_anonymous_sockaddr_can_can_addr

§

impl Clone for __c_anonymous_sockaddr_can_j1939

§

impl Clone for __c_anonymous_sockaddr_can_tp

§

impl Clone for __exit_status

§

impl Clone for __timeval

§

impl Clone for _libc_fpstate

§

impl Clone for _libc_fpxreg

§

impl Clone for _libc_xmmreg

§

impl Clone for addrinfo

§

impl Clone for af_alg_iv

§

impl Clone for aiocb

§

impl Clone for arpd_request

§

impl Clone for arphdr

§

impl Clone for arpreq

§

impl Clone for arpreq_old

§

impl Clone for can_filter

§

impl Clone for can_frame

§

impl Clone for canfd_frame

§

impl Clone for canxl_frame

§

impl Clone for clone_args

§

impl Clone for cmsghdr

§

impl Clone for cpu_set_t

§

impl Clone for dirent

§

impl Clone for dirent64

§

impl Clone for dl_phdr_info

§

impl Clone for dqblk

§

impl Clone for epoll_event

§

impl Clone for fanotify_event_metadata

§

impl Clone for fanotify_response

§

impl Clone for fd_set

§

impl Clone for ff_condition_effect

§

impl Clone for ff_constant_effect

§

impl Clone for ff_effect

§

impl Clone for ff_envelope

§

impl Clone for ff_periodic_effect

§

impl Clone for ff_ramp_effect

§

impl Clone for ff_replay

§

impl Clone for ff_rumble_effect

§

impl Clone for ff_trigger

§

impl Clone for file_clone_range

§

impl Clone for flock

§

impl Clone for flock64

§

impl Clone for fpos64_t

§

impl Clone for fpos_t

§

impl Clone for fsid_t

§

impl Clone for genlmsghdr

§

impl Clone for glob64_t

§

impl Clone for glob_t

§

impl Clone for group

§

impl Clone for hostent

§

impl Clone for hwtstamp_config

§

impl Clone for if_nameindex

§

impl Clone for ifaddrs

§

impl Clone for ifreq

§

impl Clone for in6_addr

§

impl Clone for in6_ifreq

§

impl Clone for in6_pktinfo

§

impl Clone for in6_rtmsg

§

impl Clone for in_addr

§

impl Clone for in_pktinfo

§

impl Clone for inotify_event

§

impl Clone for input_absinfo

§

impl Clone for input_event

§

impl Clone for input_id

§

impl Clone for input_keymap_entry

§

impl Clone for input_mask

§

impl Clone for iovec

§

impl Clone for ip_mreq

§

impl Clone for ip_mreq_source

§

impl Clone for ip_mreqn

§

impl Clone for ipc_perm

§

impl Clone for ipv6_mreq

§

impl Clone for itimerspec

§

impl Clone for itimerval

§

impl Clone for j1939_filter

§

impl Clone for lconv

§

impl Clone for linger

§

impl Clone for mallinfo

§

impl Clone for mallinfo2

§

impl Clone for max_align_t

§

impl Clone for mcontext_t

§

impl Clone for mmsghdr

§

impl Clone for mntent

§

impl Clone for mq_attr

§

impl Clone for msghdr

§

impl Clone for msginfo

§

impl Clone for msqid_ds

§

impl Clone for nl_mmap_hdr

§

impl Clone for nl_mmap_req

§

impl Clone for nl_pktinfo

§

impl Clone for nlattr

§

impl Clone for nlmsgerr

§

impl Clone for nlmsghdr

§

impl Clone for ntptimeval

§

impl Clone for open_how

§

impl Clone for option

§

impl Clone for packet_mreq

§

impl Clone for passwd

§

impl Clone for pollfd

§

impl Clone for posix_spawn_file_actions_t

§

impl Clone for posix_spawnattr_t

§

impl Clone for protoent

§

impl Clone for pthread_attr_t

§

impl Clone for pthread_barrier_t

§

impl Clone for pthread_barrierattr_t

§

impl Clone for pthread_cond_t

§

impl Clone for pthread_condattr_t

§

impl Clone for pthread_mutex_t

§

impl Clone for pthread_mutexattr_t

§

impl Clone for pthread_rwlock_t

§

impl Clone for pthread_rwlockattr_t

§

impl Clone for ptrace_peeksiginfo_args

§

impl Clone for ptrace_rseq_configuration

§

impl Clone for ptrace_syscall_info

§

impl Clone for regex_t

§

impl Clone for regmatch_t

§

impl Clone for rlimit

§

impl Clone for rlimit64

§

impl Clone for rtentry

§

impl Clone for rusage

§

impl Clone for sched_param

§

impl Clone for sctp_authinfo

§

impl Clone for sctp_initmsg

§

impl Clone for sctp_nxtinfo

§

impl Clone for sctp_prinfo

§

impl Clone for sctp_rcvinfo

§

impl Clone for sctp_sndinfo

§

impl Clone for sctp_sndrcvinfo

§

impl Clone for seccomp_data

§

impl Clone for seccomp_notif_sizes

§

impl Clone for sem_t

§

impl Clone for sembuf

§

impl Clone for semid_ds

§

impl Clone for seminfo

§

impl Clone for servent

§

impl Clone for shmid_ds

§

impl Clone for sigaction

§

impl Clone for sigevent

§

impl Clone for siginfo_t

§

impl Clone for signalfd_siginfo

§

impl Clone for sigset_t

§

impl Clone for sigval

§

impl Clone for sock_extended_err

§

impl Clone for sock_filter

§

impl Clone for sock_fprog

§

impl Clone for sock_txtime

§

impl Clone for sockaddr

§

impl Clone for sockaddr_alg

§

impl Clone for sockaddr_can

§

impl Clone for sockaddr_in

§

impl Clone for sockaddr_in6

§

impl Clone for sockaddr_ll

§

impl Clone for sockaddr_nl

§

impl Clone for sockaddr_storage

§

impl Clone for sockaddr_un

§

impl Clone for sockaddr_vm

§

impl Clone for spwd

§

impl Clone for stack_t

§

impl Clone for stat

§

impl Clone for stat64

§

impl Clone for statfs

§

impl Clone for statfs64

§

impl Clone for statvfs

§

impl Clone for statvfs64

§

impl Clone for statx

§

impl Clone for statx_timestamp

§

impl Clone for sysinfo

§

impl Clone for termios

§

impl Clone for termios2

§

impl Clone for timespec

§

impl Clone for timeval

§

impl Clone for timex

§

impl Clone for timezone

§

impl Clone for tm

§

impl Clone for tms

§

impl Clone for ucontext_t

§

impl Clone for ucred

§

impl Clone for uinput_abs_setup

§

impl Clone for uinput_ff_erase

§

impl Clone for uinput_ff_upload

§

impl Clone for uinput_setup

§

impl Clone for uinput_user_dev

§

impl Clone for user

§

impl Clone for user_fpregs_struct

§

impl Clone for user_regs_struct

§

impl Clone for utimbuf

§

impl Clone for utmpx

§

impl Clone for utsname

§

impl Clone for vec128_storage

§

impl Clone for vec256_storage

§

impl Clone for vec512_storage

§

impl Clone for winsize

source§

impl<'a> Clone for Component<'a>

source§

impl<'a> Clone for Prefix<'a>

source§

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

source§

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

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

source§

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

source§

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

1.10.0 · source§

impl<'a> Clone for Location<'a>

1.60.0 · source§

impl<'a> Clone for EscapeAscii<'a>

source§

impl<'a> Clone for CharSearcher<'a>

source§

impl<'a> Clone for gstd::prelude::str::Bytes<'a>

source§

impl<'a> Clone for CharIndices<'a>

source§

impl<'a> Clone for Chars<'a>

1.8.0 · source§

impl<'a> Clone for EncodeUtf16<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Clone for gstd::prelude::str::EscapeUnicode<'a>

source§

impl<'a> Clone for Lines<'a>

source§

impl<'a> Clone for LinesAny<'a>

1.34.0 · source§

impl<'a> Clone for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Clone for SplitWhitespace<'a>

source§

impl<'a> Clone for Utf8Chunk<'a>

source§

impl<'a> Clone for Utf8Chunks<'a>

source§

impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Clone for StrSearcher<'a, 'b>

source§

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

source§

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

source§

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

source§

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

1.5.0 · source§

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

1.2.0 · source§

impl<'a, P> Clone for Matches<'a, P>where diff --git a/pr-3467/gstd/prelude/trait.Copy.html b/pr-3467/gstd/prelude/trait.Copy.html index 3c75e2cd0af..642a2e1a08d 100644 --- a/pr-3467/gstd/prelude/trait.Copy.html +++ b/pr-3467/gstd/prelude/trait.Copy.html @@ -112,7 +112,7 @@

Additional i (even if the referent doesn’t), while variables captured by mutable reference never implement Copy. -

Implementors§

§

impl Copy for ErrorReplyReason

§

impl Copy for ExecutionError

§

impl Copy for ExtError

§

impl Copy for MemoryError

§

impl Copy for MessageError

§

impl Copy for ProgramRentError

§

impl Copy for ReplyCode

§

impl Copy for ReservationError

§

impl Copy for SignalCode

§

impl Copy for SimpleExecutionError

§

impl Copy for SimpleProgramCreationError

§

impl Copy for SuccessReplyReason

source§

impl Copy for AsciiChar

source§

impl Copy for gstd::prelude::cmp::Ordering

1.34.0 · source§

impl Copy for Infallible

1.28.0 · source§

impl Copy for gstd::prelude::fmt::Alignment

source§

impl Copy for Which

1.7.0 · source§

impl Copy for IpAddr

source§

impl Copy for Ipv6MulticastScope

source§

impl Copy for SocketAddr

source§

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

source§

impl Copy for SeekFrom

source§

impl Copy for ErrorKind

source§

impl Copy for Shutdown

source§

impl Copy for BacktraceStyle

1.12.0 · source§

impl Copy for RecvTimeoutError

source§

impl Copy for TryRecvError

source§

impl Copy for _Unwind_Action

source§

impl Copy for _Unwind_Reason_Code

source§

impl Copy for hex::error::FromHexError

source§

impl Copy for BernoulliError

source§

impl Copy for WeightedError

source§

impl Copy for FpCategory

source§

impl Copy for SearchStep

source§

impl Copy for bool

source§

impl Copy for char

source§

impl Copy for f32

source§

impl Copy for f64

source§

impl Copy for i8

source§

impl Copy for i16

source§

impl Copy for i32

source§

impl Copy for i64

source§

impl Copy for i128

source§

impl Copy for isize

source§

impl Copy for !

source§

impl Copy for u8

source§

impl Copy for u16

source§

impl Copy for u32

source§

impl Copy for u64

source§

impl Copy for u128

source§

impl Copy for usize

source§

impl Copy for gcore::general::ActorId

source§

impl Copy for gcore::general::CodeId

source§

impl Copy for gcore::general::MessageHandle

source§

impl Copy for gcore::general::MessageId

source§

impl Copy for gcore::general::ReservationId

source§

impl Copy for SyscallError

source§

impl Copy for gstd::msg::MessageHandle

source§

impl Copy for gstd::ActorId

source§

impl Copy for gstd::CodeId

§

impl Copy for GasMultiplier

source§

impl Copy for gstd::MessageId

§

impl Copy for Percent

source§

impl Copy for Reservation

source§

impl Copy for gstd::ReservationId

§

impl Copy for MetaType

source§

impl Copy for TypeId

1.34.0 · source§

impl Copy for TryFromSliceError

1.34.0 · source§

impl Copy for CharTryFromError

1.59.0 · source§

impl Copy for TryFromCharError

source§

impl Copy for gstd::prelude::fmt::Error

source§

impl Copy for alloc::alloc::Global

1.28.0 · source§

impl Copy for Layout

source§

impl Copy for core::alloc::AllocError

1.27.0 · source§

impl Copy for CpuidResult

1.27.0 · source§

impl Copy for __m128

source§

impl Copy for __m128bh

1.27.0 · source§

impl Copy for __m128d

1.27.0 · source§

impl Copy for __m128i

1.27.0 · source§

impl Copy for __m256

source§

impl Copy for __m256bh

1.27.0 · source§

impl Copy for __m256d

1.27.0 · source§

impl Copy for __m256i

1.74.0-nightly · source§

impl Copy for __m512

source§

impl Copy for __m512bh

1.74.0-nightly · source§

impl Copy for __m512d

1.74.0-nightly · source§

impl Copy for __m512i

source§

impl Copy for Ipv4Addr

source§

impl Copy for Ipv6Addr

source§

impl Copy for SocketAddrV4

source§

impl Copy for SocketAddrV6

1.28.0 · source§

impl Copy for System

source§

impl Copy for FileTimes

1.1.0 · source§

impl Copy for FileType

source§

impl Copy for Empty

source§

impl Copy for Sink

source§

impl Copy for UCred

1.61.0 · source§

impl Copy for ExitCode

source§

impl Copy for ExitStatus

source§

impl Copy for ExitStatusError

1.5.0 · source§

impl Copy for WaitTimeoutResult

source§

impl Copy for RecvError

1.26.0 · source§

impl Copy for AccessError

1.19.0 · source§

impl Copy for ThreadId

1.8.0 · source§

impl Copy for Instant

1.8.0 · source§

impl Copy for SystemTime

source§

impl Copy for getrandom::error::Error

source§

impl Copy for IgnoredAny

source§

impl Copy for Bernoulli

source§

impl Copy for Open01

source§

impl Copy for OpenClosed01

source§

impl Copy for Alphanumeric

source§

impl Copy for Standard

source§

impl Copy for UniformChar

source§

impl Copy for UniformDuration

source§

impl Copy for OsRng

1.33.0 · source§

impl Copy for PhantomPinned

source§

impl Copy for Assume

1.34.0 · source§

impl Copy for NonZeroI8

1.34.0 · source§

impl Copy for NonZeroI16

1.34.0 · source§

impl Copy for NonZeroI32

1.34.0 · source§

impl Copy for NonZeroI64

1.34.0 · source§

impl Copy for NonZeroI128

1.34.0 · source§

impl Copy for NonZeroIsize

1.28.0 · source§

impl Copy for NonZeroU8

1.28.0 · source§

impl Copy for NonZeroU16

1.28.0 · source§

impl Copy for NonZeroU32

1.28.0 · source§

impl Copy for NonZeroU64

1.28.0 · source§

impl Copy for NonZeroU128

1.28.0 · source§

impl Copy for NonZeroUsize

1.34.0 · source§

impl Copy for TryFromIntError

source§

impl Copy for RangeFull

source§

impl Copy for gstd::prelude::ptr::Alignment

source§

impl Copy for TimSortRun

source§

impl Copy for Utf8Error

1.36.0 · source§

impl Copy for RawWakerVTable

1.3.0 · source§

impl Copy for Duration

§

impl Copy for Aborted

§

impl Copy for AllocError

§

impl Copy for Alphabet

§

impl Copy for BigEndian

§

impl Copy for Canceled

§

impl Copy for Const

§

impl Copy for DIR

§

impl Copy for Dl_info

§

impl Copy for Elf32_Chdr

§

impl Copy for Elf32_Ehdr

§

impl Copy for Elf32_Phdr

§

impl Copy for Elf32_Shdr

§

impl Copy for Elf32_Sym

§

impl Copy for Elf64_Chdr

§

impl Copy for Elf64_Ehdr

§

impl Copy for Elf64_Phdr

§

impl Copy for Elf64_Shdr

§

impl Copy for Elf64_Sym

§

impl Copy for EnvVars

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for FILE

§

impl Copy for FromHexError

§

impl Copy for FromStrRadixErrKind

§

impl Copy for Global

§

impl Copy for H128

§

impl Copy for H160

§

impl Copy for H256

§

impl Copy for H384

§

impl Copy for H512

§

impl Copy for H768

§

impl Copy for LittleEndian

§

impl Copy for Lsb0

§

impl Copy for MetaForm

§

impl Copy for Msb0

§

impl Copy for Mut

§

impl Copy for NoA1

§

impl Copy for NoA2

§

impl Copy for NoNI

§

impl Copy for NoS3

§

impl Copy for NoS4

§

impl Copy for NullPtrError

§

impl Copy for OptionBool

§

impl Copy for PollNext

§

impl Copy for PortableForm

§

impl Copy for Prefilter

§

impl Copy for U128

§

impl Copy for U256

§

impl Copy for U512

§

impl Copy for YesA1

§

impl Copy for YesA2

§

impl Copy for YesNI

§

impl Copy for YesS3

§

impl Copy for YesS4

§

impl Copy for __c_anonymous_ifr_ifru

§

impl Copy for __c_anonymous_ifru_map

§

impl Copy for __c_anonymous_ptrace_syscall_info_data

§

impl Copy for __c_anonymous_ptrace_syscall_info_entry

§

impl Copy for __c_anonymous_ptrace_syscall_info_exit

§

impl Copy for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Copy for __c_anonymous_sockaddr_can_can_addr

§

impl Copy for __c_anonymous_sockaddr_can_j1939

§

impl Copy for __c_anonymous_sockaddr_can_tp

§

impl Copy for __exit_status

§

impl Copy for __timeval

§

impl Copy for _libc_fpstate

§

impl Copy for _libc_fpxreg

§

impl Copy for _libc_xmmreg

§

impl Copy for addrinfo

§

impl Copy for af_alg_iv

§

impl Copy for aiocb

§

impl Copy for arpd_request

§

impl Copy for arphdr

§

impl Copy for arpreq

§

impl Copy for arpreq_old

§

impl Copy for can_filter

§

impl Copy for can_frame

§

impl Copy for canfd_frame

§

impl Copy for canxl_frame

§

impl Copy for clone_args

§

impl Copy for cmsghdr

§

impl Copy for cpu_set_t

§

impl Copy for dirent

§

impl Copy for dirent64

§

impl Copy for dl_phdr_info

§

impl Copy for dqblk

§

impl Copy for epoll_event

§

impl Copy for fanotify_event_metadata

§

impl Copy for fanotify_response

§

impl Copy for fd_set

§

impl Copy for ff_condition_effect

§

impl Copy for ff_constant_effect

§

impl Copy for ff_effect

§

impl Copy for ff_envelope

§

impl Copy for ff_periodic_effect

§

impl Copy for ff_ramp_effect

§

impl Copy for ff_replay

§

impl Copy for ff_rumble_effect

§

impl Copy for ff_trigger

§

impl Copy for file_clone_range

§

impl Copy for flock

§

impl Copy for flock64

§

impl Copy for fpos64_t

§

impl Copy for fpos_t

§

impl Copy for fsid_t

§

impl Copy for genlmsghdr

§

impl Copy for glob64_t

§

impl Copy for glob_t

§

impl Copy for group

§

impl Copy for hostent

§

impl Copy for hwtstamp_config

§

impl Copy for if_nameindex

§

impl Copy for ifaddrs

§

impl Copy for ifreq

§

impl Copy for in6_addr

§

impl Copy for in6_ifreq

§

impl Copy for in6_pktinfo

§

impl Copy for in6_rtmsg

§

impl Copy for in_addr

§

impl Copy for in_pktinfo

§

impl Copy for inotify_event

§

impl Copy for input_absinfo

§

impl Copy for input_event

§

impl Copy for input_id

§

impl Copy for input_keymap_entry

§

impl Copy for input_mask

§

impl Copy for iovec

§

impl Copy for ip_mreq

§

impl Copy for ip_mreq_source

§

impl Copy for ip_mreqn

§

impl Copy for ipc_perm

§

impl Copy for ipv6_mreq

§

impl Copy for itimerspec

§

impl Copy for itimerval

§

impl Copy for j1939_filter

§

impl Copy for lconv

§

impl Copy for linger

§

impl Copy for mallinfo

§

impl Copy for mallinfo2

§

impl Copy for max_align_t

§

impl Copy for mcontext_t

§

impl Copy for mmsghdr

§

impl Copy for mntent

§

impl Copy for mq_attr

§

impl Copy for msghdr

§

impl Copy for msginfo

§

impl Copy for msqid_ds

§

impl Copy for nl_mmap_hdr

§

impl Copy for nl_mmap_req

§

impl Copy for nl_pktinfo

§

impl Copy for nlattr

§

impl Copy for nlmsgerr

§

impl Copy for nlmsghdr

§

impl Copy for ntptimeval

§

impl Copy for open_how

§

impl Copy for option

§

impl Copy for packet_mreq

§

impl Copy for passwd

§

impl Copy for pollfd

§

impl Copy for posix_spawn_file_actions_t

§

impl Copy for posix_spawnattr_t

§

impl Copy for protoent

§

impl Copy for pthread_attr_t

§

impl Copy for pthread_barrier_t

§

impl Copy for pthread_barrierattr_t

§

impl Copy for pthread_cond_t

§

impl Copy for pthread_condattr_t

§

impl Copy for pthread_mutex_t

§

impl Copy for pthread_mutexattr_t

§

impl Copy for pthread_rwlock_t

§

impl Copy for pthread_rwlockattr_t

§

impl Copy for ptrace_peeksiginfo_args

§

impl Copy for ptrace_rseq_configuration

§

impl Copy for ptrace_syscall_info

§

impl Copy for regex_t

§

impl Copy for regmatch_t

§

impl Copy for rlimit

§

impl Copy for rlimit64

§

impl Copy for rtentry

§

impl Copy for rusage

§

impl Copy for sched_param

§

impl Copy for sctp_authinfo

§

impl Copy for sctp_initmsg

§

impl Copy for sctp_nxtinfo

§

impl Copy for sctp_prinfo

§

impl Copy for sctp_rcvinfo

§

impl Copy for sctp_sndinfo

§

impl Copy for sctp_sndrcvinfo

§

impl Copy for seccomp_data

§

impl Copy for seccomp_notif_sizes

§

impl Copy for sem_t

§

impl Copy for sembuf

§

impl Copy for semid_ds

§

impl Copy for seminfo

§

impl Copy for servent

§

impl Copy for shmid_ds

§

impl Copy for sigaction

§

impl Copy for sigevent

§

impl Copy for siginfo_t

§

impl Copy for signalfd_siginfo

§

impl Copy for sigset_t

§

impl Copy for sigval

§

impl Copy for sock_extended_err

§

impl Copy for sock_filter

§

impl Copy for sock_fprog

§

impl Copy for sock_txtime

§

impl Copy for sockaddr

§

impl Copy for sockaddr_alg

§

impl Copy for sockaddr_can

§

impl Copy for sockaddr_in

§

impl Copy for sockaddr_in6

§

impl Copy for sockaddr_ll

§

impl Copy for sockaddr_nl

§

impl Copy for sockaddr_storage

§

impl Copy for sockaddr_un

§

impl Copy for sockaddr_vm

§

impl Copy for spwd

§

impl Copy for stack_t

§

impl Copy for stat

§

impl Copy for stat64

§

impl Copy for statfs

§

impl Copy for statfs64

§

impl Copy for statvfs

§

impl Copy for statvfs64

§

impl Copy for statx

§

impl Copy for statx_timestamp

§

impl Copy for sysinfo

§

impl Copy for termios

§

impl Copy for termios2

§

impl Copy for timespec

§

impl Copy for timeval

§

impl Copy for timex

§

impl Copy for timezone

§

impl Copy for tm

§

impl Copy for tms

§

impl Copy for ucontext_t

§

impl Copy for ucred

§

impl Copy for uinput_abs_setup

§

impl Copy for uinput_ff_erase

§

impl Copy for uinput_ff_upload

§

impl Copy for uinput_setup

§

impl Copy for uinput_user_dev

§

impl Copy for user

§

impl Copy for user_fpregs_struct

§

impl Copy for user_regs_struct

§

impl Copy for utimbuf

§

impl Copy for utmpx

§

impl Copy for utsname

§

impl Copy for vec128_storage

§

impl Copy for vec256_storage

§

impl Copy for vec512_storage

§

impl Copy for winsize

source§

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

source§

impl<'a> Copy for Prefix<'a>

source§

impl<'a> Copy for Unexpected<'a>

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

1.10.0 · source§

impl<'a> Copy for Location<'a>

source§

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

source§

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

Implementors§

§

impl Copy for ErrorReplyReason

§

impl Copy for ExecutionError

§

impl Copy for ExtError

§

impl Copy for MemoryError

§

impl Copy for MessageError

§

impl Copy for ProgramRentError

§

impl Copy for ReplyCode

§

impl Copy for ReservationError

§

impl Copy for SignalCode

§

impl Copy for SimpleExecutionError

§

impl Copy for SimpleProgramCreationError

§

impl Copy for SuccessReplyReason

source§

impl Copy for AsciiChar

source§

impl Copy for gstd::prelude::cmp::Ordering

1.34.0 · source§

impl Copy for Infallible

1.28.0 · source§

impl Copy for gstd::prelude::fmt::Alignment

source§

impl Copy for Which

1.7.0 · source§

impl Copy for IpAddr

source§

impl Copy for Ipv6MulticastScope

source§

impl Copy for SocketAddr

source§

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

source§

impl Copy for SeekFrom

source§

impl Copy for ErrorKind

source§

impl Copy for Shutdown

source§

impl Copy for BacktraceStyle

1.12.0 · source§

impl Copy for RecvTimeoutError

source§

impl Copy for TryRecvError

source§

impl Copy for _Unwind_Action

source§

impl Copy for _Unwind_Reason_Code

source§

impl Copy for hex::error::FromHexError

source§

impl Copy for BernoulliError

source§

impl Copy for WeightedError

source§

impl Copy for FpCategory

source§

impl Copy for SearchStep

source§

impl Copy for bool

source§

impl Copy for char

source§

impl Copy for f32

source§

impl Copy for f64

source§

impl Copy for i8

source§

impl Copy for i16

source§

impl Copy for i32

source§

impl Copy for i64

source§

impl Copy for i128

source§

impl Copy for isize

source§

impl Copy for !

source§

impl Copy for u8

source§

impl Copy for u16

source§

impl Copy for u32

source§

impl Copy for u64

source§

impl Copy for u128

source§

impl Copy for usize

§

impl Copy for SyscallError

source§

impl Copy for gstd::msg::MessageHandle

source§

impl Copy for gstd::ActorId

source§

impl Copy for gstd::CodeId

§

impl Copy for GasMultiplier

source§

impl Copy for gstd::MessageId

§

impl Copy for Percent

source§

impl Copy for Reservation

source§

impl Copy for gstd::ReservationId

§

impl Copy for MetaType

source§

impl Copy for TypeId

1.34.0 · source§

impl Copy for TryFromSliceError

1.34.0 · source§

impl Copy for CharTryFromError

1.59.0 · source§

impl Copy for TryFromCharError

source§

impl Copy for gstd::prelude::fmt::Error

source§

impl Copy for alloc::alloc::Global

1.28.0 · source§

impl Copy for Layout

source§

impl Copy for core::alloc::AllocError

1.27.0 · source§

impl Copy for CpuidResult

1.27.0 · source§

impl Copy for __m128

source§

impl Copy for __m128bh

1.27.0 · source§

impl Copy for __m128d

1.27.0 · source§

impl Copy for __m128i

1.27.0 · source§

impl Copy for __m256

source§

impl Copy for __m256bh

1.27.0 · source§

impl Copy for __m256d

1.27.0 · source§

impl Copy for __m256i

1.74.0-nightly · source§

impl Copy for __m512

source§

impl Copy for __m512bh

1.74.0-nightly · source§

impl Copy for __m512d

1.74.0-nightly · source§

impl Copy for __m512i

source§

impl Copy for Ipv4Addr

source§

impl Copy for Ipv6Addr

source§

impl Copy for SocketAddrV4

source§

impl Copy for SocketAddrV6

1.28.0 · source§

impl Copy for System

source§

impl Copy for FileTimes

1.1.0 · source§

impl Copy for FileType

source§

impl Copy for Empty

source§

impl Copy for Sink

source§

impl Copy for UCred

1.61.0 · source§

impl Copy for ExitCode

source§

impl Copy for ExitStatus

source§

impl Copy for ExitStatusError

1.5.0 · source§

impl Copy for WaitTimeoutResult

source§

impl Copy for RecvError

1.26.0 · source§

impl Copy for AccessError

1.19.0 · source§

impl Copy for ThreadId

1.8.0 · source§

impl Copy for Instant

1.8.0 · source§

impl Copy for SystemTime

source§

impl Copy for getrandom::error::Error

source§

impl Copy for IgnoredAny

source§

impl Copy for Bernoulli

source§

impl Copy for Open01

source§

impl Copy for OpenClosed01

source§

impl Copy for Alphanumeric

source§

impl Copy for Standard

source§

impl Copy for UniformChar

source§

impl Copy for UniformDuration

source§

impl Copy for OsRng

1.33.0 · source§

impl Copy for PhantomPinned

source§

impl Copy for Assume

1.34.0 · source§

impl Copy for NonZeroI8

1.34.0 · source§

impl Copy for NonZeroI16

1.34.0 · source§

impl Copy for NonZeroI32

1.34.0 · source§

impl Copy for NonZeroI64

1.34.0 · source§

impl Copy for NonZeroI128

1.34.0 · source§

impl Copy for NonZeroIsize

1.28.0 · source§

impl Copy for NonZeroU8

1.28.0 · source§

impl Copy for NonZeroU16

1.28.0 · source§

impl Copy for NonZeroU32

1.28.0 · source§

impl Copy for NonZeroU64

1.28.0 · source§

impl Copy for NonZeroU128

1.28.0 · source§

impl Copy for NonZeroUsize

1.34.0 · source§

impl Copy for TryFromIntError

source§

impl Copy for RangeFull

source§

impl Copy for gstd::prelude::ptr::Alignment

source§

impl Copy for TimSortRun

source§

impl Copy for Utf8Error

1.36.0 · source§

impl Copy for RawWakerVTable

1.3.0 · source§

impl Copy for Duration

§

impl Copy for Aborted

§

impl Copy for ActorId

§

impl Copy for AllocError

§

impl Copy for Alphabet

§

impl Copy for BigEndian

§

impl Copy for Canceled

§

impl Copy for CodeId

§

impl Copy for Const

§

impl Copy for DIR

§

impl Copy for Dl_info

§

impl Copy for Elf32_Chdr

§

impl Copy for Elf32_Ehdr

§

impl Copy for Elf32_Phdr

§

impl Copy for Elf32_Shdr

§

impl Copy for Elf32_Sym

§

impl Copy for Elf64_Chdr

§

impl Copy for Elf64_Ehdr

§

impl Copy for Elf64_Phdr

§

impl Copy for Elf64_Shdr

§

impl Copy for Elf64_Sym

§

impl Copy for EnvVars

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for Error

§

impl Copy for FILE

§

impl Copy for FromHexError

§

impl Copy for FromStrRadixErrKind

§

impl Copy for Global

§

impl Copy for H128

§

impl Copy for H160

§

impl Copy for H256

§

impl Copy for H384

§

impl Copy for H512

§

impl Copy for H768

§

impl Copy for LittleEndian

§

impl Copy for Lsb0

§

impl Copy for MessageHandle

§

impl Copy for MessageId

§

impl Copy for MetaForm

§

impl Copy for Msb0

§

impl Copy for Mut

§

impl Copy for NoA1

§

impl Copy for NoA2

§

impl Copy for NoNI

§

impl Copy for NoS3

§

impl Copy for NoS4

§

impl Copy for NullPtrError

§

impl Copy for OptionBool

§

impl Copy for PollNext

§

impl Copy for PortableForm

§

impl Copy for Prefilter

§

impl Copy for ReservationId

§

impl Copy for U128

§

impl Copy for U256

§

impl Copy for U512

§

impl Copy for YesA1

§

impl Copy for YesA2

§

impl Copy for YesNI

§

impl Copy for YesS3

§

impl Copy for YesS4

§

impl Copy for __c_anonymous_ifr_ifru

§

impl Copy for __c_anonymous_ifru_map

§

impl Copy for __c_anonymous_ptrace_syscall_info_data

§

impl Copy for __c_anonymous_ptrace_syscall_info_entry

§

impl Copy for __c_anonymous_ptrace_syscall_info_exit

§

impl Copy for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Copy for __c_anonymous_sockaddr_can_can_addr

§

impl Copy for __c_anonymous_sockaddr_can_j1939

§

impl Copy for __c_anonymous_sockaddr_can_tp

§

impl Copy for __exit_status

§

impl Copy for __timeval

§

impl Copy for _libc_fpstate

§

impl Copy for _libc_fpxreg

§

impl Copy for _libc_xmmreg

§

impl Copy for addrinfo

§

impl Copy for af_alg_iv

§

impl Copy for aiocb

§

impl Copy for arpd_request

§

impl Copy for arphdr

§

impl Copy for arpreq

§

impl Copy for arpreq_old

§

impl Copy for can_filter

§

impl Copy for can_frame

§

impl Copy for canfd_frame

§

impl Copy for canxl_frame

§

impl Copy for clone_args

§

impl Copy for cmsghdr

§

impl Copy for cpu_set_t

§

impl Copy for dirent

§

impl Copy for dirent64

§

impl Copy for dl_phdr_info

§

impl Copy for dqblk

§

impl Copy for epoll_event

§

impl Copy for fanotify_event_metadata

§

impl Copy for fanotify_response

§

impl Copy for fd_set

§

impl Copy for ff_condition_effect

§

impl Copy for ff_constant_effect

§

impl Copy for ff_effect

§

impl Copy for ff_envelope

§

impl Copy for ff_periodic_effect

§

impl Copy for ff_ramp_effect

§

impl Copy for ff_replay

§

impl Copy for ff_rumble_effect

§

impl Copy for ff_trigger

§

impl Copy for file_clone_range

§

impl Copy for flock

§

impl Copy for flock64

§

impl Copy for fpos64_t

§

impl Copy for fpos_t

§

impl Copy for fsid_t

§

impl Copy for genlmsghdr

§

impl Copy for glob64_t

§

impl Copy for glob_t

§

impl Copy for group

§

impl Copy for hostent

§

impl Copy for hwtstamp_config

§

impl Copy for if_nameindex

§

impl Copy for ifaddrs

§

impl Copy for ifreq

§

impl Copy for in6_addr

§

impl Copy for in6_ifreq

§

impl Copy for in6_pktinfo

§

impl Copy for in6_rtmsg

§

impl Copy for in_addr

§

impl Copy for in_pktinfo

§

impl Copy for inotify_event

§

impl Copy for input_absinfo

§

impl Copy for input_event

§

impl Copy for input_id

§

impl Copy for input_keymap_entry

§

impl Copy for input_mask

§

impl Copy for iovec

§

impl Copy for ip_mreq

§

impl Copy for ip_mreq_source

§

impl Copy for ip_mreqn

§

impl Copy for ipc_perm

§

impl Copy for ipv6_mreq

§

impl Copy for itimerspec

§

impl Copy for itimerval

§

impl Copy for j1939_filter

§

impl Copy for lconv

§

impl Copy for linger

§

impl Copy for mallinfo

§

impl Copy for mallinfo2

§

impl Copy for max_align_t

§

impl Copy for mcontext_t

§

impl Copy for mmsghdr

§

impl Copy for mntent

§

impl Copy for mq_attr

§

impl Copy for msghdr

§

impl Copy for msginfo

§

impl Copy for msqid_ds

§

impl Copy for nl_mmap_hdr

§

impl Copy for nl_mmap_req

§

impl Copy for nl_pktinfo

§

impl Copy for nlattr

§

impl Copy for nlmsgerr

§

impl Copy for nlmsghdr

§

impl Copy for ntptimeval

§

impl Copy for open_how

§

impl Copy for option

§

impl Copy for packet_mreq

§

impl Copy for passwd

§

impl Copy for pollfd

§

impl Copy for posix_spawn_file_actions_t

§

impl Copy for posix_spawnattr_t

§

impl Copy for protoent

§

impl Copy for pthread_attr_t

§

impl Copy for pthread_barrier_t

§

impl Copy for pthread_barrierattr_t

§

impl Copy for pthread_cond_t

§

impl Copy for pthread_condattr_t

§

impl Copy for pthread_mutex_t

§

impl Copy for pthread_mutexattr_t

§

impl Copy for pthread_rwlock_t

§

impl Copy for pthread_rwlockattr_t

§

impl Copy for ptrace_peeksiginfo_args

§

impl Copy for ptrace_rseq_configuration

§

impl Copy for ptrace_syscall_info

§

impl Copy for regex_t

§

impl Copy for regmatch_t

§

impl Copy for rlimit

§

impl Copy for rlimit64

§

impl Copy for rtentry

§

impl Copy for rusage

§

impl Copy for sched_param

§

impl Copy for sctp_authinfo

§

impl Copy for sctp_initmsg

§

impl Copy for sctp_nxtinfo

§

impl Copy for sctp_prinfo

§

impl Copy for sctp_rcvinfo

§

impl Copy for sctp_sndinfo

§

impl Copy for sctp_sndrcvinfo

§

impl Copy for seccomp_data

§

impl Copy for seccomp_notif_sizes

§

impl Copy for sem_t

§

impl Copy for sembuf

§

impl Copy for semid_ds

§

impl Copy for seminfo

§

impl Copy for servent

§

impl Copy for shmid_ds

§

impl Copy for sigaction

§

impl Copy for sigevent

§

impl Copy for siginfo_t

§

impl Copy for signalfd_siginfo

§

impl Copy for sigset_t

§

impl Copy for sigval

§

impl Copy for sock_extended_err

§

impl Copy for sock_filter

§

impl Copy for sock_fprog

§

impl Copy for sock_txtime

§

impl Copy for sockaddr

§

impl Copy for sockaddr_alg

§

impl Copy for sockaddr_can

§

impl Copy for sockaddr_in

§

impl Copy for sockaddr_in6

§

impl Copy for sockaddr_ll

§

impl Copy for sockaddr_nl

§

impl Copy for sockaddr_storage

§

impl Copy for sockaddr_un

§

impl Copy for sockaddr_vm

§

impl Copy for spwd

§

impl Copy for stack_t

§

impl Copy for stat

§

impl Copy for stat64

§

impl Copy for statfs

§

impl Copy for statfs64

§

impl Copy for statvfs

§

impl Copy for statvfs64

§

impl Copy for statx

§

impl Copy for statx_timestamp

§

impl Copy for sysinfo

§

impl Copy for termios

§

impl Copy for termios2

§

impl Copy for timespec

§

impl Copy for timeval

§

impl Copy for timex

§

impl Copy for timezone

§

impl Copy for tm

§

impl Copy for tms

§

impl Copy for ucontext_t

§

impl Copy for ucred

§

impl Copy for uinput_abs_setup

§

impl Copy for uinput_ff_erase

§

impl Copy for uinput_ff_upload

§

impl Copy for uinput_setup

§

impl Copy for uinput_user_dev

§

impl Copy for user

§

impl Copy for user_fpregs_struct

§

impl Copy for user_regs_struct

§

impl Copy for utimbuf

§

impl Copy for utmpx

§

impl Copy for utsname

§

impl Copy for vec128_storage

§

impl Copy for vec256_storage

§

impl Copy for vec512_storage

§

impl Copy for winsize

source§

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

source§

impl<'a> Copy for Prefix<'a>

source§

impl<'a> Copy for Unexpected<'a>

source§

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

1.36.0 · source§

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

1.28.0 · source§

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

source§

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

1.10.0 · source§

impl<'a> Copy for Location<'a>

source§

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

source§

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

§

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

§

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

§

impl<'a, T, O> Copy for IterOnes<'a, T, O>where diff --git a/pr-3467/gstd/prelude/trait.Default.html b/pr-3467/gstd/prelude/trait.Default.html index 3ec3356e056..7902f6b2ee6 100644 --- a/pr-3467/gstd/prelude/trait.Default.html +++ b/pr-3467/gstd/prelude/trait.Default.html @@ -81,7 +81,7 @@
Examples
impl Default for Kind { fn default() -> Self { Kind::A } }

-

Implementors§

source§

impl Default for &str

1.10.0 · source§

impl Default for &CStr

1.9.0 · source§

impl Default for &OsStr

1.28.0 · source§

impl Default for &mut str

§

impl Default for ErrorReplyReason

§

impl Default for ReplyCode

§

impl Default for SignalCode

§

impl Default for SimpleExecutionError

§

impl Default for SimpleProgramCreationError

§

impl Default for SuccessReplyReason

source§

impl Default for bool

source§

impl Default for char

source§

impl Default for f32

source§

impl Default for f64

source§

impl Default for i8

source§

impl Default for i16

source§

impl Default for i32

source§

impl Default for i64

source§

impl Default for i128

source§

impl Default for isize

source§

impl Default for u8

source§

impl Default for u16

source§

impl Default for u32

source§

impl Default for u64

source§

impl Default for u128

source§

impl Default for ()

source§

impl Default for usize

source§

impl Default for gcore::general::ActorId

source§

impl Default for gcore::general::CodeId

source§

impl Default for gcore::general::MessageId

source§

impl Default for ReservationId

source§

impl Default for gstd::ActorId

source§

impl Default for gstd::CodeId

source§

impl Default for gstd::MessageId

source§

impl Default for Reservations

1.10.0 · source§

impl Default for CString

source§

impl Default for Error

source§

impl Default for SipHasher

source§

impl Default for alloc::alloc::Global

source§

impl Default for AtomicBool

1.34.0 · source§

impl Default for AtomicI8

1.34.0 · source§

impl Default for AtomicI16

1.34.0 · source§

impl Default for AtomicI32

1.34.0 · source§

impl Default for AtomicI64

source§

impl Default for AtomicIsize

1.34.0 · source§

impl Default for AtomicU8

1.34.0 · source§

impl Default for AtomicU16

1.34.0 · source§

impl Default for AtomicU32

1.34.0 · source§

impl Default for AtomicU64

source§

impl Default for AtomicUsize

1.28.0 · source§

impl Default for System

1.13.0 · source§

impl Default for DefaultHasher

1.7.0 · source§

impl Default for std::collections::hash::map::RandomState

1.9.0 · source§

impl Default for OsString

source§

impl Default for FileTimes

source§

impl Default for std::io::util::Empty

source§

impl Default for Sink

1.17.0 · source§

impl Default for PathBuf

1.73.0 · source§

impl Default for ExitStatus

The default value is one which indicates successful completion.

+

Implementors§

source§

impl Default for &str

1.10.0 · source§

impl Default for &CStr

1.9.0 · source§

impl Default for &OsStr

1.28.0 · source§

impl Default for &mut str

§

impl Default for ErrorReplyReason

§

impl Default for ReplyCode

§

impl Default for SignalCode

§

impl Default for SimpleExecutionError

§

impl Default for SimpleProgramCreationError

§

impl Default for SuccessReplyReason

source§

impl Default for bool

source§

impl Default for char

source§

impl Default for f32

source§

impl Default for f64

source§

impl Default for i8

source§

impl Default for i16

source§

impl Default for i32

source§

impl Default for i64

source§

impl Default for i128

source§

impl Default for isize

source§

impl Default for u8

source§

impl Default for u16

source§

impl Default for u32

source§

impl Default for u64

source§

impl Default for u128

source§

impl Default for ()

source§

impl Default for usize

source§

impl Default for gstd::ActorId

source§

impl Default for gstd::CodeId

source§

impl Default for gstd::MessageId

source§

impl Default for Reservations

1.10.0 · source§

impl Default for CString

source§

impl Default for Error

source§

impl Default for SipHasher

source§

impl Default for alloc::alloc::Global

source§

impl Default for AtomicBool

1.34.0 · source§

impl Default for AtomicI8

1.34.0 · source§

impl Default for AtomicI16

1.34.0 · source§

impl Default for AtomicI32

1.34.0 · source§

impl Default for AtomicI64

source§

impl Default for AtomicIsize

1.34.0 · source§

impl Default for AtomicU8

1.34.0 · source§

impl Default for AtomicU16

1.34.0 · source§

impl Default for AtomicU32

1.34.0 · source§

impl Default for AtomicU64

source§

impl Default for AtomicUsize

1.28.0 · source§

impl Default for System

1.13.0 · source§

impl Default for DefaultHasher

1.7.0 · source§

impl Default for std::collections::hash::map::RandomState

1.9.0 · source§

impl Default for OsString

source§

impl Default for FileTimes

source§

impl Default for std::io::util::Empty

source§

impl Default for Sink

1.17.0 · source§

impl Default for PathBuf

1.73.0 · source§

impl Default for ExitStatus

The default value is one which indicates successful completion.

1.10.0 · source§

impl Default for Condvar

source§

impl Default for IgnoredAny

source§

impl Default for ThreadRng

source§

impl Default for OsRng

1.33.0 · source§

impl Default for PhantomPinned

source§

impl Default for RangeFull

1.17.0 · source§

impl Default for gstd::prelude::Box<str, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<CStr, Global>

1.17.0 · source§

impl Default for gstd::prelude::Box<OsStr, Global>

source§

impl Default for String

1.3.0 · source§

impl Default for Duration

§

impl Default for AHasher

Provides a default Hasher with fixed keys. This is typically used in conjunction with BuildHasherDefault to create [AHasher]s in order to hash the keys of the map.

@@ -95,14 +95,14 @@

Example

let mut map: HashMap<i32, i32, BuildHasherDefault<AHasher>> = HashMap::default(); map.insert(12, 34);
-
§

impl Default for AtomicWaker

§

impl Default for BigEndian

§

impl Default for BlockNumberWithHash

§

impl Default for Bytes

§

impl Default for BytesMut

§

impl Default for Const

§

impl Default for ErrorBytes

§

impl Default for ErrorWithBlockNumberAndValue

§

impl Default for ErrorWithGas

§

impl Default for ErrorWithHandle

§

impl Default for ErrorWithHash

§

impl Default for ErrorWithReplyCode

§

impl Default for ErrorWithSignalCode

§

impl Default for ErrorWithTwoHashes

§

impl Default for FinderBuilder

§

impl Default for Global

§

impl Default for H128

§

impl Default for H160

§

impl Default for H256

§

impl Default for H384

§

impl Default for H512

§

impl Default for H768

§

impl Default for HashWithValue

§

impl Default for LittleEndian

§

impl Default for LocalPool

§

impl Default for Lsb0

§

impl Default for Msb0

§

impl Default for Mut

§

impl Default for NullPtrError

§

impl Default for OnceBool

§

impl Default for OnceNonZeroUsize

§

impl Default for PollNext

§

impl Default for PortableRegistryBuilder

§

impl Default for Prefilter

§

impl Default for RandomState

Creates an instance of RandomState using keys obtained from the random number generator. +

§

impl Default for ActorId

§

impl Default for AtomicWaker

§

impl Default for BigEndian

§

impl Default for BlockNumberWithHash

§

impl Default for Bytes

§

impl Default for BytesMut

§

impl Default for CodeId

§

impl Default for Const

§

impl Default for ErrorBytes

§

impl Default for ErrorWithBlockNumberAndValue

§

impl Default for ErrorWithGas

§

impl Default for ErrorWithHandle

§

impl Default for ErrorWithHash

§

impl Default for ErrorWithReplyCode

§

impl Default for ErrorWithSignalCode

§

impl Default for ErrorWithTwoHashes

§

impl Default for FinderBuilder

§

impl Default for Global

§

impl Default for H128

§

impl Default for H160

§

impl Default for H256

§

impl Default for H384

§

impl Default for H512

§

impl Default for H768

§

impl Default for HashWithValue

§

impl Default for LittleEndian

§

impl Default for LocalPool

§

impl Default for Lsb0

§

impl Default for MessageId

§

impl Default for Msb0

§

impl Default for Mut

§

impl Default for NullPtrError

§

impl Default for OnceBool

§

impl Default for OnceNonZeroUsize

§

impl Default for PollNext

§

impl Default for PortableRegistryBuilder

§

impl Default for Prefilter

§

impl Default for RandomState

Creates an instance of RandomState using keys obtained from the random number generator. Each instance created in this way will have a unique set of keys. (But the resulting instance can be used to create many hashers each or which will have the same keys.)

This is the same as [RandomState::new()]

NOTE: For safety this trait impl is only available available if either of the flags runtime-rng (on by default) or compile-time-rng are enabled. This is to prevent weakly keyed maps from being accidentally created. Instead one of constructors for [RandomState] must be used.

-
§

impl Default for Registry

§

impl Default for ThreadPoolBuilder

§

impl Default for TwoHashes

§

impl Default for TwoHashesWithValue

§

impl Default for U128

§

impl Default for U256

§

impl Default for U512

§

impl Default for vec128_storage

§

impl Default for vec256_storage

§

impl Default for vec512_storage

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::Iter<'a, K, V>where +
§

impl Default for Registry

§

impl Default for ReservationId

§

impl Default for ThreadPoolBuilder

§

impl Default for TwoHashes

§

impl Default for TwoHashesWithValue

§

impl Default for U128

§

impl Default for U256

§

impl Default for U512

§

impl Default for vec128_storage

§

impl Default for vec256_storage

§

impl Default for vec512_storage

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::Iter<'a, K, V>where K: 'a, V: 'a,

1.70.0 · source§

impl<'a, K, V> Default for gstd::prelude::collections::btree_map::IterMut<'a, K, V>where K: 'a, diff --git a/pr-3467/gstd/prelude/trait.Eq.html b/pr-3467/gstd/prelude/trait.Eq.html index e68c9ae6f2a..20ea875ad06 100644 --- a/pr-3467/gstd/prelude/trait.Eq.html +++ b/pr-3467/gstd/prelude/trait.Eq.html @@ -33,7 +33,7 @@

How can I impl } } impl Eq for Book {} -

Implementors§

source§

impl Eq for gcore::errors::Error

source§

impl Eq for gstd::errors::Error

§

impl Eq for ErrorReplyReason

§

impl Eq for ExecutionError

§

impl Eq for ExtError

§

impl Eq for MemoryError

§

impl Eq for MessageError

§

impl Eq for ProgramRentError

§

impl Eq for ReplyCode

§

impl Eq for ReservationError

§

impl Eq for SignalCode

§

impl Eq for SimpleExecutionError

§

impl Eq for SimpleProgramCreationError

§

impl Eq for SuccessReplyReason

source§

impl Eq for AsciiChar

source§

impl Eq for gstd::prelude::cmp::Ordering

source§

impl Eq for TryReserveErrorKind

§

impl Eq for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Eq for Infallible

1.28.0 · source§

impl Eq for gstd::prelude::fmt::Alignment

source§

impl Eq for Which

1.7.0 · source§

impl Eq for IpAddr

source§

impl Eq for Ipv6MulticastScope

source§

impl Eq for SocketAddr

source§

impl Eq for core::sync::atomic::Ordering

1.65.0 · source§

impl Eq for BacktraceStatus

source§

impl Eq for VarError

source§

impl Eq for SeekFrom

source§

impl Eq for ErrorKind

source§

impl Eq for Shutdown

source§

impl Eq for BacktraceStyle

1.12.0 · source§

impl Eq for RecvTimeoutError

source§

impl Eq for TryRecvError

source§

impl Eq for BernoulliError

source§

impl Eq for WeightedError

source§

impl Eq for FpCategory

1.55.0 · source§

impl Eq for IntErrorKind

source§

impl Eq for SearchStep

source§

impl Eq for bool

source§

impl Eq for char

source§

impl Eq for i8

source§

impl Eq for i16

source§

impl Eq for i32

source§

impl Eq for i64

source§

impl Eq for i128

source§

impl Eq for isize

source§

impl Eq for !

source§

impl Eq for str

source§

impl Eq for u8

source§

impl Eq for u16

source§

impl Eq for u32

source§

impl Eq for u64

source§

impl Eq for u128

source§

impl Eq for ()

source§

impl Eq for usize

source§

impl Eq for gcore::general::ActorId

source§

impl Eq for gcore::general::CodeId

source§

impl Eq for gcore::general::MessageHandle

source§

impl Eq for gcore::general::MessageId

source§

impl Eq for gcore::general::ReservationId

source§

impl Eq for SyscallError

source§

impl Eq for gstd::msg::MessageHandle

source§

impl Eq for gstd::ActorId

source§

impl Eq for gstd::CodeId

source§

impl Eq for gstd::MessageId

§

impl Eq for Percent

source§

impl Eq for gstd::ReservationId

§

impl Eq for MetaType

source§

impl Eq for TypeId

1.34.0 · source§

impl Eq for CharTryFromError

1.9.0 · source§

impl Eq for DecodeUtf16Error

1.20.0 · source§

impl Eq for ParseCharError

1.59.0 · source§

impl Eq for TryFromCharError

1.57.0 · source§

impl Eq for gstd::prelude::collections::TryReserveError

source§

impl Eq for CStr

1.64.0 · source§

impl Eq for CString

1.69.0 · source§

impl Eq for FromBytesUntilNulError

1.64.0 · source§

impl Eq for FromBytesWithNulError

1.64.0 · source§

impl Eq for FromVecWithNulError

1.64.0 · source§

impl Eq for IntoStringError

1.64.0 · source§

impl Eq for NulError

source§

impl Eq for gstd::prelude::fmt::Error

1.28.0 · source§

impl Eq for Layout

1.50.0 · source§

impl Eq for LayoutError

source§

impl Eq for core::alloc::AllocError

1.27.0 · source§

impl Eq for CpuidResult

source§

impl Eq for Ipv4Addr

source§

impl Eq for Ipv6Addr

source§

impl Eq for AddrParseError

source§

impl Eq for SocketAddrV4

source§

impl Eq for SocketAddrV6

source§

impl Eq for OsStr

source§

impl Eq for OsString

1.1.0 · source§

impl Eq for FileType

source§

impl Eq for Permissions

source§

impl Eq for UCred

source§

impl Eq for Components<'_>

source§

impl Eq for std::path::Path

source§

impl Eq for PathBuf

1.7.0 · source§

impl Eq for StripPrefixError

source§

impl Eq for ExitStatus

source§

impl Eq for ExitStatusError

source§

impl Eq for Output

1.5.0 · source§

impl Eq for WaitTimeoutResult

source§

impl Eq for RecvError

1.26.0 · source§

impl Eq for AccessError

1.19.0 · source§

impl Eq for ThreadId

1.8.0 · source§

impl Eq for Instant

1.8.0 · source§

impl Eq for SystemTime

source§

impl Eq for getrandom::error::Error

source§

impl Eq for StepRng

source§

impl Eq for SmallRng

source§

impl Eq for StdRng

source§

impl Eq for ChaCha8Core

source§

impl Eq for ChaCha8Rng

source§

impl Eq for ChaCha12Core

source§

impl Eq for ChaCha12Rng

source§

impl Eq for ChaCha20Core

source§

impl Eq for ChaCha20Rng

1.33.0 · source§

impl Eq for PhantomPinned

source§

impl Eq for Assume

1.34.0 · source§

impl Eq for NonZeroI8

1.34.0 · source§

impl Eq for NonZeroI16

1.34.0 · source§

impl Eq for NonZeroI32

1.34.0 · source§

impl Eq for NonZeroI64

1.34.0 · source§

impl Eq for NonZeroI128

1.34.0 · source§

impl Eq for NonZeroIsize

1.28.0 · source§

impl Eq for NonZeroU8

1.28.0 · source§

impl Eq for NonZeroU16

1.28.0 · source§

impl Eq for NonZeroU32

1.28.0 · source§

impl Eq for NonZeroU64

1.28.0 · source§

impl Eq for NonZeroU128

1.28.0 · source§

impl Eq for NonZeroUsize

source§

impl Eq for ParseFloatError

source§

impl Eq for ParseIntError

1.34.0 · source§

impl Eq for TryFromIntError

source§

impl Eq for RangeFull

source§

impl Eq for gstd::prelude::ptr::Alignment

source§

impl Eq for ParseBoolError

source§

impl Eq for Utf8Error

source§

impl Eq for FromUtf8Error

source§

impl Eq for String

1.3.0 · source§

impl Eq for Duration

1.66.0 · source§

impl Eq for TryFromFloatSecsError

§

impl Eq for Aborted

§

impl Eq for AllocError

§

impl Eq for BigEndian

§

impl Eq for Bytes

§

impl Eq for BytesMut

§

impl Eq for Canceled

§

impl Eq for Const

§

impl Eq for Dl_info

§

impl Eq for Elf32_Chdr

§

impl Eq for Elf32_Ehdr

§

impl Eq for Elf32_Phdr

§

impl Eq for Elf32_Shdr

§

impl Eq for Elf32_Sym

§

impl Eq for Elf64_Chdr

§

impl Eq for Elf64_Ehdr

§

impl Eq for Elf64_Phdr

§

impl Eq for Elf64_Shdr

§

impl Eq for Elf64_Sym

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for FromStrRadixErrKind

§

impl Eq for H128

§

impl Eq for H160

§

impl Eq for H256

§

impl Eq for H384

§

impl Eq for H512

§

impl Eq for H768

§

impl Eq for LittleEndian

§

impl Eq for Lsb0

§

impl Eq for MetaForm

§

impl Eq for Msb0

§

impl Eq for Mut

§

impl Eq for NullPtrError

§

impl Eq for OptionBool

§

impl Eq for PathError

§

impl Eq for PollNext

§

impl Eq for PortableForm

§

impl Eq for PortableRegistry

§

impl Eq for PortableType

§

impl Eq for Registry

§

impl Eq for SendError

§

impl Eq for TypeDefPrimitive

§

impl Eq for U128

§

impl Eq for U256

§

impl Eq for U512

§

impl Eq for __c_anonymous_ifru_map

§

impl Eq for __c_anonymous_ptrace_syscall_info_data

§

impl Eq for __c_anonymous_ptrace_syscall_info_entry

§

impl Eq for __c_anonymous_ptrace_syscall_info_exit

§

impl Eq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Eq for __c_anonymous_sockaddr_can_j1939

§

impl Eq for __c_anonymous_sockaddr_can_tp

§

impl Eq for __exit_status

§

impl Eq for __timeval

§

impl Eq for _libc_fpstate

§

impl Eq for _libc_fpxreg

§

impl Eq for _libc_xmmreg

§

impl Eq for addrinfo

§

impl Eq for af_alg_iv

§

impl Eq for aiocb

§

impl Eq for arpd_request

§

impl Eq for arphdr

§

impl Eq for arpreq

§

impl Eq for arpreq_old

§

impl Eq for can_filter

§

impl Eq for clone_args

§

impl Eq for cmsghdr

§

impl Eq for cpu_set_t

§

impl Eq for dirent

§

impl Eq for dirent64

§

impl Eq for dl_phdr_info

§

impl Eq for dqblk

§

impl Eq for epoll_event

§

impl Eq for fanotify_event_metadata

§

impl Eq for fanotify_response

§

impl Eq for fd_set

§

impl Eq for ff_condition_effect

§

impl Eq for ff_constant_effect

§

impl Eq for ff_effect

§

impl Eq for ff_envelope

§

impl Eq for ff_periodic_effect

§

impl Eq for ff_ramp_effect

§

impl Eq for ff_replay

§

impl Eq for ff_rumble_effect

§

impl Eq for ff_trigger

§

impl Eq for file_clone_range

§

impl Eq for flock

§

impl Eq for flock64

§

impl Eq for fsid_t

§

impl Eq for genlmsghdr

§

impl Eq for glob64_t

§

impl Eq for glob_t

§

impl Eq for group

§

impl Eq for hostent

§

impl Eq for hwtstamp_config

§

impl Eq for if_nameindex

§

impl Eq for ifaddrs

§

impl Eq for in6_addr

§

impl Eq for in6_ifreq

§

impl Eq for in6_pktinfo

§

impl Eq for in6_rtmsg

§

impl Eq for in_addr

§

impl Eq for in_pktinfo

§

impl Eq for inotify_event

§

impl Eq for input_absinfo

§

impl Eq for input_event

§

impl Eq for input_id

§

impl Eq for input_keymap_entry

§

impl Eq for input_mask

§

impl Eq for iovec

§

impl Eq for ip_mreq

§

impl Eq for ip_mreq_source

§

impl Eq for ip_mreqn

§

impl Eq for ipc_perm

§

impl Eq for ipv6_mreq

§

impl Eq for itimerspec

§

impl Eq for itimerval

§

impl Eq for j1939_filter

§

impl Eq for lconv

§

impl Eq for linger

§

impl Eq for mallinfo

§

impl Eq for mallinfo2

§

impl Eq for mcontext_t

§

impl Eq for mmsghdr

§

impl Eq for mntent

§

impl Eq for mq_attr

§

impl Eq for msghdr

§

impl Eq for msginfo

§

impl Eq for msqid_ds

§

impl Eq for nl_mmap_hdr

§

impl Eq for nl_mmap_req

§

impl Eq for nl_pktinfo

§

impl Eq for nlattr

§

impl Eq for nlmsgerr

§

impl Eq for nlmsghdr

§

impl Eq for ntptimeval

§

impl Eq for open_how

§

impl Eq for option

§

impl Eq for packet_mreq

§

impl Eq for passwd

§

impl Eq for pollfd

§

impl Eq for posix_spawn_file_actions_t

§

impl Eq for posix_spawnattr_t

§

impl Eq for protoent

§

impl Eq for pthread_attr_t

§

impl Eq for pthread_barrier_t

§

impl Eq for pthread_barrierattr_t

§

impl Eq for pthread_cond_t

§

impl Eq for pthread_condattr_t

§

impl Eq for pthread_mutex_t

§

impl Eq for pthread_mutexattr_t

§

impl Eq for pthread_rwlock_t

§

impl Eq for pthread_rwlockattr_t

§

impl Eq for ptrace_peeksiginfo_args

§

impl Eq for ptrace_rseq_configuration

§

impl Eq for ptrace_syscall_info

§

impl Eq for regex_t

§

impl Eq for regmatch_t

§

impl Eq for rlimit

§

impl Eq for rlimit64

§

impl Eq for rtentry

§

impl Eq for rusage

§

impl Eq for sched_param

§

impl Eq for sctp_authinfo

§

impl Eq for sctp_initmsg

§

impl Eq for sctp_nxtinfo

§

impl Eq for sctp_prinfo

§

impl Eq for sctp_rcvinfo

§

impl Eq for sctp_sndinfo

§

impl Eq for sctp_sndrcvinfo

§

impl Eq for seccomp_data

§

impl Eq for seccomp_notif_sizes

§

impl Eq for sem_t

§

impl Eq for sembuf

§

impl Eq for semid_ds

§

impl Eq for seminfo

§

impl Eq for servent

§

impl Eq for shmid_ds

§

impl Eq for sigaction

§

impl Eq for sigevent

§

impl Eq for siginfo_t

§

impl Eq for signalfd_siginfo

§

impl Eq for sigset_t

§

impl Eq for sigval

§

impl Eq for sock_extended_err

§

impl Eq for sock_filter

§

impl Eq for sock_fprog

§

impl Eq for sockaddr

§

impl Eq for sockaddr_alg

§

impl Eq for sockaddr_in

§

impl Eq for sockaddr_in6

§

impl Eq for sockaddr_ll

§

impl Eq for sockaddr_nl

§

impl Eq for sockaddr_storage

§

impl Eq for sockaddr_un

§

impl Eq for sockaddr_vm

§

impl Eq for spwd

§

impl Eq for stack_t

§

impl Eq for stat

§

impl Eq for stat64

§

impl Eq for statfs

§

impl Eq for statfs64

§

impl Eq for statvfs

§

impl Eq for statvfs64

§

impl Eq for statx

§

impl Eq for statx_timestamp

§

impl Eq for sysinfo

§

impl Eq for termios

§

impl Eq for termios2

§

impl Eq for timespec

§

impl Eq for timeval

§

impl Eq for timex

§

impl Eq for tm

§

impl Eq for tms

§

impl Eq for ucontext_t

§

impl Eq for ucred

§

impl Eq for uinput_abs_setup

§

impl Eq for uinput_ff_erase

§

impl Eq for uinput_ff_upload

§

impl Eq for uinput_setup

§

impl Eq for uinput_user_dev

§

impl Eq for user

§

impl Eq for user_fpregs_struct

§

impl Eq for user_regs_struct

§

impl Eq for utimbuf

§

impl Eq for utmpx

§

impl Eq for utsname

§

impl Eq for vec128_storage

§

impl Eq for vec256_storage

§

impl Eq for vec512_storage

§

impl Eq for winsize

source§

impl<'a> Eq for Component<'a>

source§

impl<'a> Eq for Prefix<'a>

source§

impl<'a> Eq for PrefixComponent<'a>

1.10.0 · source§

impl<'a> Eq for Location<'a>

source§

impl<'a> Eq for Utf8Chunk<'a>

§

impl<'a, T> Eq for CompactRef<'a, T>where +

Implementors§

source§

impl Eq for gstd::errors::Error

§

impl Eq for ErrorReplyReason

§

impl Eq for ExecutionError

§

impl Eq for ExtError

§

impl Eq for MemoryError

§

impl Eq for MessageError

§

impl Eq for ProgramRentError

§

impl Eq for ReplyCode

§

impl Eq for ReservationError

§

impl Eq for SignalCode

§

impl Eq for SimpleExecutionError

§

impl Eq for SimpleProgramCreationError

§

impl Eq for SuccessReplyReason

source§

impl Eq for AsciiChar

source§

impl Eq for gstd::prelude::cmp::Ordering

source§

impl Eq for TryReserveErrorKind

§

impl Eq for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl Eq for Infallible

1.28.0 · source§

impl Eq for gstd::prelude::fmt::Alignment

source§

impl Eq for Which

1.7.0 · source§

impl Eq for IpAddr

source§

impl Eq for Ipv6MulticastScope

source§

impl Eq for SocketAddr

source§

impl Eq for core::sync::atomic::Ordering

1.65.0 · source§

impl Eq for BacktraceStatus

source§

impl Eq for VarError

source§

impl Eq for SeekFrom

source§

impl Eq for ErrorKind

source§

impl Eq for Shutdown

source§

impl Eq for BacktraceStyle

1.12.0 · source§

impl Eq for RecvTimeoutError

source§

impl Eq for TryRecvError

source§

impl Eq for BernoulliError

source§

impl Eq for WeightedError

source§

impl Eq for FpCategory

1.55.0 · source§

impl Eq for IntErrorKind

source§

impl Eq for SearchStep

source§

impl Eq for bool

source§

impl Eq for char

source§

impl Eq for i8

source§

impl Eq for i16

source§

impl Eq for i32

source§

impl Eq for i64

source§

impl Eq for i128

source§

impl Eq for isize

source§

impl Eq for !

source§

impl Eq for str

source§

impl Eq for u8

source§

impl Eq for u16

source§

impl Eq for u32

source§

impl Eq for u64

source§

impl Eq for u128

source§

impl Eq for ()

source§

impl Eq for usize

§

impl Eq for SyscallError

source§

impl Eq for gstd::msg::MessageHandle

source§

impl Eq for gstd::ActorId

source§

impl Eq for gstd::CodeId

source§

impl Eq for gstd::MessageId

§

impl Eq for Percent

source§

impl Eq for gstd::ReservationId

§

impl Eq for MetaType

source§

impl Eq for TypeId

1.34.0 · source§

impl Eq for CharTryFromError

1.9.0 · source§

impl Eq for DecodeUtf16Error

1.20.0 · source§

impl Eq for ParseCharError

1.59.0 · source§

impl Eq for TryFromCharError

1.57.0 · source§

impl Eq for gstd::prelude::collections::TryReserveError

source§

impl Eq for CStr

1.64.0 · source§

impl Eq for CString

1.69.0 · source§

impl Eq for FromBytesUntilNulError

1.64.0 · source§

impl Eq for FromBytesWithNulError

1.64.0 · source§

impl Eq for FromVecWithNulError

1.64.0 · source§

impl Eq for IntoStringError

1.64.0 · source§

impl Eq for NulError

source§

impl Eq for gstd::prelude::fmt::Error

1.28.0 · source§

impl Eq for Layout

1.50.0 · source§

impl Eq for LayoutError

source§

impl Eq for core::alloc::AllocError

1.27.0 · source§

impl Eq for CpuidResult

source§

impl Eq for Ipv4Addr

source§

impl Eq for Ipv6Addr

source§

impl Eq for AddrParseError

source§

impl Eq for SocketAddrV4

source§

impl Eq for SocketAddrV6

source§

impl Eq for OsStr

source§

impl Eq for OsString

1.1.0 · source§

impl Eq for FileType

source§

impl Eq for Permissions

source§

impl Eq for UCred

source§

impl Eq for Components<'_>

source§

impl Eq for std::path::Path

source§

impl Eq for PathBuf

1.7.0 · source§

impl Eq for StripPrefixError

source§

impl Eq for ExitStatus

source§

impl Eq for ExitStatusError

source§

impl Eq for Output

1.5.0 · source§

impl Eq for WaitTimeoutResult

source§

impl Eq for RecvError

1.26.0 · source§

impl Eq for AccessError

1.19.0 · source§

impl Eq for ThreadId

1.8.0 · source§

impl Eq for Instant

1.8.0 · source§

impl Eq for SystemTime

source§

impl Eq for getrandom::error::Error

source§

impl Eq for StepRng

source§

impl Eq for SmallRng

source§

impl Eq for StdRng

source§

impl Eq for ChaCha8Core

source§

impl Eq for ChaCha8Rng

source§

impl Eq for ChaCha12Core

source§

impl Eq for ChaCha12Rng

source§

impl Eq for ChaCha20Core

source§

impl Eq for ChaCha20Rng

1.33.0 · source§

impl Eq for PhantomPinned

source§

impl Eq for Assume

1.34.0 · source§

impl Eq for NonZeroI8

1.34.0 · source§

impl Eq for NonZeroI16

1.34.0 · source§

impl Eq for NonZeroI32

1.34.0 · source§

impl Eq for NonZeroI64

1.34.0 · source§

impl Eq for NonZeroI128

1.34.0 · source§

impl Eq for NonZeroIsize

1.28.0 · source§

impl Eq for NonZeroU8

1.28.0 · source§

impl Eq for NonZeroU16

1.28.0 · source§

impl Eq for NonZeroU32

1.28.0 · source§

impl Eq for NonZeroU64

1.28.0 · source§

impl Eq for NonZeroU128

1.28.0 · source§

impl Eq for NonZeroUsize

source§

impl Eq for ParseFloatError

source§

impl Eq for ParseIntError

1.34.0 · source§

impl Eq for TryFromIntError

source§

impl Eq for RangeFull

source§

impl Eq for gstd::prelude::ptr::Alignment

source§

impl Eq for ParseBoolError

source§

impl Eq for Utf8Error

source§

impl Eq for FromUtf8Error

source§

impl Eq for String

1.3.0 · source§

impl Eq for Duration

1.66.0 · source§

impl Eq for TryFromFloatSecsError

§

impl Eq for Aborted

§

impl Eq for ActorId

§

impl Eq for AllocError

§

impl Eq for BigEndian

§

impl Eq for Bytes

§

impl Eq for BytesMut

§

impl Eq for Canceled

§

impl Eq for CodeId

§

impl Eq for Const

§

impl Eq for Dl_info

§

impl Eq for Elf32_Chdr

§

impl Eq for Elf32_Ehdr

§

impl Eq for Elf32_Phdr

§

impl Eq for Elf32_Shdr

§

impl Eq for Elf32_Sym

§

impl Eq for Elf64_Chdr

§

impl Eq for Elf64_Ehdr

§

impl Eq for Elf64_Phdr

§

impl Eq for Elf64_Shdr

§

impl Eq for Elf64_Sym

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for Error

§

impl Eq for FromStrRadixErrKind

§

impl Eq for H128

§

impl Eq for H160

§

impl Eq for H256

§

impl Eq for H384

§

impl Eq for H512

§

impl Eq for H768

§

impl Eq for LittleEndian

§

impl Eq for Lsb0

§

impl Eq for MessageHandle

§

impl Eq for MessageId

§

impl Eq for MetaForm

§

impl Eq for Msb0

§

impl Eq for Mut

§

impl Eq for NullPtrError

§

impl Eq for OptionBool

§

impl Eq for PathError

§

impl Eq for PollNext

§

impl Eq for PortableForm

§

impl Eq for PortableRegistry

§

impl Eq for PortableType

§

impl Eq for Registry

§

impl Eq for ReservationId

§

impl Eq for SendError

§

impl Eq for TypeDefPrimitive

§

impl Eq for U128

§

impl Eq for U256

§

impl Eq for U512

§

impl Eq for __c_anonymous_ifru_map

§

impl Eq for __c_anonymous_ptrace_syscall_info_data

§

impl Eq for __c_anonymous_ptrace_syscall_info_entry

§

impl Eq for __c_anonymous_ptrace_syscall_info_exit

§

impl Eq for __c_anonymous_ptrace_syscall_info_seccomp

§

impl Eq for __c_anonymous_sockaddr_can_j1939

§

impl Eq for __c_anonymous_sockaddr_can_tp

§

impl Eq for __exit_status

§

impl Eq for __timeval

§

impl Eq for _libc_fpstate

§

impl Eq for _libc_fpxreg

§

impl Eq for _libc_xmmreg

§

impl Eq for addrinfo

§

impl Eq for af_alg_iv

§

impl Eq for aiocb

§

impl Eq for arpd_request

§

impl Eq for arphdr

§

impl Eq for arpreq

§

impl Eq for arpreq_old

§

impl Eq for can_filter

§

impl Eq for clone_args

§

impl Eq for cmsghdr

§

impl Eq for cpu_set_t

§

impl Eq for dirent

§

impl Eq for dirent64

§

impl Eq for dl_phdr_info

§

impl Eq for dqblk

§

impl Eq for epoll_event

§

impl Eq for fanotify_event_metadata

§

impl Eq for fanotify_response

§

impl Eq for fd_set

§

impl Eq for ff_condition_effect

§

impl Eq for ff_constant_effect

§

impl Eq for ff_effect

§

impl Eq for ff_envelope

§

impl Eq for ff_periodic_effect

§

impl Eq for ff_ramp_effect

§

impl Eq for ff_replay

§

impl Eq for ff_rumble_effect

§

impl Eq for ff_trigger

§

impl Eq for file_clone_range

§

impl Eq for flock

§

impl Eq for flock64

§

impl Eq for fsid_t

§

impl Eq for genlmsghdr

§

impl Eq for glob64_t

§

impl Eq for glob_t

§

impl Eq for group

§

impl Eq for hostent

§

impl Eq for hwtstamp_config

§

impl Eq for if_nameindex

§

impl Eq for ifaddrs

§

impl Eq for in6_addr

§

impl Eq for in6_ifreq

§

impl Eq for in6_pktinfo

§

impl Eq for in6_rtmsg

§

impl Eq for in_addr

§

impl Eq for in_pktinfo

§

impl Eq for inotify_event

§

impl Eq for input_absinfo

§

impl Eq for input_event

§

impl Eq for input_id

§

impl Eq for input_keymap_entry

§

impl Eq for input_mask

§

impl Eq for iovec

§

impl Eq for ip_mreq

§

impl Eq for ip_mreq_source

§

impl Eq for ip_mreqn

§

impl Eq for ipc_perm

§

impl Eq for ipv6_mreq

§

impl Eq for itimerspec

§

impl Eq for itimerval

§

impl Eq for j1939_filter

§

impl Eq for lconv

§

impl Eq for linger

§

impl Eq for mallinfo

§

impl Eq for mallinfo2

§

impl Eq for mcontext_t

§

impl Eq for mmsghdr

§

impl Eq for mntent

§

impl Eq for mq_attr

§

impl Eq for msghdr

§

impl Eq for msginfo

§

impl Eq for msqid_ds

§

impl Eq for nl_mmap_hdr

§

impl Eq for nl_mmap_req

§

impl Eq for nl_pktinfo

§

impl Eq for nlattr

§

impl Eq for nlmsgerr

§

impl Eq for nlmsghdr

§

impl Eq for ntptimeval

§

impl Eq for open_how

§

impl Eq for option

§

impl Eq for packet_mreq

§

impl Eq for passwd

§

impl Eq for pollfd

§

impl Eq for posix_spawn_file_actions_t

§

impl Eq for posix_spawnattr_t

§

impl Eq for protoent

§

impl Eq for pthread_attr_t

§

impl Eq for pthread_barrier_t

§

impl Eq for pthread_barrierattr_t

§

impl Eq for pthread_cond_t

§

impl Eq for pthread_condattr_t

§

impl Eq for pthread_mutex_t

§

impl Eq for pthread_mutexattr_t

§

impl Eq for pthread_rwlock_t

§

impl Eq for pthread_rwlockattr_t

§

impl Eq for ptrace_peeksiginfo_args

§

impl Eq for ptrace_rseq_configuration

§

impl Eq for ptrace_syscall_info

§

impl Eq for regex_t

§

impl Eq for regmatch_t

§

impl Eq for rlimit

§

impl Eq for rlimit64

§

impl Eq for rtentry

§

impl Eq for rusage

§

impl Eq for sched_param

§

impl Eq for sctp_authinfo

§

impl Eq for sctp_initmsg

§

impl Eq for sctp_nxtinfo

§

impl Eq for sctp_prinfo

§

impl Eq for sctp_rcvinfo

§

impl Eq for sctp_sndinfo

§

impl Eq for sctp_sndrcvinfo

§

impl Eq for seccomp_data

§

impl Eq for seccomp_notif_sizes

§

impl Eq for sem_t

§

impl Eq for sembuf

§

impl Eq for semid_ds

§

impl Eq for seminfo

§

impl Eq for servent

§

impl Eq for shmid_ds

§

impl Eq for sigaction

§

impl Eq for sigevent

§

impl Eq for siginfo_t

§

impl Eq for signalfd_siginfo

§

impl Eq for sigset_t

§

impl Eq for sigval

§

impl Eq for sock_extended_err

§

impl Eq for sock_filter

§

impl Eq for sock_fprog

§

impl Eq for sockaddr

§

impl Eq for sockaddr_alg

§

impl Eq for sockaddr_in

§

impl Eq for sockaddr_in6

§

impl Eq for sockaddr_ll

§

impl Eq for sockaddr_nl

§

impl Eq for sockaddr_storage

§

impl Eq for sockaddr_un

§

impl Eq for sockaddr_vm

§

impl Eq for spwd

§

impl Eq for stack_t

§

impl Eq for stat

§

impl Eq for stat64

§

impl Eq for statfs

§

impl Eq for statfs64

§

impl Eq for statvfs

§

impl Eq for statvfs64

§

impl Eq for statx

§

impl Eq for statx_timestamp

§

impl Eq for sysinfo

§

impl Eq for termios

§

impl Eq for termios2

§

impl Eq for timespec

§

impl Eq for timeval

§

impl Eq for timex

§

impl Eq for tm

§

impl Eq for tms

§

impl Eq for ucontext_t

§

impl Eq for ucred

§

impl Eq for uinput_abs_setup

§

impl Eq for uinput_ff_erase

§

impl Eq for uinput_ff_upload

§

impl Eq for uinput_setup

§

impl Eq for uinput_user_dev

§

impl Eq for user

§

impl Eq for user_fpregs_struct

§

impl Eq for user_regs_struct

§

impl Eq for utimbuf

§

impl Eq for utmpx

§

impl Eq for utsname

§

impl Eq for vec128_storage

§

impl Eq for vec256_storage

§

impl Eq for vec512_storage

§

impl Eq for winsize

source§

impl<'a> Eq for Component<'a>

source§

impl<'a> Eq for Prefix<'a>

source§

impl<'a> Eq for PrefixComponent<'a>

1.10.0 · source§

impl<'a> Eq for Location<'a>

source§

impl<'a> Eq for Utf8Chunk<'a>

§

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

§

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

§

impl<'a, T, O> Eq for IterOnes<'a, T, O>where T: Eq + 'a + BitStore, diff --git a/pr-3467/gstd/prelude/trait.From.html b/pr-3467/gstd/prelude/trait.From.html index bed5742b429..0adeda81e60 100644 --- a/pr-3467/gstd/prelude/trait.From.html +++ b/pr-3467/gstd/prelude/trait.From.html @@ -66,7 +66,7 @@

Examples

Ok(num) }

Required Methods§

source

fn from(value: T) -> Self

Converts to this type from the input type.

-

Implementors§

§

impl From<&'static str> for Bytes

§

impl From<&'static str> for Error

§

impl From<&'static str> for U128

§

impl From<&'static str> for U256

§

impl From<&'static str> for U512

§

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

1.21.0 · source§

impl From<&str> for Arc<str, Global>

1.21.0 · source§

impl From<&str> for Rc<str, Global>

1.17.0 · source§

impl From<&str> for gstd::prelude::Box<str, Global>

1.6.0 · source§

impl From<&str> for gstd::prelude::Box<dyn Error, Global>

source§

impl From<&str> for String

source§

impl From<&str> for gstd::prelude::Vec<u8, Global>

§

impl From<&str> for Vec<u8, Global>

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Arc<CStr, Global>

1.24.0 · source§

impl From<&CStr> for Rc<CStr, Global>

1.17.0 · source§

impl From<&CStr> for gstd::prelude::Box<CStr, Global>

§

impl From<&CStr> for Box<CStr, Global>

source§

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

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr, Global>

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr, Global>

1.17.0 · source§

impl From<&OsStr> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<&Path> for Arc<Path, Global>

1.24.0 · source§

impl From<&Path> for Rc<Path, Global>

1.17.0 · source§

impl From<&Path> for gstd::prelude::Box<Path, Global>

1.35.0 · source§

impl From<&String> for String

source§

impl From<&ChaCha8Rng> for ChaCha8Rng

source§

impl From<&ChaCha12Rng> for ChaCha12Rng

source§

impl From<&ChaCha20Rng> for ChaCha20Rng

1.44.0 · source§

impl From<&mut str> for String

source§

impl From<Error> for gstd::errors::Error

§

impl From<ErrorReplyReason> for ReplyCode

§

impl From<ExecutionError> for ExtError

source§

impl From<ExtError> for gcore::errors::Error

§

impl From<MemoryError> for ExtError

§

impl From<MessageError> for ExtError

§

impl From<ProgramRentError> for ExtError

§

impl From<ReservationError> for ExtError

§

impl From<SimpleExecutionError> for ErrorReplyReason

§

impl From<SimpleExecutionError> for SignalCode

§

impl From<SimpleProgramCreationError> for ErrorReplyReason

§

impl From<SuccessReplyReason> for ReplyCode

1.45.0 · source§

impl From<Cow<'_, str>> for gstd::prelude::Box<str, Global>

1.45.0 · source§

impl From<Cow<'_, CStr>> for gstd::prelude::Box<CStr, Global>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for gstd::prelude::Box<OsStr, Global>

1.45.0 · source§

impl From<Cow<'_, Path>> for gstd::prelude::Box<Path, Global>

source§

impl From<TryReserveErrorKind> for TryReserveError

1.36.0 · source§

impl From<Infallible> for TryFromSliceError

1.34.0 · source§

impl From<Infallible> for TryFromIntError

§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

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.14.0 · source§

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

Intended for use for errors not exposed to the user, where allocating onto +

Implementors§

§

impl From<&'static str> for Bytes

§

impl From<&'static str> for Error

§

impl From<&'static str> for U128

§

impl From<&'static str> for U256

§

impl From<&'static str> for U512

§

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

1.21.0 · source§

impl From<&str> for Arc<str, Global>

1.21.0 · source§

impl From<&str> for Rc<str, Global>

1.17.0 · source§

impl From<&str> for gstd::prelude::Box<str, Global>

1.6.0 · source§

impl From<&str> for gstd::prelude::Box<dyn Error, Global>

source§

impl From<&str> for String

source§

impl From<&str> for gstd::prelude::Vec<u8, Global>

§

impl From<&str> for Vec<u8, Global>

1.7.0 · source§

impl From<&CStr> for CString

1.24.0 · source§

impl From<&CStr> for Arc<CStr, Global>

1.24.0 · source§

impl From<&CStr> for Rc<CStr, Global>

1.17.0 · source§

impl From<&CStr> for gstd::prelude::Box<CStr, Global>

§

impl From<&CStr> for Box<CStr, Global>

source§

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

1.24.0 · source§

impl From<&OsStr> for Arc<OsStr, Global>

1.24.0 · source§

impl From<&OsStr> for Rc<OsStr, Global>

1.17.0 · source§

impl From<&OsStr> for gstd::prelude::Box<OsStr, Global>

1.24.0 · source§

impl From<&Path> for Arc<Path, Global>

1.24.0 · source§

impl From<&Path> for Rc<Path, Global>

1.17.0 · source§

impl From<&Path> for gstd::prelude::Box<Path, Global>

1.35.0 · source§

impl From<&String> for String

source§

impl From<&ChaCha8Rng> for ChaCha8Rng

source§

impl From<&ChaCha12Rng> for ChaCha12Rng

source§

impl From<&ChaCha20Rng> for ChaCha20Rng

1.44.0 · source§

impl From<&mut str> for String

§

impl From<ErrorReplyReason> for ReplyCode

§

impl From<ExecutionError> for ExtError

§

impl From<ExtError> for Error

§

impl From<MemoryError> for ExtError

§

impl From<MessageError> for ExtError

§

impl From<ProgramRentError> for ExtError

§

impl From<ReservationError> for ExtError

§

impl From<SimpleExecutionError> for ErrorReplyReason

§

impl From<SimpleExecutionError> for SignalCode

§

impl From<SimpleProgramCreationError> for ErrorReplyReason

§

impl From<SuccessReplyReason> for ReplyCode

1.45.0 · source§

impl From<Cow<'_, str>> for gstd::prelude::Box<str, Global>

1.45.0 · source§

impl From<Cow<'_, CStr>> for gstd::prelude::Box<CStr, Global>

1.45.0 · source§

impl From<Cow<'_, OsStr>> for gstd::prelude::Box<OsStr, Global>

1.45.0 · source§

impl From<Cow<'_, Path>> for gstd::prelude::Box<Path, Global>

source§

impl From<TryReserveErrorKind> for TryReserveError

1.36.0 · source§

impl From<Infallible> for TryFromSliceError

1.34.0 · source§

impl From<Infallible> for TryFromIntError

§

impl From<Result<(u128, u32), u32>> for ErrorWithBlockNumberAndValue

§

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.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.

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

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

1.6.0 · source§

impl From<f32> for f64

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

1.34.0 · source§

impl From<i8> for AtomicI8

§

impl From<i8> for U128

§

impl From<i8> for U256

§

impl From<i8> for U512

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

1.34.0 · source§

impl From<i16> for AtomicI16

§

impl From<i16> for U128

§

impl From<i16> for U256

§

impl From<i16> for U512

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

1.34.0 · source§

impl From<i32> for AtomicI32

§

impl From<i32> for U128

§

impl From<i32> for U256

§

impl From<i32> for U512

1.26.0 · source§

impl From<i64> for i128

1.34.0 · source§

impl From<i64> for AtomicI64

§

impl From<i64> for U128

§

impl From<i64> for U256

§

impl From<i64> for U512

§

impl From<i128> for U128

§

impl From<i128> for U256

§

impl From<i128> for U512

1.23.0 · source§

impl From<isize> for AtomicIsize

§

impl From<isize> for U128

§

impl From<isize> for U256

§

impl From<isize> for U512

1.34.0 · source§

impl From<!> for Infallible

source§

impl From<!> for TryFromIntError

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 @@ -82,7 +82,7 @@

Examples

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

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

§

impl From<u8> for U128

§

impl From<u8> for U256

§

impl From<u8> for U512

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

1.34.0 · source§

impl From<u16> for AtomicU16

§

impl From<u16> for U128

§

impl From<u16> for U256

§

impl From<u16> for U512

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

1.1.0 · source§

impl From<u32> for Ipv4Addr

1.34.0 · source§

impl From<u32> for AtomicU32

§

impl From<u32> for U128

§

impl From<u32> for U256

§

impl From<u32> for U512

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for gcore::general::ActorId

source§

impl From<u64> for gstd::ActorId

1.34.0 · source§

impl From<u64> for AtomicU64

§

impl From<u64> for U128

§

impl From<u64> for U256

§

impl From<u64> for U512

1.26.0 · source§

impl From<u128> for Ipv6Addr

§

impl From<u128> for U128

§

impl From<u128> for U256

§

impl From<u128> for U512

§

impl From<()> for ExtError

§

impl From<()> for ReplyCode

§

impl From<()> for SignalCode

1.23.0 · source§

impl From<usize> for AtomicUsize

§

impl From<usize> for U128

§

impl From<usize> for U256

§

impl From<usize> for U512

source§

impl From<ActorId> for gstd::ActorId

source§

impl From<CodeId> for gstd::CodeId

source§

impl From<MessageHandle> for gstd::msg::MessageHandle

source§

impl From<MessageId> for gstd::MessageId

source§

impl From<ReservationId> for gstd::ReservationId

source§

impl From<SyscallError> for Result<(), Error>

source§

impl From<MessageHandle> for gcore::general::MessageHandle

source§

impl From<ActorId> for gcore::general::ActorId

source§

impl From<ActorId> for [u8; 32]

source§

impl From<CodeId> for gcore::general::CodeId

source§

impl From<CodeId> for [u8; 32]

source§

impl From<MessageId> for gcore::general::MessageId

source§

impl From<MessageId> for [u8; 32]

source§

impl From<Reservation> for gstd::ReservationId

source§

impl From<ReservationId> for gcore::general::ReservationId

1.24.0 · source§

impl From<CString> for Arc<CStr, Global>

1.24.0 · source§

impl From<CString> for Rc<CStr, Global>

1.20.0 · source§

impl From<CString> for gstd::prelude::Box<CStr, Global>

1.7.0 · source§

impl From<CString> for gstd::prelude::Vec<u8, Global>

source§

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

1.62.0 · source§

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

source§

impl From<LayoutError> for TryReserveErrorKind

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

1.16.0 · source§

impl From<Ipv4Addr> for IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

1.16.0 · source§

impl From<Ipv6Addr> for IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

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

1.24.0 · source§

impl From<OsString> for Arc<OsStr, Global>

source§

impl From<OsString> for PathBuf

1.24.0 · source§

impl From<OsString> for Rc<OsStr, Global>

1.20.0 · source§

impl From<OsString> for gstd::prelude::Box<OsStr, Global>

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

§

impl From<Error> for Error

1.74.0-nightly · source§

impl From<Stderr> for Stdio

1.74.0-nightly · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

1.63.0 · source§

impl From<TcpStream> for OwnedFd

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

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.63.0 · source§

impl From<OwnedFd> for Stdio

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

1.63.0 · source§

impl From<UnixListener> for OwnedFd

1.63.0 · source§

impl From<UnixStream> for OwnedFd

1.24.0 · source§

impl From<PathBuf> for Arc<Path, Global>

1.14.0 · source§

impl From<PathBuf> for OsString

1.24.0 · source§

impl From<PathBuf> for Rc<Path, Global>

1.20.0 · source§

impl From<PathBuf> for gstd::prelude::Box<Path, Global>

1.63.0 · source§

impl From<ChildStderr> for OwnedFd

1.20.0 · source§

impl From<ChildStderr> for Stdio

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

source§

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

source§

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

source§

impl From<ChaCha8Core> for ChaCha8Rng

source§

impl From<ChaCha12Core> for ChaCha12Rng

source§

impl From<ChaCha20Core> for ChaCha20Rng

source§

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

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

source§

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

source§

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

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

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

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZeroUsize

1.62.0 · source§

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

1.18.0 · source§

impl From<Box<str, Global>> for String

1.18.0 · source§

impl From<Box<CStr, Global>> for CString

1.18.0 · source§

impl From<Box<OsStr, Global>> for OsString

1.18.0 · source§

impl From<Box<Path, Global>> for PathBuf

§

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

1.21.0 · source§

impl From<String> for Arc<str, Global>

source§

impl From<String> for OsString

source§

impl From<String> for PathBuf

1.21.0 · source§

impl From<String> for Rc<str, Global>

1.20.0 · source§

impl From<String> for gstd::prelude::Box<str, Global>

source§

impl From<String> for gstd::prelude::Box<dyn Error + Sync + Send, Global>

1.6.0 · source§

impl From<String> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

impl From<String> for gstd::prelude::Vec<u8, Global>

§

impl From<String> for Bytes

§

impl From<Vec<u8, Global>> for Bytes

source§

impl From<Vec<u32, Global>> for IndexVec

source§

impl From<Vec<usize, Global>> for IndexVec

1.43.0 · source§

impl From<Vec<NonZeroU8, Global>> for CString

§

impl From<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for Bytes

§

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

§

impl From<FromDecStrErr> for FromStrRadixErr

§

impl From<FromHexError> for FromStrRadixErr

§

impl From<H128> for [u8; 16]

§

impl From<H160> for H256

§

impl From<H160> for [u8; 20]

source§

impl From<H256> for gstd::ActorId

source§

impl From<H256> for gstd::CodeId

source§

impl From<H256> for gstd::MessageId

§

impl From<H256> for H160

§

impl From<H256> for [u8; 32]

§

impl From<H384> for [u8; 48]

§

impl From<H512> for [u8; 64]

§

impl From<H768> for [u8; 96]

§

impl From<Registry> for PortableRegistry

§

impl From<U128> for U256

§

impl From<U128> for U512

§

impl From<U128> for [u8; 16]

§

impl From<U256> for U512

§

impl From<U256> for [u8; 32]

§

impl From<U512> for [u8; 64]

1.17.0 · source§

impl From<[u8; 4]> for IpAddr

1.9.0 · source§

impl From<[u8; 4]> for Ipv4Addr

1.17.0 · source§

impl From<[u8; 16]> for 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 gcore::general::CodeId

source§

impl From<[u8; 32]> for gcore::general::ReservationId

source§

impl From<[u8; 32]> for gstd::ActorId

source§

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

source§

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

§

impl From<[u8; 32]> for H256

§

impl From<[u8; 32]> for U256

§

impl From<[u8; 48]> for H384

§

impl From<[u8; 64]> for H512

§

impl From<[u8; 64]> for U512

§

impl From<[u8; 96]> for H768

1.17.0 · source§

impl From<[u16; 8]> for 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<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 str> for Cow<'a, str>

§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

§

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 BytesMut

§

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

§

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

§

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

§

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 gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.22.0 · source§

impl<'a> From<Cow<'a, str>> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

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

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

§

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

§

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

§

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

§

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

source§

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

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Arc<B, Global>where +

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

1.34.0 · source§

impl From<u8> for AtomicU8

1.61.0 · source§

impl From<u8> for ExitCode

§

impl From<u8> for U128

§

impl From<u8> for U256

§

impl From<u8> for U512

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

1.34.0 · source§

impl From<u16> for AtomicU16

§

impl From<u16> for U128

§

impl From<u16> for U256

§

impl From<u16> for U512

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

1.1.0 · source§

impl From<u32> for Ipv4Addr

1.34.0 · source§

impl From<u32> for AtomicU32

§

impl From<u32> for U128

§

impl From<u32> for U256

§

impl From<u32> for U512

1.26.0 · source§

impl From<u64> for i128

1.26.0 · source§

impl From<u64> for u128

source§

impl From<u64> for gstd::ActorId

1.34.0 · source§

impl From<u64> for AtomicU64

§

impl From<u64> for ActorId

§

impl From<u64> for U128

§

impl From<u64> for U256

§

impl From<u64> for U512

1.26.0 · source§

impl From<u128> for Ipv6Addr

§

impl From<u128> for U128

§

impl From<u128> for U256

§

impl From<u128> for U512

§

impl From<()> for ExtError

§

impl From<()> for ReplyCode

§

impl From<()> for SignalCode

1.23.0 · source§

impl From<usize> for AtomicUsize

§

impl From<usize> for U128

§

impl From<usize> for U256

§

impl From<usize> for U512

§

impl From<SyscallError> for Result<(), Error>

source§

impl From<MessageHandle> for MessageHandle

source§

impl From<ActorId> for ActorId

source§

impl From<ActorId> for [u8; 32]

source§

impl From<CodeId> for CodeId

source§

impl From<CodeId> for [u8; 32]

source§

impl From<MessageId> for MessageId

source§

impl From<MessageId> for [u8; 32]

source§

impl From<Reservation> for gstd::ReservationId

source§

impl From<ReservationId> for ReservationId

1.24.0 · source§

impl From<CString> for Arc<CStr, Global>

1.24.0 · source§

impl From<CString> for Rc<CStr, Global>

1.20.0 · source§

impl From<CString> for gstd::prelude::Box<CStr, Global>

1.7.0 · source§

impl From<CString> for gstd::prelude::Vec<u8, Global>

source§

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

1.62.0 · source§

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

source§

impl From<LayoutError> for TryReserveErrorKind

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

1.16.0 · source§

impl From<Ipv4Addr> for IpAddr

1.1.0 · source§

impl From<Ipv4Addr> for u32

1.16.0 · source§

impl From<Ipv6Addr> for IpAddr

1.26.0 · source§

impl From<Ipv6Addr> for u128

1.16.0 · source§

impl From<SocketAddrV4> for SocketAddr

1.16.0 · source§

impl From<SocketAddrV6> for SocketAddr

source§

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

1.24.0 · source§

impl From<OsString> for Arc<OsStr, Global>

source§

impl From<OsString> for PathBuf

1.24.0 · source§

impl From<OsString> for Rc<OsStr, Global>

1.20.0 · source§

impl From<OsString> for gstd::prelude::Box<OsStr, Global>

1.63.0 · source§

impl From<File> for OwnedFd

1.20.0 · source§

impl From<File> for Stdio

§

impl From<Error> for Error

1.74.0-nightly · source§

impl From<Stderr> for Stdio

1.74.0-nightly · source§

impl From<Stdout> for Stdio

1.63.0 · source§

impl From<TcpListener> for OwnedFd

1.63.0 · source§

impl From<TcpStream> for OwnedFd

1.63.0 · source§

impl From<UdpSocket> for OwnedFd

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.63.0 · source§

impl From<OwnedFd> for Stdio

source§

impl From<PidFd> for OwnedFd

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

1.63.0 · source§

impl From<UnixListener> for OwnedFd

1.63.0 · source§

impl From<UnixStream> for OwnedFd

1.24.0 · source§

impl From<PathBuf> for Arc<Path, Global>

1.14.0 · source§

impl From<PathBuf> for OsString

1.24.0 · source§

impl From<PathBuf> for Rc<Path, Global>

1.20.0 · source§

impl From<PathBuf> for gstd::prelude::Box<Path, Global>

1.63.0 · source§

impl From<ChildStderr> for OwnedFd

1.20.0 · source§

impl From<ChildStderr> for Stdio

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

1.20.0 · source§

impl From<ChildStdin> for Stdio

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

1.20.0 · source§

impl From<ChildStdout> for Stdio

1.24.0 · source§

impl From<RecvError> for RecvTimeoutError

1.24.0 · source§

impl From<RecvError> for TryRecvError

source§

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

source§

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

source§

impl From<ChaCha8Core> for ChaCha8Rng

source§

impl From<ChaCha12Core> for ChaCha12Rng

source§

impl From<ChaCha20Core> for ChaCha20Rng

source§

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

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

source§

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

source§

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

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

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

source§

impl From<Alignment> for usize

source§

impl From<Alignment> for NonZeroUsize

1.62.0 · source§

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

1.18.0 · source§

impl From<Box<str, Global>> for String

1.18.0 · source§

impl From<Box<CStr, Global>> for CString

1.18.0 · source§

impl From<Box<OsStr, Global>> for OsString

1.18.0 · source§

impl From<Box<Path, Global>> for PathBuf

§

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

1.21.0 · source§

impl From<String> for Arc<str, Global>

source§

impl From<String> for OsString

source§

impl From<String> for PathBuf

1.21.0 · source§

impl From<String> for Rc<str, Global>

1.20.0 · source§

impl From<String> for gstd::prelude::Box<str, Global>

source§

impl From<String> for gstd::prelude::Box<dyn Error + Sync + Send, Global>

1.6.0 · source§

impl From<String> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

impl From<String> for gstd::prelude::Vec<u8, Global>

§

impl From<String> for Bytes

§

impl From<Vec<u8, Global>> for Bytes

source§

impl From<Vec<u32, Global>> for IndexVec

source§

impl From<Vec<usize, Global>> for IndexVec

1.43.0 · source§

impl From<Vec<NonZeroU8, Global>> for CString

source§

impl From<ActorId> for gstd::ActorId

§

impl From<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl From<BytesMut> for Bytes

source§

impl From<CodeId> for gstd::CodeId

§

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<Error> for gstd::errors::Error

§

impl From<FromDecStrErr> for FromStrRadixErr

§

impl From<FromHexError> for FromStrRadixErr

§

impl From<H128> for [u8; 16]

§

impl From<H160> for H256

§

impl From<H160> for [u8; 20]

source§

impl From<H256> for gstd::ActorId

source§

impl From<H256> for gstd::CodeId

source§

impl From<H256> for gstd::MessageId

§

impl From<H256> for H160

§

impl From<H256> for [u8; 32]

§

impl From<H384> for [u8; 48]

§

impl From<H512> for [u8; 64]

§

impl From<H768> for [u8; 96]

source§

impl From<MessageHandle> for gstd::msg::MessageHandle

source§

impl From<MessageId> for gstd::MessageId

§

impl From<Registry> for PortableRegistry

source§

impl From<ReservationId> for gstd::ReservationId

§

impl From<U128> for U256

§

impl From<U128> for U512

§

impl From<U128> for [u8; 16]

§

impl From<U256> for U512

§

impl From<U256> for [u8; 32]

§

impl From<U512> for [u8; 64]

1.17.0 · source§

impl From<[u8; 4]> for IpAddr

1.9.0 · source§

impl From<[u8; 4]> for Ipv4Addr

1.17.0 · source§

impl From<[u8; 16]> for 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 gstd::ActorId

source§

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

source§

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

§

impl From<[u8; 32]> for CodeId

§

impl From<[u8; 32]> for H256

§

impl From<[u8; 32]> for ReservationId

§

impl From<[u8; 32]> for U256

§

impl From<[u8; 48]> for H384

§

impl From<[u8; 64]> for H512

§

impl From<[u8; 64]> for U512

§

impl From<[u8; 96]> for H768

1.17.0 · source§

impl From<[u16; 8]> for 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<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 str> for Cow<'a, str>

§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

1.28.0 · source§

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

1.28.0 · source§

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

§

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

§

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

§

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

§

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

§

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 BytesMut

§

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

§

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

§

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

§

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 gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.22.0 · source§

impl<'a> From<Cow<'a, str>> for gstd::prelude::Box<dyn Error, Global>

1.14.0 · source§

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

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

1.28.0 · source§

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

1.28.0 · source§

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

1.6.0 · source§

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

§

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

§

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

§

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

§

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

source§

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

1.22.0 · source§

impl<'a, 'b> From<Cow<'b, str>> for gstd::prelude::Box<dyn Error + Sync + Send + 'a, Global>

1.45.0 · source§

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

1.45.0 · source§

impl<'a, B> From<Cow<'a, B>> for Rc<B, Global>where B: ToOwned + ?Sized, diff --git a/pr-3467/gstd/prelude/trait.Ord.html b/pr-3467/gstd/prelude/trait.Ord.html index 2f9468fb1a9..6234fd8fa7f 100644 --- a/pr-3467/gstd/prelude/trait.Ord.html +++ b/pr-3467/gstd/prelude/trait.Ord.html @@ -138,7 +138,7 @@
Examples
“alphabetical” order, which varies by language and locale. Sorting strings according to culturally-accepted standards requires locale-specific data that is outside the scope of the str type.

-
source§

impl Ord for u8

source§

impl Ord for u16

source§

impl Ord for u32

source§

impl Ord for u64

source§

impl Ord for u128

source§

impl Ord for ()

source§

impl Ord for usize

source§

impl Ord for gcore::general::ActorId

source§

impl Ord for gcore::general::CodeId

source§

impl Ord for gcore::general::MessageId

source§

impl Ord for gcore::general::ReservationId

source§

impl Ord for SyscallError

source§

impl Ord for gstd::ActorId

source§

impl Ord for gstd::CodeId

source§

impl Ord for gstd::MessageId

§

impl Ord for Percent

source§

impl Ord for gstd::ReservationId

§

impl Ord for MetaType

source§

impl Ord for TypeId

source§

impl Ord for CStr

1.64.0 · source§

impl Ord for CString

source§

impl Ord for Error

1.27.0 · source§

impl Ord for CpuidResult

source§

impl Ord for Ipv4Addr

source§

impl Ord for Ipv6Addr

1.45.0 · source§

impl Ord for SocketAddrV4

1.45.0 · source§

impl Ord for SocketAddrV6

source§

impl Ord for OsStr

source§

impl Ord for OsString

source§

impl Ord for Components<'_>

source§

impl Ord for std::path::Path

source§

impl Ord for PathBuf

source§

impl Ord for PrefixComponent<'_>

1.8.0 · source§

impl Ord for Instant

1.8.0 · source§

impl Ord for SystemTime

1.33.0 · source§

impl Ord for PhantomPinned

1.34.0 · source§

impl Ord for NonZeroI8

1.34.0 · source§

impl Ord for NonZeroI16

1.34.0 · source§

impl Ord for NonZeroI32

1.34.0 · source§

impl Ord for NonZeroI64

1.34.0 · source§

impl Ord for NonZeroI128

1.34.0 · source§

impl Ord for NonZeroIsize

1.28.0 · source§

impl Ord for NonZeroU8

1.28.0 · source§

impl Ord for NonZeroU16

1.28.0 · source§

impl Ord for NonZeroU32

1.28.0 · source§

impl Ord for NonZeroU64

1.28.0 · source§

impl Ord for NonZeroU128

1.28.0 · source§

impl Ord for NonZeroUsize

const: unstable · source§

impl Ord for Alignment

source§

impl Ord for String

1.3.0 · source§

impl Ord for Duration

§

impl Ord for BigEndian

§

impl Ord for Bytes

§

impl Ord for BytesMut

§

impl Ord for Const

§

impl Ord for H128

§

impl Ord for H160

§

impl Ord for H256

§

impl Ord for H384

§

impl Ord for H512

§

impl Ord for H768

§

impl Ord for LittleEndian

§

impl Ord for Lsb0

§

impl Ord for MetaForm

§

impl Ord for Msb0

§

impl Ord for Mut

§

impl Ord for NullPtrError

§

impl Ord for PortableForm

§

impl Ord for TypeDefPrimitive

§

impl Ord for U128

§

impl Ord for U256

§

impl Ord for U512

source§

impl<'a> Ord for Component<'a>

source§

impl<'a> Ord for Prefix<'a>

1.10.0 · source§

impl<'a> Ord for Location<'a>

§

impl<'a, T> Ord for Symbol<'a, T>where +
source§

impl Ord for u8

source§

impl Ord for u16

source§

impl Ord for u32

source§

impl Ord for u64

source§

impl Ord for u128

source§

impl Ord for ()

source§

impl Ord for usize

§

impl Ord for SyscallError

source§

impl Ord for gstd::ActorId

source§

impl Ord for gstd::CodeId

source§

impl Ord for gstd::MessageId

§

impl Ord for Percent

source§

impl Ord for gstd::ReservationId

§

impl Ord for MetaType

source§

impl Ord for TypeId

source§

impl Ord for CStr

1.64.0 · source§

impl Ord for CString

source§

impl Ord for Error

1.27.0 · source§

impl Ord for CpuidResult

source§

impl Ord for Ipv4Addr

source§

impl Ord for Ipv6Addr

1.45.0 · source§

impl Ord for SocketAddrV4

1.45.0 · source§

impl Ord for SocketAddrV6

source§

impl Ord for OsStr

source§

impl Ord for OsString

source§

impl Ord for Components<'_>

source§

impl Ord for std::path::Path

source§

impl Ord for PathBuf

source§

impl Ord for PrefixComponent<'_>

1.8.0 · source§

impl Ord for Instant

1.8.0 · source§

impl Ord for SystemTime

1.33.0 · source§

impl Ord for PhantomPinned

1.34.0 · source§

impl Ord for NonZeroI8

1.34.0 · source§

impl Ord for NonZeroI16

1.34.0 · source§

impl Ord for NonZeroI32

1.34.0 · source§

impl Ord for NonZeroI64

1.34.0 · source§

impl Ord for NonZeroI128

1.34.0 · source§

impl Ord for NonZeroIsize

1.28.0 · source§

impl Ord for NonZeroU8

1.28.0 · source§

impl Ord for NonZeroU16

1.28.0 · source§

impl Ord for NonZeroU32

1.28.0 · source§

impl Ord for NonZeroU64

1.28.0 · source§

impl Ord for NonZeroU128

1.28.0 · source§

impl Ord for NonZeroUsize

const: unstable · source§

impl Ord for Alignment

source§

impl Ord for String

1.3.0 · source§

impl Ord for Duration

§

impl Ord for ActorId

§

impl Ord for BigEndian

§

impl Ord for Bytes

§

impl Ord for BytesMut

§

impl Ord for CodeId

§

impl Ord for Const

§

impl Ord for H128

§

impl Ord for H160

§

impl Ord for H256

§

impl Ord for H384

§

impl Ord for H512

§

impl Ord for H768

§

impl Ord for LittleEndian

§

impl Ord for Lsb0

§

impl Ord for MessageId

§

impl Ord for MetaForm

§

impl Ord for Msb0

§

impl Ord for Mut

§

impl Ord for NullPtrError

§

impl Ord for PortableForm

§

impl Ord for ReservationId

§

impl Ord for TypeDefPrimitive

§

impl Ord for U128

§

impl Ord for U256

§

impl Ord for U512

source§

impl<'a> Ord for Component<'a>

source§

impl<'a> Ord for Prefix<'a>

1.10.0 · source§

impl<'a> Ord for Location<'a>

§

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

§

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

§

impl<'a, T, O> Ord for IterZeros<'a, T, O>where diff --git a/pr-3467/gstd/prelude/trait.PartialEq.html b/pr-3467/gstd/prelude/trait.PartialEq.html index 09ebd4cff62..afdbd3aeb01 100644 --- a/pr-3467/gstd/prelude/trait.PartialEq.html +++ b/pr-3467/gstd/prelude/trait.PartialEq.html @@ -163,7 +163,7 @@

Examples

by ==.

Provided Methods§

source

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

1.29.0 · source§

impl PartialEq<&str> for OsString

source§

impl PartialEq<Error> for gcore::errors::Error

source§

impl PartialEq<Error> for gstd::errors::Error

§

impl PartialEq<ErrorReplyReason> for ErrorReplyReason

§

impl PartialEq<ExecutionError> for ExecutionError

§

impl PartialEq<ExtError> for ExtError

§

impl PartialEq<MemoryError> for MemoryError

§

impl PartialEq<MessageError> for MessageError

§

impl PartialEq<ProgramRentError> for ProgramRentError

§

impl PartialEq<ReplyCode> for ReplyCode

§

impl PartialEq<ReservationError> for ReservationError

§

impl PartialEq<SignalCode> for SignalCode

§

impl PartialEq<SimpleExecutionError> for SimpleExecutionError

§

impl PartialEq<SimpleProgramCreationError> for SimpleProgramCreationError

§

impl PartialEq<SuccessReplyReason> for SuccessReplyReason

source§

impl PartialEq<AsciiChar> for AsciiChar

source§

impl PartialEq<Ordering> for gstd::prelude::cmp::Ordering

source§

impl PartialEq<TryReserveErrorKind> for TryReserveErrorKind

§

impl PartialEq<TryReserveError> for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl PartialEq<Infallible> for Infallible

1.28.0 · source§

impl PartialEq<Alignment> for gstd::prelude::fmt::Alignment

source§

impl PartialEq<Which> for Which

1.7.0 · source§

impl PartialEq<IpAddr> for IpAddr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

source§

impl PartialEq<Ipv6MulticastScope> for Ipv6MulticastScope

source§

impl PartialEq<SocketAddr> for SocketAddr

source§

impl PartialEq<Ordering> for core::sync::atomic::Ordering

1.65.0 · source§

impl PartialEq<BacktraceStatus> for BacktraceStatus

source§

impl PartialEq<VarError> for VarError

source§

impl PartialEq<SeekFrom> for SeekFrom

source§

impl PartialEq<ErrorKind> for ErrorKind

source§

impl PartialEq<Shutdown> for Shutdown

source§

impl PartialEq<BacktraceStyle> for BacktraceStyle

1.12.0 · source§

impl PartialEq<RecvTimeoutError> for RecvTimeoutError

source§

impl PartialEq<TryRecvError> for TryRecvError

source§

impl PartialEq<_Unwind_Action> for _Unwind_Action

source§

impl PartialEq<_Unwind_Reason_Code> for _Unwind_Reason_Code

source§

impl PartialEq<FromHexError> for FromHexError

source§

impl PartialEq<BernoulliError> for BernoulliError

source§

impl PartialEq<WeightedError> for WeightedError

source§

impl PartialEq<IndexVec> for IndexVec

source§

impl PartialEq<FpCategory> for FpCategory

1.55.0 · source§

impl PartialEq<IntErrorKind> for IntErrorKind

source§

impl PartialEq<SearchStep> for SearchStep

source§

impl PartialEq<bool> for bool

source§

impl PartialEq<char> for char

source§

impl PartialEq<f32> for f32

source§

impl PartialEq<f64> for f64

source§

impl PartialEq<i8> for i8

source§

impl PartialEq<i16> for i16

source§

impl PartialEq<i32> for i32

source§

impl PartialEq<i64> for i64

source§

impl PartialEq<i128> for i128

source§

impl PartialEq<isize> for isize

source§

impl PartialEq<!> for !

source§

impl PartialEq<str> for str

source§

impl PartialEq<str> for OsStr

source§

impl PartialEq<str> for OsString

§

impl PartialEq<str> for Bytes

§

impl PartialEq<str> for BytesMut

source§

impl PartialEq<u8> for u8

source§

impl PartialEq<u16> for u16

source§

impl PartialEq<u32> for u32

source§

impl PartialEq<u64> for u64

source§

impl PartialEq<u128> for u128

source§

impl PartialEq<()> for ()

source§

impl PartialEq<usize> for usize

source§

impl PartialEq<ActorId> for gcore::general::ActorId

source§

impl PartialEq<CodeId> for gcore::general::CodeId

source§

impl PartialEq<MessageHandle> for gcore::general::MessageHandle

source§

impl PartialEq<MessageId> for gcore::general::MessageId

source§

impl PartialEq<ReservationId> for gcore::general::ReservationId

source§

impl PartialEq<SyscallError> for SyscallError

source§

impl PartialEq<MessageHandle> for gstd::msg::MessageHandle

source§

impl PartialEq<ActorId> for gstd::ActorId

source§

impl PartialEq<CodeId> for gstd::CodeId

source§

impl PartialEq<MessageId> for gstd::MessageId

§

impl PartialEq<Percent> for Percent

source§

impl PartialEq<ReservationId> for gstd::ReservationId

§

impl PartialEq<MetaType> for MetaType

source§

impl PartialEq<TypeId> for TypeId

1.34.0 · source§

impl PartialEq<CharTryFromError> for CharTryFromError

1.9.0 · source§

impl PartialEq<DecodeUtf16Error> for DecodeUtf16Error

1.20.0 · source§

impl PartialEq<ParseCharError> for ParseCharError

1.59.0 · source§

impl PartialEq<TryFromCharError> for TryFromCharError

1.57.0 · source§

impl PartialEq<TryReserveError> for gstd::prelude::collections::TryReserveError

source§

impl PartialEq<CStr> for CStr

1.64.0 · source§

impl PartialEq<CString> for CString

1.69.0 · source§

impl PartialEq<FromBytesUntilNulError> for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq<FromBytesWithNulError> for FromBytesWithNulError

1.64.0 · source§

impl PartialEq<FromVecWithNulError> for FromVecWithNulError

1.64.0 · source§

impl PartialEq<IntoStringError> for IntoStringError

1.64.0 · source§

impl PartialEq<NulError> for NulError

source§

impl PartialEq<Error> for gstd::prelude::fmt::Error

1.28.0 · source§

impl PartialEq<Layout> for Layout

1.50.0 · source§

impl PartialEq<LayoutError> for LayoutError

source§

impl PartialEq<AllocError> for core::alloc::AllocError

1.27.0 · source§

impl PartialEq<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

source§

impl PartialEq<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

source§

impl PartialEq<Ipv6Addr> for Ipv6Addr

source§

impl PartialEq<AddrParseError> for AddrParseError

source§

impl PartialEq<SocketAddrV4> for SocketAddrV4

source§

impl PartialEq<SocketAddrV6> for SocketAddrV6

source§

impl PartialEq<OsStr> for str

source§

impl PartialEq<OsStr> for OsStr

1.8.0 · source§

impl PartialEq<OsStr> for std::path::Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

source§

impl PartialEq<OsString> for str

source§

impl PartialEq<OsString> for OsString

1.8.0 · source§

impl PartialEq<OsString> for std::path::Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.1.0 · source§

impl PartialEq<FileType> for FileType

source§

impl PartialEq<Permissions> for Permissions

source§

impl PartialEq<UCred> for UCred

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

source§

impl PartialEq<Path> for std::path::Path

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for std::path::Path

source§

impl PartialEq<PathBuf> for PathBuf

1.7.0 · source§

impl PartialEq<StripPrefixError> for StripPrefixError

source§

impl PartialEq<ExitStatus> for ExitStatus

source§

impl PartialEq<ExitStatusError> for ExitStatusError

source§

impl PartialEq<Output> for Output

1.5.0 · source§

impl PartialEq<WaitTimeoutResult> for WaitTimeoutResult

source§

impl PartialEq<RecvError> for RecvError

1.26.0 · source§

impl PartialEq<AccessError> for AccessError

1.19.0 · source§

impl PartialEq<ThreadId> for ThreadId

1.8.0 · source§

impl PartialEq<Instant> for Instant

1.8.0 · source§

impl PartialEq<SystemTime> for SystemTime

source§

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

source§

impl PartialEq<IgnoredAny> for IgnoredAny

source§

impl PartialEq<Error> for serde::de::value::Error

source§

impl PartialEq<Bernoulli> for Bernoulli

source§

impl PartialEq<StepRng> for StepRng

source§

impl PartialEq<SmallRng> for SmallRng

source§

impl PartialEq<StdRng> for StdRng

source§

impl PartialEq<ChaCha8Core> for ChaCha8Core

source§

impl PartialEq<ChaCha8Rng> for ChaCha8Rng

source§

impl PartialEq<ChaCha12Core> for ChaCha12Core

source§

impl PartialEq<ChaCha12Rng> for ChaCha12Rng

source§

impl PartialEq<ChaCha20Core> for ChaCha20Core

source§

impl PartialEq<ChaCha20Rng> for ChaCha20Rng

1.33.0 · source§

impl PartialEq<PhantomPinned> for PhantomPinned

source§

impl PartialEq<Assume> for Assume

1.34.0 · source§

impl PartialEq<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialEq<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialEq<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialEq<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialEq<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialEq<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialEq<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialEq<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialEq<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialEq<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialEq<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialEq<NonZeroUsize> for NonZeroUsize

source§

impl PartialEq<ParseFloatError> for ParseFloatError

source§

impl PartialEq<ParseIntError> for ParseIntError

1.34.0 · source§

impl PartialEq<TryFromIntError> for TryFromIntError

source§

impl PartialEq<RangeFull> for RangeFull

source§

impl PartialEq<Alignment> for gstd::prelude::ptr::Alignment

source§

impl PartialEq<ParseBoolError> for ParseBoolError

source§

impl PartialEq<Utf8Error> for Utf8Error

source§

impl PartialEq<FromUtf8Error> for FromUtf8Error

source§

impl PartialEq<String> for String

§

impl PartialEq<String> for Bytes

§

impl PartialEq<String> for BytesMut

§

impl PartialEq<Vec<u8, Global>> for Bytes

§

impl PartialEq<Vec<u8, Global>> for BytesMut

1.36.0 · source§

impl PartialEq<RawWaker> for RawWaker

1.36.0 · source§

impl PartialEq<RawWakerVTable> for RawWakerVTable

1.3.0 · source§

impl PartialEq<Duration> for Duration

1.66.0 · source§

impl PartialEq<TryFromFloatSecsError> for TryFromFloatSecsError

§

impl PartialEq<Aborted> for Aborted

§

impl PartialEq<AllocError> for AllocError

§

impl PartialEq<BigEndian> for BigEndian

§

impl PartialEq<Bytes> for &str

§

impl PartialEq<Bytes> for &[u8]

§

impl PartialEq<Bytes> for str

§

impl PartialEq<Bytes> for String

§

impl PartialEq<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<Bytes> for Bytes

§

impl PartialEq<Bytes> for BytesMut

§

impl PartialEq<Bytes> for [u8]

§

impl PartialEq<BytesMut> for &str

§

impl PartialEq<BytesMut> for &[u8]

§

impl PartialEq<BytesMut> for str

§

impl PartialEq<BytesMut> for String

§

impl PartialEq<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<BytesMut> for Bytes

§

impl PartialEq<BytesMut> for BytesMut

§

impl PartialEq<BytesMut> for [u8]

§

impl PartialEq<Canceled> for Canceled

§

impl PartialEq<Const> for Const

§

impl PartialEq<Dl_info> for Dl_info

§

impl PartialEq<Elf32_Chdr> for Elf32_Chdr

§

impl PartialEq<Elf32_Ehdr> for Elf32_Ehdr

§

impl PartialEq<Elf32_Phdr> for Elf32_Phdr

§

impl PartialEq<Elf32_Shdr> for Elf32_Shdr

§

impl PartialEq<Elf32_Sym> for Elf32_Sym

§

impl PartialEq<Elf64_Chdr> for Elf64_Chdr

§

impl PartialEq<Elf64_Ehdr> for Elf64_Ehdr

§

impl PartialEq<Elf64_Phdr> for Elf64_Phdr

§

impl PartialEq<Elf64_Shdr> for Elf64_Shdr

§

impl PartialEq<Elf64_Sym> for Elf64_Sym

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<FromDecStrErr> for FromDecStrErr

§

impl PartialEq<FromStrRadixErrKind> for FromStrRadixErrKind

§

impl PartialEq<H128> for H128

§

impl PartialEq<H160> for H160

§

impl PartialEq<H256> for H256

§

impl PartialEq<H384> for H384

§

impl PartialEq<H512> for H512

§

impl PartialEq<H768> for H768

§

impl PartialEq<LittleEndian> for LittleEndian

§

impl PartialEq<Lsb0> for Lsb0

§

impl PartialEq<MetaForm> for MetaForm

§

impl PartialEq<Msb0> for Msb0

§

impl PartialEq<Mut> for Mut

§

impl PartialEq<NullPtrError> for NullPtrError

§

impl PartialEq<OptionBool> for OptionBool

§

impl PartialEq<PathError> for PathError

§

impl PartialEq<PollNext> for PollNext

§

impl PartialEq<PortableForm> for PortableForm

§

impl PartialEq<PortableRegistry> for PortableRegistry

§

impl PartialEq<PortableType> for PortableType

§

impl PartialEq<Registry> for Registry

§

impl PartialEq<SendError> for SendError

§

impl PartialEq<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialEq<U128> for U128

§

impl PartialEq<U256> for U256

§

impl PartialEq<U512> for U512

§

impl PartialEq<[u8]> for Bytes

§

impl PartialEq<[u8]> for BytesMut

§

impl PartialEq<__c_anonymous_ifru_map> for __c_anonymous_ifru_map

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_data> for __c_anonymous_ptrace_syscall_info_data

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_entry> for __c_anonymous_ptrace_syscall_info_entry

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_exit> for __c_anonymous_ptrace_syscall_info_exit

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_seccomp> for __c_anonymous_ptrace_syscall_info_seccomp

§

impl PartialEq<__c_anonymous_sockaddr_can_j1939> for __c_anonymous_sockaddr_can_j1939

§

impl PartialEq<__c_anonymous_sockaddr_can_tp> for __c_anonymous_sockaddr_can_tp

§

impl PartialEq<__exit_status> for __exit_status

§

impl PartialEq<__timeval> for __timeval

§

impl PartialEq<_libc_fpstate> for _libc_fpstate

§

impl PartialEq<_libc_fpxreg> for _libc_fpxreg

§

impl PartialEq<_libc_xmmreg> for _libc_xmmreg

§

impl PartialEq<addrinfo> for addrinfo

§

impl PartialEq<af_alg_iv> for af_alg_iv

§

impl PartialEq<aiocb> for aiocb

§

impl PartialEq<arpd_request> for arpd_request

§

impl PartialEq<arphdr> for arphdr

§

impl PartialEq<arpreq> for arpreq

§

impl PartialEq<arpreq_old> for arpreq_old

§

impl PartialEq<can_filter> for can_filter

§

impl PartialEq<clone_args> for clone_args

§

impl PartialEq<cmsghdr> for cmsghdr

§

impl PartialEq<cpu_set_t> for cpu_set_t

§

impl PartialEq<dirent64> for dirent64

§

impl PartialEq<dirent> for dirent

§

impl PartialEq<dl_phdr_info> for dl_phdr_info

§

impl PartialEq<dqblk> for dqblk

§

impl PartialEq<epoll_event> for epoll_event

§

impl PartialEq<fanotify_event_metadata> for fanotify_event_metadata

§

impl PartialEq<fanotify_response> for fanotify_response

§

impl PartialEq<fd_set> for fd_set

§

impl PartialEq<ff_condition_effect> for ff_condition_effect

§

impl PartialEq<ff_constant_effect> for ff_constant_effect

§

impl PartialEq<ff_effect> for ff_effect

§

impl PartialEq<ff_envelope> for ff_envelope

§

impl PartialEq<ff_periodic_effect> for ff_periodic_effect

§

impl PartialEq<ff_ramp_effect> for ff_ramp_effect

§

impl PartialEq<ff_replay> for ff_replay

§

impl PartialEq<ff_rumble_effect> for ff_rumble_effect

§

impl PartialEq<ff_trigger> for ff_trigger

§

impl PartialEq<file_clone_range> for file_clone_range

§

impl PartialEq<flock64> for flock64

§

impl PartialEq<flock> for flock

§

impl PartialEq<fsid_t> for fsid_t

§

impl PartialEq<genlmsghdr> for genlmsghdr

§

impl PartialEq<glob64_t> for glob64_t

§

impl PartialEq<glob_t> for glob_t

§

impl PartialEq<group> for group

§

impl PartialEq<hostent> for hostent

§

impl PartialEq<hwtstamp_config> for hwtstamp_config

§

impl PartialEq<if_nameindex> for if_nameindex

§

impl PartialEq<ifaddrs> for ifaddrs

§

impl PartialEq<in6_addr> for in6_addr

§

impl PartialEq<in6_ifreq> for in6_ifreq

§

impl PartialEq<in6_pktinfo> for in6_pktinfo

§

impl PartialEq<in6_rtmsg> for in6_rtmsg

§

impl PartialEq<in_addr> for in_addr

§

impl PartialEq<in_pktinfo> for in_pktinfo

§

impl PartialEq<inotify_event> for inotify_event

§

impl PartialEq<input_absinfo> for input_absinfo

§

impl PartialEq<input_event> for input_event

§

impl PartialEq<input_id> for input_id

§

impl PartialEq<input_keymap_entry> for input_keymap_entry

§

impl PartialEq<input_mask> for input_mask

§

impl PartialEq<iovec> for iovec

§

impl PartialEq<ip_mreq> for ip_mreq

§

impl PartialEq<ip_mreq_source> for ip_mreq_source

§

impl PartialEq<ip_mreqn> for ip_mreqn

§

impl PartialEq<ipc_perm> for ipc_perm

§

impl PartialEq<ipv6_mreq> for ipv6_mreq

§

impl PartialEq<itimerspec> for itimerspec

§

impl PartialEq<itimerval> for itimerval

§

impl PartialEq<j1939_filter> for j1939_filter

§

impl PartialEq<lconv> for lconv

§

impl PartialEq<linger> for linger

§

impl PartialEq<mallinfo2> for mallinfo2

§

impl PartialEq<mallinfo> for mallinfo

§

impl PartialEq<mcontext_t> for mcontext_t

§

impl PartialEq<mmsghdr> for mmsghdr

§

impl PartialEq<mntent> for mntent

§

impl PartialEq<mq_attr> for mq_attr

§

impl PartialEq<msghdr> for msghdr

§

impl PartialEq<msginfo> for msginfo

§

impl PartialEq<msqid_ds> for msqid_ds

§

impl PartialEq<nl_mmap_hdr> for nl_mmap_hdr

§

impl PartialEq<nl_mmap_req> for nl_mmap_req

§

impl PartialEq<nl_pktinfo> for nl_pktinfo

§

impl PartialEq<nlattr> for nlattr

§

impl PartialEq<nlmsgerr> for nlmsgerr

§

impl PartialEq<nlmsghdr> for nlmsghdr

§

impl PartialEq<ntptimeval> for ntptimeval

§

impl PartialEq<open_how> for open_how

§

impl PartialEq<option> for option

§

impl PartialEq<packet_mreq> for packet_mreq

§

impl PartialEq<passwd> for passwd

§

impl PartialEq<pollfd> for pollfd

§

impl PartialEq<posix_spawn_file_actions_t> for posix_spawn_file_actions_t

§

impl PartialEq<posix_spawnattr_t> for posix_spawnattr_t

§

impl PartialEq<protoent> for protoent

§

impl PartialEq<pthread_attr_t> for pthread_attr_t

§

impl PartialEq<pthread_barrier_t> for pthread_barrier_t

§

impl PartialEq<pthread_barrierattr_t> for pthread_barrierattr_t

§

impl PartialEq<pthread_cond_t> for pthread_cond_t

§

impl PartialEq<pthread_condattr_t> for pthread_condattr_t

§

impl PartialEq<pthread_mutex_t> for pthread_mutex_t

§

impl PartialEq<pthread_mutexattr_t> for pthread_mutexattr_t

§

impl PartialEq<pthread_rwlock_t> for pthread_rwlock_t

§

impl PartialEq<pthread_rwlockattr_t> for pthread_rwlockattr_t

§

impl PartialEq<ptrace_peeksiginfo_args> for ptrace_peeksiginfo_args

§

impl PartialEq<ptrace_rseq_configuration> for ptrace_rseq_configuration

§

impl PartialEq<ptrace_syscall_info> for ptrace_syscall_info

§

impl PartialEq<regex_t> for regex_t

§

impl PartialEq<regmatch_t> for regmatch_t

§

impl PartialEq<rlimit64> for rlimit64

§

impl PartialEq<rlimit> for rlimit

§

impl PartialEq<rtentry> for rtentry

§

impl PartialEq<rusage> for rusage

§

impl PartialEq<sched_param> for sched_param

§

impl PartialEq<sctp_authinfo> for sctp_authinfo

§

impl PartialEq<sctp_initmsg> for sctp_initmsg

§

impl PartialEq<sctp_nxtinfo> for sctp_nxtinfo

§

impl PartialEq<sctp_prinfo> for sctp_prinfo

§

impl PartialEq<sctp_rcvinfo> for sctp_rcvinfo

§

impl PartialEq<sctp_sndinfo> for sctp_sndinfo

§

impl PartialEq<sctp_sndrcvinfo> for sctp_sndrcvinfo

§

impl PartialEq<seccomp_data> for seccomp_data

§

impl PartialEq<seccomp_notif_sizes> for seccomp_notif_sizes

§

impl PartialEq<sem_t> for sem_t

§

impl PartialEq<sembuf> for sembuf

§

impl PartialEq<semid_ds> for semid_ds

§

impl PartialEq<seminfo> for seminfo

§

impl PartialEq<servent> for servent

§

impl PartialEq<shmid_ds> for shmid_ds

§

impl PartialEq<sigaction> for sigaction

§

impl PartialEq<sigevent> for sigevent

§

impl PartialEq<siginfo_t> for siginfo_t

§

impl PartialEq<signalfd_siginfo> for signalfd_siginfo

§

impl PartialEq<sigset_t> for sigset_t

§

impl PartialEq<sigval> for sigval

§

impl PartialEq<sock_extended_err> for sock_extended_err

§

impl PartialEq<sock_filter> for sock_filter

§

impl PartialEq<sock_fprog> for sock_fprog

§

impl PartialEq<sockaddr> for sockaddr

§

impl PartialEq<sockaddr_alg> for sockaddr_alg

§

impl PartialEq<sockaddr_in6> for sockaddr_in6

§

impl PartialEq<sockaddr_in> for sockaddr_in

§

impl PartialEq<sockaddr_ll> for sockaddr_ll

§

impl PartialEq<sockaddr_nl> for sockaddr_nl

§

impl PartialEq<sockaddr_storage> for sockaddr_storage

§

impl PartialEq<sockaddr_un> for sockaddr_un

§

impl PartialEq<sockaddr_vm> for sockaddr_vm

§

impl PartialEq<spwd> for spwd

§

impl PartialEq<stack_t> for stack_t

§

impl PartialEq<stat64> for stat64

§

impl PartialEq<stat> for stat

§

impl PartialEq<statfs64> for statfs64

§

impl PartialEq<statfs> for statfs

§

impl PartialEq<statvfs64> for statvfs64

§

impl PartialEq<statvfs> for statvfs

§

impl PartialEq<statx> for statx

§

impl PartialEq<statx_timestamp> for statx_timestamp

§

impl PartialEq<sysinfo> for sysinfo

§

impl PartialEq<termios2> for termios2

§

impl PartialEq<termios> for termios

§

impl PartialEq<timespec> for timespec

§

impl PartialEq<timeval> for timeval

§

impl PartialEq<timex> for timex

§

impl PartialEq<tm> for tm

§

impl PartialEq<tms> for tms

§

impl PartialEq<ucontext_t> for ucontext_t

§

impl PartialEq<ucred> for ucred

§

impl PartialEq<uinput_abs_setup> for uinput_abs_setup

§

impl PartialEq<uinput_ff_erase> for uinput_ff_erase

§

impl PartialEq<uinput_ff_upload> for uinput_ff_upload

§

impl PartialEq<uinput_setup> for uinput_setup

§

impl PartialEq<uinput_user_dev> for uinput_user_dev

§

impl PartialEq<user> for user

§

impl PartialEq<user_fpregs_struct> for user_fpregs_struct

§

impl PartialEq<user_regs_struct> for user_regs_struct

§

impl PartialEq<utimbuf> for utimbuf

§

impl PartialEq<utmpx> for utmpx

§

impl PartialEq<utsname> for utsname

§

impl PartialEq<vec128_storage> for vec128_storage

§

impl PartialEq<vec256_storage> for vec256_storage

§

impl PartialEq<vec512_storage> for vec512_storage

§

impl PartialEq<winsize> for winsize

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for std::path::Path

1.6.0 · source§

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

source§

impl<'a> PartialEq<Component<'a>> for Component<'a>

source§

impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>

source§

impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

source§

impl<'a> PartialEq<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

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

source§

impl<'a> PartialEq<PrefixComponent<'a>> for PrefixComponent<'a>

1.10.0 · source§

impl<'a> PartialEq<Location<'a>> for Location<'a>

source§

impl<'a> PartialEq<Utf8Chunk<'a>> for Utf8Chunk<'a>

source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a std::path::Path

source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

source§

impl<'a, 'b> PartialEq<String> for &'a str

source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<String> for str

source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>where +

Implementors§

1.29.0 · source§

impl PartialEq<&str> for OsString

source§

impl PartialEq<Error> for gstd::errors::Error

§

impl PartialEq<ErrorReplyReason> for ErrorReplyReason

§

impl PartialEq<ExecutionError> for ExecutionError

§

impl PartialEq<ExtError> for ExtError

§

impl PartialEq<MemoryError> for MemoryError

§

impl PartialEq<MessageError> for MessageError

§

impl PartialEq<ProgramRentError> for ProgramRentError

§

impl PartialEq<ReplyCode> for ReplyCode

§

impl PartialEq<ReservationError> for ReservationError

§

impl PartialEq<SignalCode> for SignalCode

§

impl PartialEq<SimpleExecutionError> for SimpleExecutionError

§

impl PartialEq<SimpleProgramCreationError> for SimpleProgramCreationError

§

impl PartialEq<SuccessReplyReason> for SuccessReplyReason

source§

impl PartialEq<AsciiChar> for AsciiChar

source§

impl PartialEq<Ordering> for gstd::prelude::cmp::Ordering

source§

impl PartialEq<TryReserveErrorKind> for TryReserveErrorKind

§

impl PartialEq<TryReserveError> for gstd::prelude::collections::hashbrown::TryReserveError

1.34.0 · source§

impl PartialEq<Infallible> for Infallible

1.28.0 · source§

impl PartialEq<Alignment> for gstd::prelude::fmt::Alignment

source§

impl PartialEq<Which> for Which

1.7.0 · source§

impl PartialEq<IpAddr> for IpAddr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

source§

impl PartialEq<Ipv6MulticastScope> for Ipv6MulticastScope

source§

impl PartialEq<SocketAddr> for SocketAddr

source§

impl PartialEq<Ordering> for core::sync::atomic::Ordering

1.65.0 · source§

impl PartialEq<BacktraceStatus> for BacktraceStatus

source§

impl PartialEq<VarError> for VarError

source§

impl PartialEq<SeekFrom> for SeekFrom

source§

impl PartialEq<ErrorKind> for ErrorKind

source§

impl PartialEq<Shutdown> for Shutdown

source§

impl PartialEq<BacktraceStyle> for BacktraceStyle

1.12.0 · source§

impl PartialEq<RecvTimeoutError> for RecvTimeoutError

source§

impl PartialEq<TryRecvError> for TryRecvError

source§

impl PartialEq<_Unwind_Action> for _Unwind_Action

source§

impl PartialEq<_Unwind_Reason_Code> for _Unwind_Reason_Code

source§

impl PartialEq<FromHexError> for FromHexError

source§

impl PartialEq<BernoulliError> for BernoulliError

source§

impl PartialEq<WeightedError> for WeightedError

source§

impl PartialEq<IndexVec> for IndexVec

source§

impl PartialEq<FpCategory> for FpCategory

1.55.0 · source§

impl PartialEq<IntErrorKind> for IntErrorKind

source§

impl PartialEq<SearchStep> for SearchStep

source§

impl PartialEq<bool> for bool

source§

impl PartialEq<char> for char

source§

impl PartialEq<f32> for f32

source§

impl PartialEq<f64> for f64

source§

impl PartialEq<i8> for i8

source§

impl PartialEq<i16> for i16

source§

impl PartialEq<i32> for i32

source§

impl PartialEq<i64> for i64

source§

impl PartialEq<i128> for i128

source§

impl PartialEq<isize> for isize

source§

impl PartialEq<!> for !

source§

impl PartialEq<str> for str

source§

impl PartialEq<str> for OsStr

source§

impl PartialEq<str> for OsString

§

impl PartialEq<str> for Bytes

§

impl PartialEq<str> for BytesMut

source§

impl PartialEq<u8> for u8

source§

impl PartialEq<u16> for u16

source§

impl PartialEq<u32> for u32

source§

impl PartialEq<u64> for u64

source§

impl PartialEq<u128> for u128

source§

impl PartialEq<()> for ()

source§

impl PartialEq<usize> for usize

§

impl PartialEq<SyscallError> for SyscallError

source§

impl PartialEq<MessageHandle> for gstd::msg::MessageHandle

source§

impl PartialEq<ActorId> for gstd::ActorId

source§

impl PartialEq<CodeId> for gstd::CodeId

source§

impl PartialEq<MessageId> for gstd::MessageId

§

impl PartialEq<Percent> for Percent

source§

impl PartialEq<ReservationId> for gstd::ReservationId

§

impl PartialEq<MetaType> for MetaType

source§

impl PartialEq<TypeId> for TypeId

1.34.0 · source§

impl PartialEq<CharTryFromError> for CharTryFromError

1.9.0 · source§

impl PartialEq<DecodeUtf16Error> for DecodeUtf16Error

1.20.0 · source§

impl PartialEq<ParseCharError> for ParseCharError

1.59.0 · source§

impl PartialEq<TryFromCharError> for TryFromCharError

1.57.0 · source§

impl PartialEq<TryReserveError> for gstd::prelude::collections::TryReserveError

source§

impl PartialEq<CStr> for CStr

1.64.0 · source§

impl PartialEq<CString> for CString

1.69.0 · source§

impl PartialEq<FromBytesUntilNulError> for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq<FromBytesWithNulError> for FromBytesWithNulError

1.64.0 · source§

impl PartialEq<FromVecWithNulError> for FromVecWithNulError

1.64.0 · source§

impl PartialEq<IntoStringError> for IntoStringError

1.64.0 · source§

impl PartialEq<NulError> for NulError

source§

impl PartialEq<Error> for gstd::prelude::fmt::Error

1.28.0 · source§

impl PartialEq<Layout> for Layout

1.50.0 · source§

impl PartialEq<LayoutError> for LayoutError

source§

impl PartialEq<AllocError> for core::alloc::AllocError

1.27.0 · source§

impl PartialEq<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

source§

impl PartialEq<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

source§

impl PartialEq<Ipv6Addr> for Ipv6Addr

source§

impl PartialEq<AddrParseError> for AddrParseError

source§

impl PartialEq<SocketAddrV4> for SocketAddrV4

source§

impl PartialEq<SocketAddrV6> for SocketAddrV6

source§

impl PartialEq<OsStr> for str

source§

impl PartialEq<OsStr> for OsStr

1.8.0 · source§

impl PartialEq<OsStr> for std::path::Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

source§

impl PartialEq<OsString> for str

source§

impl PartialEq<OsString> for OsString

1.8.0 · source§

impl PartialEq<OsString> for std::path::Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.1.0 · source§

impl PartialEq<FileType> for FileType

source§

impl PartialEq<Permissions> for Permissions

source§

impl PartialEq<UCred> for UCred

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

source§

impl PartialEq<Path> for std::path::Path

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for std::path::Path

source§

impl PartialEq<PathBuf> for PathBuf

1.7.0 · source§

impl PartialEq<StripPrefixError> for StripPrefixError

source§

impl PartialEq<ExitStatus> for ExitStatus

source§

impl PartialEq<ExitStatusError> for ExitStatusError

source§

impl PartialEq<Output> for Output

1.5.0 · source§

impl PartialEq<WaitTimeoutResult> for WaitTimeoutResult

source§

impl PartialEq<RecvError> for RecvError

1.26.0 · source§

impl PartialEq<AccessError> for AccessError

1.19.0 · source§

impl PartialEq<ThreadId> for ThreadId

1.8.0 · source§

impl PartialEq<Instant> for Instant

1.8.0 · source§

impl PartialEq<SystemTime> for SystemTime

source§

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

source§

impl PartialEq<IgnoredAny> for IgnoredAny

source§

impl PartialEq<Error> for serde::de::value::Error

source§

impl PartialEq<Bernoulli> for Bernoulli

source§

impl PartialEq<StepRng> for StepRng

source§

impl PartialEq<SmallRng> for SmallRng

source§

impl PartialEq<StdRng> for StdRng

source§

impl PartialEq<ChaCha8Core> for ChaCha8Core

source§

impl PartialEq<ChaCha8Rng> for ChaCha8Rng

source§

impl PartialEq<ChaCha12Core> for ChaCha12Core

source§

impl PartialEq<ChaCha12Rng> for ChaCha12Rng

source§

impl PartialEq<ChaCha20Core> for ChaCha20Core

source§

impl PartialEq<ChaCha20Rng> for ChaCha20Rng

1.33.0 · source§

impl PartialEq<PhantomPinned> for PhantomPinned

source§

impl PartialEq<Assume> for Assume

1.34.0 · source§

impl PartialEq<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialEq<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialEq<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialEq<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialEq<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialEq<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialEq<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialEq<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialEq<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialEq<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialEq<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialEq<NonZeroUsize> for NonZeroUsize

source§

impl PartialEq<ParseFloatError> for ParseFloatError

source§

impl PartialEq<ParseIntError> for ParseIntError

1.34.0 · source§

impl PartialEq<TryFromIntError> for TryFromIntError

source§

impl PartialEq<RangeFull> for RangeFull

source§

impl PartialEq<Alignment> for gstd::prelude::ptr::Alignment

source§

impl PartialEq<ParseBoolError> for ParseBoolError

source§

impl PartialEq<Utf8Error> for Utf8Error

source§

impl PartialEq<FromUtf8Error> for FromUtf8Error

source§

impl PartialEq<String> for String

§

impl PartialEq<String> for Bytes

§

impl PartialEq<String> for BytesMut

§

impl PartialEq<Vec<u8, Global>> for Bytes

§

impl PartialEq<Vec<u8, Global>> for BytesMut

1.36.0 · source§

impl PartialEq<RawWaker> for RawWaker

1.36.0 · source§

impl PartialEq<RawWakerVTable> for RawWakerVTable

1.3.0 · source§

impl PartialEq<Duration> for Duration

1.66.0 · source§

impl PartialEq<TryFromFloatSecsError> for TryFromFloatSecsError

§

impl PartialEq<Aborted> for Aborted

§

impl PartialEq<ActorId> for ActorId

§

impl PartialEq<AllocError> for AllocError

§

impl PartialEq<BigEndian> for BigEndian

§

impl PartialEq<Bytes> for &str

§

impl PartialEq<Bytes> for &[u8]

§

impl PartialEq<Bytes> for str

§

impl PartialEq<Bytes> for String

§

impl PartialEq<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<Bytes> for Bytes

§

impl PartialEq<Bytes> for BytesMut

§

impl PartialEq<Bytes> for [u8]

§

impl PartialEq<BytesMut> for &str

§

impl PartialEq<BytesMut> for &[u8]

§

impl PartialEq<BytesMut> for str

§

impl PartialEq<BytesMut> for String

§

impl PartialEq<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialEq<BytesMut> for Bytes

§

impl PartialEq<BytesMut> for BytesMut

§

impl PartialEq<BytesMut> for [u8]

§

impl PartialEq<Canceled> for Canceled

§

impl PartialEq<CodeId> for CodeId

§

impl PartialEq<Const> for Const

§

impl PartialEq<Dl_info> for Dl_info

§

impl PartialEq<Elf32_Chdr> for Elf32_Chdr

§

impl PartialEq<Elf32_Ehdr> for Elf32_Ehdr

§

impl PartialEq<Elf32_Phdr> for Elf32_Phdr

§

impl PartialEq<Elf32_Shdr> for Elf32_Shdr

§

impl PartialEq<Elf32_Sym> for Elf32_Sym

§

impl PartialEq<Elf64_Chdr> for Elf64_Chdr

§

impl PartialEq<Elf64_Ehdr> for Elf64_Ehdr

§

impl PartialEq<Elf64_Phdr> for Elf64_Phdr

§

impl PartialEq<Elf64_Shdr> for Elf64_Shdr

§

impl PartialEq<Elf64_Sym> for Elf64_Sym

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<Error> for Error

§

impl PartialEq<FromDecStrErr> for FromDecStrErr

§

impl PartialEq<FromStrRadixErrKind> for FromStrRadixErrKind

§

impl PartialEq<H128> for H128

§

impl PartialEq<H160> for H160

§

impl PartialEq<H256> for H256

§

impl PartialEq<H384> for H384

§

impl PartialEq<H512> for H512

§

impl PartialEq<H768> for H768

§

impl PartialEq<LittleEndian> for LittleEndian

§

impl PartialEq<Lsb0> for Lsb0

§

impl PartialEq<MessageHandle> for MessageHandle

§

impl PartialEq<MessageId> for MessageId

§

impl PartialEq<MetaForm> for MetaForm

§

impl PartialEq<Msb0> for Msb0

§

impl PartialEq<Mut> for Mut

§

impl PartialEq<NullPtrError> for NullPtrError

§

impl PartialEq<OptionBool> for OptionBool

§

impl PartialEq<PathError> for PathError

§

impl PartialEq<PollNext> for PollNext

§

impl PartialEq<PortableForm> for PortableForm

§

impl PartialEq<PortableRegistry> for PortableRegistry

§

impl PartialEq<PortableType> for PortableType

§

impl PartialEq<Registry> for Registry

§

impl PartialEq<ReservationId> for ReservationId

§

impl PartialEq<SendError> for SendError

§

impl PartialEq<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialEq<U128> for U128

§

impl PartialEq<U256> for U256

§

impl PartialEq<U512> for U512

§

impl PartialEq<[u8]> for Bytes

§

impl PartialEq<[u8]> for BytesMut

§

impl PartialEq<__c_anonymous_ifru_map> for __c_anonymous_ifru_map

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_data> for __c_anonymous_ptrace_syscall_info_data

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_entry> for __c_anonymous_ptrace_syscall_info_entry

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_exit> for __c_anonymous_ptrace_syscall_info_exit

§

impl PartialEq<__c_anonymous_ptrace_syscall_info_seccomp> for __c_anonymous_ptrace_syscall_info_seccomp

§

impl PartialEq<__c_anonymous_sockaddr_can_j1939> for __c_anonymous_sockaddr_can_j1939

§

impl PartialEq<__c_anonymous_sockaddr_can_tp> for __c_anonymous_sockaddr_can_tp

§

impl PartialEq<__exit_status> for __exit_status

§

impl PartialEq<__timeval> for __timeval

§

impl PartialEq<_libc_fpstate> for _libc_fpstate

§

impl PartialEq<_libc_fpxreg> for _libc_fpxreg

§

impl PartialEq<_libc_xmmreg> for _libc_xmmreg

§

impl PartialEq<addrinfo> for addrinfo

§

impl PartialEq<af_alg_iv> for af_alg_iv

§

impl PartialEq<aiocb> for aiocb

§

impl PartialEq<arpd_request> for arpd_request

§

impl PartialEq<arphdr> for arphdr

§

impl PartialEq<arpreq> for arpreq

§

impl PartialEq<arpreq_old> for arpreq_old

§

impl PartialEq<can_filter> for can_filter

§

impl PartialEq<clone_args> for clone_args

§

impl PartialEq<cmsghdr> for cmsghdr

§

impl PartialEq<cpu_set_t> for cpu_set_t

§

impl PartialEq<dirent64> for dirent64

§

impl PartialEq<dirent> for dirent

§

impl PartialEq<dl_phdr_info> for dl_phdr_info

§

impl PartialEq<dqblk> for dqblk

§

impl PartialEq<epoll_event> for epoll_event

§

impl PartialEq<fanotify_event_metadata> for fanotify_event_metadata

§

impl PartialEq<fanotify_response> for fanotify_response

§

impl PartialEq<fd_set> for fd_set

§

impl PartialEq<ff_condition_effect> for ff_condition_effect

§

impl PartialEq<ff_constant_effect> for ff_constant_effect

§

impl PartialEq<ff_effect> for ff_effect

§

impl PartialEq<ff_envelope> for ff_envelope

§

impl PartialEq<ff_periodic_effect> for ff_periodic_effect

§

impl PartialEq<ff_ramp_effect> for ff_ramp_effect

§

impl PartialEq<ff_replay> for ff_replay

§

impl PartialEq<ff_rumble_effect> for ff_rumble_effect

§

impl PartialEq<ff_trigger> for ff_trigger

§

impl PartialEq<file_clone_range> for file_clone_range

§

impl PartialEq<flock64> for flock64

§

impl PartialEq<flock> for flock

§

impl PartialEq<fsid_t> for fsid_t

§

impl PartialEq<genlmsghdr> for genlmsghdr

§

impl PartialEq<glob64_t> for glob64_t

§

impl PartialEq<glob_t> for glob_t

§

impl PartialEq<group> for group

§

impl PartialEq<hostent> for hostent

§

impl PartialEq<hwtstamp_config> for hwtstamp_config

§

impl PartialEq<if_nameindex> for if_nameindex

§

impl PartialEq<ifaddrs> for ifaddrs

§

impl PartialEq<in6_addr> for in6_addr

§

impl PartialEq<in6_ifreq> for in6_ifreq

§

impl PartialEq<in6_pktinfo> for in6_pktinfo

§

impl PartialEq<in6_rtmsg> for in6_rtmsg

§

impl PartialEq<in_addr> for in_addr

§

impl PartialEq<in_pktinfo> for in_pktinfo

§

impl PartialEq<inotify_event> for inotify_event

§

impl PartialEq<input_absinfo> for input_absinfo

§

impl PartialEq<input_event> for input_event

§

impl PartialEq<input_id> for input_id

§

impl PartialEq<input_keymap_entry> for input_keymap_entry

§

impl PartialEq<input_mask> for input_mask

§

impl PartialEq<iovec> for iovec

§

impl PartialEq<ip_mreq> for ip_mreq

§

impl PartialEq<ip_mreq_source> for ip_mreq_source

§

impl PartialEq<ip_mreqn> for ip_mreqn

§

impl PartialEq<ipc_perm> for ipc_perm

§

impl PartialEq<ipv6_mreq> for ipv6_mreq

§

impl PartialEq<itimerspec> for itimerspec

§

impl PartialEq<itimerval> for itimerval

§

impl PartialEq<j1939_filter> for j1939_filter

§

impl PartialEq<lconv> for lconv

§

impl PartialEq<linger> for linger

§

impl PartialEq<mallinfo2> for mallinfo2

§

impl PartialEq<mallinfo> for mallinfo

§

impl PartialEq<mcontext_t> for mcontext_t

§

impl PartialEq<mmsghdr> for mmsghdr

§

impl PartialEq<mntent> for mntent

§

impl PartialEq<mq_attr> for mq_attr

§

impl PartialEq<msghdr> for msghdr

§

impl PartialEq<msginfo> for msginfo

§

impl PartialEq<msqid_ds> for msqid_ds

§

impl PartialEq<nl_mmap_hdr> for nl_mmap_hdr

§

impl PartialEq<nl_mmap_req> for nl_mmap_req

§

impl PartialEq<nl_pktinfo> for nl_pktinfo

§

impl PartialEq<nlattr> for nlattr

§

impl PartialEq<nlmsgerr> for nlmsgerr

§

impl PartialEq<nlmsghdr> for nlmsghdr

§

impl PartialEq<ntptimeval> for ntptimeval

§

impl PartialEq<open_how> for open_how

§

impl PartialEq<option> for option

§

impl PartialEq<packet_mreq> for packet_mreq

§

impl PartialEq<passwd> for passwd

§

impl PartialEq<pollfd> for pollfd

§

impl PartialEq<posix_spawn_file_actions_t> for posix_spawn_file_actions_t

§

impl PartialEq<posix_spawnattr_t> for posix_spawnattr_t

§

impl PartialEq<protoent> for protoent

§

impl PartialEq<pthread_attr_t> for pthread_attr_t

§

impl PartialEq<pthread_barrier_t> for pthread_barrier_t

§

impl PartialEq<pthread_barrierattr_t> for pthread_barrierattr_t

§

impl PartialEq<pthread_cond_t> for pthread_cond_t

§

impl PartialEq<pthread_condattr_t> for pthread_condattr_t

§

impl PartialEq<pthread_mutex_t> for pthread_mutex_t

§

impl PartialEq<pthread_mutexattr_t> for pthread_mutexattr_t

§

impl PartialEq<pthread_rwlock_t> for pthread_rwlock_t

§

impl PartialEq<pthread_rwlockattr_t> for pthread_rwlockattr_t

§

impl PartialEq<ptrace_peeksiginfo_args> for ptrace_peeksiginfo_args

§

impl PartialEq<ptrace_rseq_configuration> for ptrace_rseq_configuration

§

impl PartialEq<ptrace_syscall_info> for ptrace_syscall_info

§

impl PartialEq<regex_t> for regex_t

§

impl PartialEq<regmatch_t> for regmatch_t

§

impl PartialEq<rlimit64> for rlimit64

§

impl PartialEq<rlimit> for rlimit

§

impl PartialEq<rtentry> for rtentry

§

impl PartialEq<rusage> for rusage

§

impl PartialEq<sched_param> for sched_param

§

impl PartialEq<sctp_authinfo> for sctp_authinfo

§

impl PartialEq<sctp_initmsg> for sctp_initmsg

§

impl PartialEq<sctp_nxtinfo> for sctp_nxtinfo

§

impl PartialEq<sctp_prinfo> for sctp_prinfo

§

impl PartialEq<sctp_rcvinfo> for sctp_rcvinfo

§

impl PartialEq<sctp_sndinfo> for sctp_sndinfo

§

impl PartialEq<sctp_sndrcvinfo> for sctp_sndrcvinfo

§

impl PartialEq<seccomp_data> for seccomp_data

§

impl PartialEq<seccomp_notif_sizes> for seccomp_notif_sizes

§

impl PartialEq<sem_t> for sem_t

§

impl PartialEq<sembuf> for sembuf

§

impl PartialEq<semid_ds> for semid_ds

§

impl PartialEq<seminfo> for seminfo

§

impl PartialEq<servent> for servent

§

impl PartialEq<shmid_ds> for shmid_ds

§

impl PartialEq<sigaction> for sigaction

§

impl PartialEq<sigevent> for sigevent

§

impl PartialEq<siginfo_t> for siginfo_t

§

impl PartialEq<signalfd_siginfo> for signalfd_siginfo

§

impl PartialEq<sigset_t> for sigset_t

§

impl PartialEq<sigval> for sigval

§

impl PartialEq<sock_extended_err> for sock_extended_err

§

impl PartialEq<sock_filter> for sock_filter

§

impl PartialEq<sock_fprog> for sock_fprog

§

impl PartialEq<sockaddr> for sockaddr

§

impl PartialEq<sockaddr_alg> for sockaddr_alg

§

impl PartialEq<sockaddr_in6> for sockaddr_in6

§

impl PartialEq<sockaddr_in> for sockaddr_in

§

impl PartialEq<sockaddr_ll> for sockaddr_ll

§

impl PartialEq<sockaddr_nl> for sockaddr_nl

§

impl PartialEq<sockaddr_storage> for sockaddr_storage

§

impl PartialEq<sockaddr_un> for sockaddr_un

§

impl PartialEq<sockaddr_vm> for sockaddr_vm

§

impl PartialEq<spwd> for spwd

§

impl PartialEq<stack_t> for stack_t

§

impl PartialEq<stat64> for stat64

§

impl PartialEq<stat> for stat

§

impl PartialEq<statfs64> for statfs64

§

impl PartialEq<statfs> for statfs

§

impl PartialEq<statvfs64> for statvfs64

§

impl PartialEq<statvfs> for statvfs

§

impl PartialEq<statx> for statx

§

impl PartialEq<statx_timestamp> for statx_timestamp

§

impl PartialEq<sysinfo> for sysinfo

§

impl PartialEq<termios2> for termios2

§

impl PartialEq<termios> for termios

§

impl PartialEq<timespec> for timespec

§

impl PartialEq<timeval> for timeval

§

impl PartialEq<timex> for timex

§

impl PartialEq<tm> for tm

§

impl PartialEq<tms> for tms

§

impl PartialEq<ucontext_t> for ucontext_t

§

impl PartialEq<ucred> for ucred

§

impl PartialEq<uinput_abs_setup> for uinput_abs_setup

§

impl PartialEq<uinput_ff_erase> for uinput_ff_erase

§

impl PartialEq<uinput_ff_upload> for uinput_ff_upload

§

impl PartialEq<uinput_setup> for uinput_setup

§

impl PartialEq<uinput_user_dev> for uinput_user_dev

§

impl PartialEq<user> for user

§

impl PartialEq<user_fpregs_struct> for user_fpregs_struct

§

impl PartialEq<user_regs_struct> for user_regs_struct

§

impl PartialEq<utimbuf> for utimbuf

§

impl PartialEq<utmpx> for utmpx

§

impl PartialEq<utsname> for utsname

§

impl PartialEq<vec128_storage> for vec128_storage

§

impl PartialEq<vec256_storage> for vec256_storage

§

impl PartialEq<vec512_storage> for vec512_storage

§

impl PartialEq<winsize> for winsize

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for std::path::Path

1.6.0 · source§

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

source§

impl<'a> PartialEq<Component<'a>> for Component<'a>

source§

impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>

source§

impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

source§

impl<'a> PartialEq<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

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

source§

impl<'a> PartialEq<PrefixComponent<'a>> for PrefixComponent<'a>

1.10.0 · source§

impl<'a> PartialEq<Location<'a>> for Location<'a>

source§

impl<'a> PartialEq<Utf8Chunk<'a>> for Utf8Chunk<'a>

source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a std::path::Path

source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

source§

impl<'a, 'b> PartialEq<String> for &'a str

source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

source§

impl<'a, 'b> PartialEq<String> for str

source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

§

impl<'a, T> PartialEq<&'a T> for Byteswhere Bytes: PartialEq<T>, diff --git a/pr-3467/gstd/prelude/trait.PartialOrd.html b/pr-3467/gstd/prelude/trait.PartialOrd.html index 5ef54c3c24d..36168f94f5b 100644 --- a/pr-3467/gstd/prelude/trait.PartialOrd.html +++ b/pr-3467/gstd/prelude/trait.PartialOrd.html @@ -178,7 +178,7 @@
Examples
“alphabetical” order, which varies by language and locale. Comparing strings according to culturally-accepted standards requires locale-specific data that is outside the scope of the str type.

-

source§

impl PartialOrd<str> for OsStr

source§

impl PartialOrd<str> for OsString

§

impl PartialOrd<str> for Bytes

§

impl PartialOrd<str> for BytesMut

source§

impl PartialOrd<u8> for u8

source§

impl PartialOrd<u16> for u16

source§

impl PartialOrd<u32> for u32

source§

impl PartialOrd<u64> for u64

source§

impl PartialOrd<u128> for u128

source§

impl PartialOrd<()> for ()

source§

impl PartialOrd<usize> for usize

source§

impl PartialOrd<ActorId> for gcore::general::ActorId

source§

impl PartialOrd<CodeId> for gcore::general::CodeId

source§

impl PartialOrd<MessageId> for gcore::general::MessageId

source§

impl PartialOrd<ReservationId> for gcore::general::ReservationId

source§

impl PartialOrd<SyscallError> for SyscallError

source§

impl PartialOrd<ActorId> for gstd::ActorId

source§

impl PartialOrd<CodeId> for gstd::CodeId

source§

impl PartialOrd<MessageId> for gstd::MessageId

§

impl PartialOrd<Percent> for Percent

source§

impl PartialOrd<ReservationId> for gstd::ReservationId

§

impl PartialOrd<MetaType> for MetaType

source§

impl PartialOrd<TypeId> for TypeId

source§

impl PartialOrd<CStr> for CStr

1.64.0 · source§

impl PartialOrd<CString> for CString

source§

impl PartialOrd<Error> for Error

1.27.0 · source§

impl PartialOrd<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialOrd<Ipv4Addr> for IpAddr

source§

impl PartialOrd<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialOrd<Ipv6Addr> for IpAddr

source§

impl PartialOrd<Ipv6Addr> for Ipv6Addr

1.45.0 · source§

impl PartialOrd<SocketAddrV4> for SocketAddrV4

1.45.0 · source§

impl PartialOrd<SocketAddrV6> for SocketAddrV6

source§

impl PartialOrd<OsStr> for OsStr

1.8.0 · source§

impl PartialOrd<OsStr> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsStr> for PathBuf

source§

impl PartialOrd<OsString> for OsString

1.8.0 · source§

impl PartialOrd<OsString> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsString> for PathBuf

1.8.0 · source§

impl PartialOrd<Path> for OsStr

1.8.0 · source§

impl PartialOrd<Path> for OsString

source§

impl PartialOrd<Path> for std::path::Path

1.8.0 · source§

impl PartialOrd<Path> for PathBuf

1.8.0 · source§

impl PartialOrd<PathBuf> for OsStr

1.8.0 · source§

impl PartialOrd<PathBuf> for OsString

1.8.0 · source§

impl PartialOrd<PathBuf> for std::path::Path

source§

impl PartialOrd<PathBuf> for PathBuf

1.8.0 · source§

impl PartialOrd<Instant> for Instant

1.8.0 · source§

impl PartialOrd<SystemTime> for SystemTime

1.33.0 · source§

impl PartialOrd<PhantomPinned> for PhantomPinned

1.34.0 · source§

impl PartialOrd<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialOrd<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialOrd<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialOrd<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialOrd<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialOrd<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialOrd<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialOrd<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialOrd<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialOrd<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialOrd<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialOrd<NonZeroUsize> for NonZeroUsize

const: unstable · source§

impl PartialOrd<Alignment> for Alignment

source§

impl PartialOrd<String> for String

§

impl PartialOrd<String> for Bytes

§

impl PartialOrd<String> for BytesMut

§

impl PartialOrd<Vec<u8, Global>> for Bytes

§

impl PartialOrd<Vec<u8, Global>> for BytesMut

1.3.0 · source§

impl PartialOrd<Duration> for Duration

§

impl PartialOrd<BigEndian> for BigEndian

§

impl PartialOrd<Bytes> for &str

§

impl PartialOrd<Bytes> for &[u8]

§

impl PartialOrd<Bytes> for str

§

impl PartialOrd<Bytes> for String

§

impl PartialOrd<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<Bytes> for Bytes

§

impl PartialOrd<Bytes> for [u8]

§

impl PartialOrd<BytesMut> for &str

§

impl PartialOrd<BytesMut> for &[u8]

§

impl PartialOrd<BytesMut> for str

§

impl PartialOrd<BytesMut> for String

§

impl PartialOrd<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<BytesMut> for BytesMut

§

impl PartialOrd<BytesMut> for [u8]

§

impl PartialOrd<Const> for Const

§

impl PartialOrd<H128> for H128

§

impl PartialOrd<H160> for H160

§

impl PartialOrd<H256> for H256

§

impl PartialOrd<H384> for H384

§

impl PartialOrd<H512> for H512

§

impl PartialOrd<H768> for H768

§

impl PartialOrd<LittleEndian> for LittleEndian

§

impl PartialOrd<Lsb0> for Lsb0

§

impl PartialOrd<MetaForm> for MetaForm

§

impl PartialOrd<Msb0> for Msb0

§

impl PartialOrd<Mut> for Mut

§

impl PartialOrd<NullPtrError> for NullPtrError

§

impl PartialOrd<PortableForm> for PortableForm

§

impl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialOrd<U128> for U128

§

impl PartialOrd<U256> for U256

§

impl PartialOrd<U512> for U512

§

impl PartialOrd<[u8]> for Bytes

§

impl PartialOrd<[u8]> for BytesMut

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsString

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsString

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for std::path::Path

1.8.0 · source§

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

source§

impl<'a> PartialOrd<Component<'a>> for Component<'a>

source§

impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsString> for Cow<'a, Path>

source§

impl<'a> PartialOrd<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialOrd<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for Cow<'a, OsStr>

1.8.0 · source§

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

source§

impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>

1.10.0 · source§

impl<'a> PartialOrd<Location<'a>> for Location<'a>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a Path> for Cow<'b, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'b, OsStr>> for &'a std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for OsStr

source§

impl<'a, B> PartialOrd<Cow<'a, B>> for Cow<'a, B>where +
source§

impl PartialOrd<str> for OsStr

source§

impl PartialOrd<str> for OsString

§

impl PartialOrd<str> for Bytes

§

impl PartialOrd<str> for BytesMut

source§

impl PartialOrd<u8> for u8

source§

impl PartialOrd<u16> for u16

source§

impl PartialOrd<u32> for u32

source§

impl PartialOrd<u64> for u64

source§

impl PartialOrd<u128> for u128

source§

impl PartialOrd<()> for ()

source§

impl PartialOrd<usize> for usize

§

impl PartialOrd<SyscallError> for SyscallError

source§

impl PartialOrd<ActorId> for gstd::ActorId

source§

impl PartialOrd<CodeId> for gstd::CodeId

source§

impl PartialOrd<MessageId> for gstd::MessageId

§

impl PartialOrd<Percent> for Percent

source§

impl PartialOrd<ReservationId> for gstd::ReservationId

§

impl PartialOrd<MetaType> for MetaType

source§

impl PartialOrd<TypeId> for TypeId

source§

impl PartialOrd<CStr> for CStr

1.64.0 · source§

impl PartialOrd<CString> for CString

source§

impl PartialOrd<Error> for Error

1.27.0 · source§

impl PartialOrd<CpuidResult> for CpuidResult

1.16.0 · source§

impl PartialOrd<Ipv4Addr> for IpAddr

source§

impl PartialOrd<Ipv4Addr> for Ipv4Addr

1.16.0 · source§

impl PartialOrd<Ipv6Addr> for IpAddr

source§

impl PartialOrd<Ipv6Addr> for Ipv6Addr

1.45.0 · source§

impl PartialOrd<SocketAddrV4> for SocketAddrV4

1.45.0 · source§

impl PartialOrd<SocketAddrV6> for SocketAddrV6

source§

impl PartialOrd<OsStr> for OsStr

1.8.0 · source§

impl PartialOrd<OsStr> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsStr> for PathBuf

source§

impl PartialOrd<OsString> for OsString

1.8.0 · source§

impl PartialOrd<OsString> for std::path::Path

1.8.0 · source§

impl PartialOrd<OsString> for PathBuf

1.8.0 · source§

impl PartialOrd<Path> for OsStr

1.8.0 · source§

impl PartialOrd<Path> for OsString

source§

impl PartialOrd<Path> for std::path::Path

1.8.0 · source§

impl PartialOrd<Path> for PathBuf

1.8.0 · source§

impl PartialOrd<PathBuf> for OsStr

1.8.0 · source§

impl PartialOrd<PathBuf> for OsString

1.8.0 · source§

impl PartialOrd<PathBuf> for std::path::Path

source§

impl PartialOrd<PathBuf> for PathBuf

1.8.0 · source§

impl PartialOrd<Instant> for Instant

1.8.0 · source§

impl PartialOrd<SystemTime> for SystemTime

1.33.0 · source§

impl PartialOrd<PhantomPinned> for PhantomPinned

1.34.0 · source§

impl PartialOrd<NonZeroI8> for NonZeroI8

1.34.0 · source§

impl PartialOrd<NonZeroI16> for NonZeroI16

1.34.0 · source§

impl PartialOrd<NonZeroI32> for NonZeroI32

1.34.0 · source§

impl PartialOrd<NonZeroI64> for NonZeroI64

1.34.0 · source§

impl PartialOrd<NonZeroI128> for NonZeroI128

1.34.0 · source§

impl PartialOrd<NonZeroIsize> for NonZeroIsize

1.28.0 · source§

impl PartialOrd<NonZeroU8> for NonZeroU8

1.28.0 · source§

impl PartialOrd<NonZeroU16> for NonZeroU16

1.28.0 · source§

impl PartialOrd<NonZeroU32> for NonZeroU32

1.28.0 · source§

impl PartialOrd<NonZeroU64> for NonZeroU64

1.28.0 · source§

impl PartialOrd<NonZeroU128> for NonZeroU128

1.28.0 · source§

impl PartialOrd<NonZeroUsize> for NonZeroUsize

const: unstable · source§

impl PartialOrd<Alignment> for Alignment

source§

impl PartialOrd<String> for String

§

impl PartialOrd<String> for Bytes

§

impl PartialOrd<String> for BytesMut

§

impl PartialOrd<Vec<u8, Global>> for Bytes

§

impl PartialOrd<Vec<u8, Global>> for BytesMut

1.3.0 · source§

impl PartialOrd<Duration> for Duration

§

impl PartialOrd<ActorId> for ActorId

§

impl PartialOrd<BigEndian> for BigEndian

§

impl PartialOrd<Bytes> for &str

§

impl PartialOrd<Bytes> for &[u8]

§

impl PartialOrd<Bytes> for str

§

impl PartialOrd<Bytes> for String

§

impl PartialOrd<Bytes> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<Bytes> for Bytes

§

impl PartialOrd<Bytes> for [u8]

§

impl PartialOrd<BytesMut> for &str

§

impl PartialOrd<BytesMut> for &[u8]

§

impl PartialOrd<BytesMut> for str

§

impl PartialOrd<BytesMut> for String

§

impl PartialOrd<BytesMut> for gstd::prelude::Vec<u8, Global>

§

impl PartialOrd<BytesMut> for BytesMut

§

impl PartialOrd<BytesMut> for [u8]

§

impl PartialOrd<CodeId> for CodeId

§

impl PartialOrd<Const> for Const

§

impl PartialOrd<H128> for H128

§

impl PartialOrd<H160> for H160

§

impl PartialOrd<H256> for H256

§

impl PartialOrd<H384> for H384

§

impl PartialOrd<H512> for H512

§

impl PartialOrd<H768> for H768

§

impl PartialOrd<LittleEndian> for LittleEndian

§

impl PartialOrd<Lsb0> for Lsb0

§

impl PartialOrd<MessageId> for MessageId

§

impl PartialOrd<MetaForm> for MetaForm

§

impl PartialOrd<Msb0> for Msb0

§

impl PartialOrd<Mut> for Mut

§

impl PartialOrd<NullPtrError> for NullPtrError

§

impl PartialOrd<PortableForm> for PortableForm

§

impl PartialOrd<ReservationId> for ReservationId

§

impl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive

§

impl PartialOrd<U128> for U128

§

impl PartialOrd<U256> for U256

§

impl PartialOrd<U512> for U512

§

impl PartialOrd<[u8]> for Bytes

§

impl PartialOrd<[u8]> for BytesMut

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for OsString

1.8.0 · source§

impl<'a> PartialOrd<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for OsString

1.8.0 · source§

impl<'a> PartialOrd<Cow<'a, Path>> for std::path::Path

1.8.0 · source§

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

source§

impl<'a> PartialOrd<Component<'a>> for Component<'a>

source§

impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<OsString> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<OsString> for Cow<'a, Path>

source§

impl<'a> PartialOrd<Components<'a>> for Components<'a>

1.8.0 · source§

impl<'a> PartialOrd<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a> PartialOrd<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a OsStr

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for &'a std::path::Path

1.8.0 · source§

impl<'a> PartialOrd<PathBuf> for Cow<'a, OsStr>

1.8.0 · source§

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

source§

impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>

1.10.0 · source§

impl<'a> PartialOrd<Location<'a>> for Location<'a>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'a Path> for Cow<'b, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b OsStr> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<&'b Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'a, Path>> for &'b std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<Cow<'b, OsStr>> for &'a std::path::Path

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialOrd<OsString> for OsStr

source§

impl<'a, B> PartialOrd<Cow<'a, B>> for Cow<'a, B>where B: PartialOrd<B> + ToOwned + ?Sized,

§

impl<'a, O1, O2, T1, T2> PartialOrd<BitBox<T2, O2>> for &'a BitSlice<T1, O1>where O1: BitOrder, O2: BitOrder, diff --git a/pr-3467/gstd/struct.ActorId.html b/pr-3467/gstd/struct.ActorId.html index b94930c7f6e..e9451bcb172 100644 --- a/pr-3467/gstd/struct.ActorId.html +++ b/pr-3467/gstd/struct.ActorId.html @@ -20,7 +20,7 @@ I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Default for ActorId

source§

fn default() -> ActorId

Returns the “default value” for a type. Read more
source§

impl Encode for ActorId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for ActorId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for [u8; 32]

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for ActorId

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for ActorId

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<H256> for ActorId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl From<u64> for ActorId

source§

fn from(v: u64) -> Self

Converts to this type from the input type.
source§

impl Hash for ActorId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for ActorId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for [u8; 32]

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for ActorId

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<ActorId> for ActorId

source§

fn from(other: ActorId) -> Self

Converts to this type from the input type.
source§

impl From<H256> for ActorId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl From<u64> for ActorId

source§

fn from(v: u64) -> Self

Converts to this type from the input type.
source§

impl Hash for ActorId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl MaxEncodedLen for ActorId

source§

fn max_encoded_len() -> usize

Upper bound, in bytes, of the maximum encoded size of this item.
source§

impl Ord for ActorId

source§

fn cmp(&self, other: &ActorId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/pr-3467/gstd/struct.CodeId.html b/pr-3467/gstd/struct.CodeId.html index 06e0cc02228..6a499238297 100644 --- a/pr-3467/gstd/struct.CodeId.html +++ b/pr-3467/gstd/struct.CodeId.html @@ -16,7 +16,7 @@ I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Default for CodeId

source§

fn default() -> CodeId

Returns the “default value” for a type. Read more
source§

impl Encode for CodeId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for CodeId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for [u8; 32]

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<H256> for CodeId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl Hash for CodeId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for CodeId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for [u8; 32]

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<CodeId> for CodeId

source§

fn from(other: CodeId) -> Self

Converts to this type from the input type.
source§

impl From<H256> for CodeId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl Hash for CodeId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for CodeId

source§

fn cmp(&self, other: &CodeId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/pr-3467/gstd/struct.MessageId.html b/pr-3467/gstd/struct.MessageId.html index 2b38466eea6..2dfd6862d9c 100644 --- a/pr-3467/gstd/struct.MessageId.html +++ b/pr-3467/gstd/struct.MessageId.html @@ -16,7 +16,7 @@ I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Default for MessageId

source§

fn default() -> MessageId

Returns the “default value” for a type. Read more
source§

impl Encode for MessageId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for MessageId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<H256> for MessageId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for [u8; 32]

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl Hash for MessageId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<[u8; 32]> for MessageId

source§

fn from(arr: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<H256> for MessageId

source§

fn from(h256: H256) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for [u8; 32]

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl From<MessageId> for MessageId

source§

fn from(other: MessageId) -> Self

Converts to this type from the input type.
source§

impl Hash for MessageId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for MessageId

source§

fn cmp(&self, other: &MessageId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/pr-3467/gstd/struct.ReservationId.html b/pr-3467/gstd/struct.ReservationId.html index 417200744f2..ab8b5fe76d2 100644 --- a/pr-3467/gstd/struct.ReservationId.html +++ b/pr-3467/gstd/struct.ReservationId.html @@ -46,7 +46,7 @@
Examples
I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Encode for ReservationId

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy -)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<Reservation> for ReservationId

source§

fn from(res: Reservation) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(id: ReservationId) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(id: ReservationId) -> Self

Converts to this type from the input type.
source§

impl Hash for ReservationId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +)

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl From<Reservation> for ReservationId

source§

fn from(res: Reservation) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(id: ReservationId) -> Self

Converts to this type from the input type.
source§

impl From<ReservationId> for ReservationId

source§

fn from(id: ReservationId) -> Self

Converts to this type from the input type.
source§

impl Hash for ReservationId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for ReservationId

source§

fn cmp(&self, other: &ReservationId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/pr-3467/help.html b/pr-3467/help.html index 0ebc822600d..9a9696126ab 100644 --- a/pr-3467/help.html +++ b/pr-3467/help.html @@ -1 +1 @@ -Rustdoc help

Rustdoc help

Back
\ No newline at end of file +Rustdoc help

Rustdoc help

Back
\ No newline at end of file diff --git a/pr-3467/implementors/core/convert/trait.AsRef.js b/pr-3467/implementors/core/convert/trait.AsRef.js index 907f6663442..26d8b351177 100644 --- a/pr-3467/implementors/core/convert/trait.AsRef.js +++ b/pr-3467/implementors/core/convert/trait.AsRef.js @@ -1,4 +1,4 @@ (function() {var implementors = { "gear_core":[["impl AsRef<[u8]> for MessageId"],["impl AsRef<[u8]> for ProgramId"],["impl AsRef<[u8]> for CodeId"],["impl AsRef<[u8]> for ReservationId"]], -"gstd":[["impl<'a, T> AsRef<T> for RwLockWriteGuard<'a, T>"],["impl AsRef<[u8]> for ReservationId"],["impl AsRef<[u8]> for CodeId"],["impl AsRef<[u8]> for ActorId"],["impl AsRef<MessageHandle> for MessageHandle"],["impl AsRef<[u8]> for MessageId"],["impl<'a, T> AsRef<T> for MutexGuard<'a, T>"],["impl<'a, T> AsRef<T> for RwLockReadGuard<'a, T>"]] +"gstd":[["impl<'a, T> AsRef<T> for RwLockWriteGuard<'a, T>"],["impl AsRef<[u8]> for ReservationId"],["impl AsRef<[u8]> for CodeId"],["impl AsRef<[u8]> for ActorId"],["impl AsRef<MessageHandle> for MessageHandle"],["impl AsRef<[u8]> for MessageId"],["impl<'a, T> AsRef<T> for MutexGuard<'a, T>"],["impl<'a, T> AsRef<T> for RwLockReadGuard<'a, T>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/pr-3467/implementors/core/convert/trait.From.js b/pr-3467/implementors/core/convert/trait.From.js index c3e72a219b5..8fcd792657d 100644 --- a/pr-3467/implementors/core/convert/trait.From.js +++ b/pr-3467/implementors/core/convert/trait.From.js @@ -5,10 +5,10 @@ "gear_core":[["impl From<u64> for CodeId"],["impl From<PayloadSizeError> for &str"],["impl From<ProgramId> for [u8; 32]"],["impl From<IncomingDispatch> for (DispatchKind, IncomingMessage, Option<ContextStore>)"],["impl<P: PageU32Size> From<u64> for CostPerPage<P>"],["impl<JobErr> From<(UnlockPayloadBound, Result<(), JobErr>)> for DropPayloadLockBound<JobErr>"],["impl From<UserStoredMessage> for StoredMessage"],["impl From<CodeAndId> for InstrumentedCodeAndId"],["impl From<u64> for ReservationId"],["impl<'a> From<String> for LimitedStr<'a>"],["impl From<u64> for MessageId"],["impl From<CodeId> for [u8; 32]"],["impl From<Dispatch> for StoredDispatch"],["impl From<[u8; 32]> for CodeId"],["impl From<&[u8]> for CodeId"],["impl From<ChargeError> for AllocError"],["impl From<RuntimeBufferSizeError> for &str"],["impl From<MemoryInterval> for (u32, u32)"],["impl From<u64> for ProgramId"],["impl From<Percent> for Percent"],["impl From<MessageId> for [u8; 32]"],["impl From<(i64, i64)> for GasLeft"],["impl From<IncorrectAllocationDataError> for AllocError"],["impl From<[u8; 32]> for ProgramId"],["impl From<u16> for WasmPage"],["impl From<[u8; 32]> for MessageId"],["impl From<StoredDispatch> for (DispatchKind, StoredMessage, Option<ContextStore>)"],["impl From<GasReservationSlot> for GasReservationState"],["impl From<ReplyDetails> for MessageDetails"],["impl From<&[u8]> for ProgramId"],["impl From<(&mut MessageContext, &mut PayloadSliceLock)> for UnlockPayloadBound"],["impl From<RuntimeToken> for u64"],["impl From<&[u8]> for MessageId"],["impl<P: PageU32Size> From<CostPerPage<P>> for u64"],["impl From<(u32, u32)> for MemoryInterval"],["impl From<Message> for StoredMessage"],["impl From<UserMessage> for StoredMessage"],["impl From<(u64, u64)> for GasLeft"],["impl From<&[u8]> for ReservationId"],["impl From<SignalDetails> for MessageDetails"],["impl From<u16> for GearPage"],["impl From<GearPage> for u32"],["impl From<Dispatch> for (DispatchKind, Message)"],["impl From<[u8; 32]> for ReservationId"],["impl From<u32> for Percent"],["impl From<WasmPage> for u32"],["impl From<ReservationId> for [u8; 32]"]], "gear_core_backend":[["impl From<UnrecoverableExtError> for TrapExplanation"],["impl From<TrapExplanation> for ActorTerminationReason"],["impl From<CounterType> for ActorTerminationReason"],["impl From<TrapExplanation> for UndefinedTerminationReason"],["impl From<ActorTerminationReason> for UndefinedTerminationReason"],["impl From<UnrecoverableExecutionError> for UnrecoverableExtError"],["impl<E> From<E> for RunFallibleErrorwhere\n E: BackendSyscallError,"],["impl From<SystemTerminationReason> for ActorSystemError<ActorTerminationReason, SystemTerminationReason>"],["impl From<ActorTerminationReason> for ActorSystemError<ActorTerminationReason, SystemTerminationReason>"],["impl From<()> for UndefinedTerminationReason"],["impl From<LimitedStr<'static>> for TrapExplanation"],["impl From<ChargeError> for UndefinedTerminationReason"],["impl From<SystemTerminationReason> for UndefinedTerminationReason"],["impl From<UnrecoverableWaitError> for UnrecoverableExtError"],["impl<E: BackendSyscallError> From<E> for UndefinedTerminationReason"],["impl From<UnrecoverableMemoryError> for UnrecoverableExtError"]], "gear_core_errors":[["impl From<()> for ExtError"],["impl From<ProgramRentError> for ExtError"],["impl From<SimpleProgramCreationError> for ErrorReplyReason"],["impl From<MessageError> for ExtError"],["impl From<SuccessReplyReason> for ReplyCode"],["impl From<ErrorReplyReason> for ReplyCode"],["impl From<MemoryError> for ExtError"],["impl From<SimpleExecutionError> for SignalCode"],["impl From<ExecutionError> for ExtError"],["impl From<()> for SignalCode"],["impl From<ReservationError> for ExtError"],["impl From<()> for ReplyCode"],["impl From<SimpleExecutionError> for ErrorReplyReason"]], -"gear_core_processor":[["impl From<ChargeError> for FallibleExtError"],["impl From<MessageError> for FallibleExtError"],["impl From<UnrecoverableWaitError> for UnrecoverableExtError"],["impl From<SystemExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>"],["impl From<ExtError> for FallibleExtError"],["impl From<(IncomingDispatch, GasCounter, GasAllowanceCounter)> for PrechargedDispatch"],["impl From<ChargeError> for AllocExtError"],["impl From<ActorExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>"],["impl From<AllocError> for AllocExtError"],["impl From<ActorPrepareMemoryError> for ActorSystemError<ActorPrepareMemoryError, SystemPrepareMemoryError>"],["impl From<FallibleExtError> for RunFallibleError"],["impl From<UnrecoverableExtError> for UnrecoverableExtError"],["impl From<(ContextChargedForCodeLength, u32)> for ContextChargedForCode"],["impl From<()> for FallibleExtError"],["impl From<ReservationError> for FallibleExtError"],["impl From<SystemTerminationReason> for SystemExecutionError"],["impl From<ChargeError> for UnrecoverableExtError"],["impl From<ContextChargedForCode> for ContextChargedForInstrumentation"],["impl From<ExecutionError> for FallibleExtError"],["impl From<(ContextChargedForMemory, InstrumentedCode, u128)> for ProcessExecutionContext"],["impl From<ProgramRentError> for FallibleExtError"],["impl From<UnrecoverableExecutionError> for UnrecoverableExtError"]], +"gear_core_processor":[["impl From<ChargeError> for FallibleExtError"],["impl From<MessageError> for FallibleExtError"],["impl From<UnrecoverableWaitError> for UnrecoverableExtError"],["impl From<SystemExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>"],["impl From<ExtError> for FallibleExtError"],["impl From<(IncomingDispatch, GasCounter, GasAllowanceCounter)> for PrechargedDispatch"],["impl From<ChargeError> for AllocExtError"],["impl From<ActorExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>"],["impl From<AllocError> for AllocExtError"],["impl From<ActorPrepareMemoryError> for ActorSystemError<ActorPrepareMemoryError, SystemPrepareMemoryError>"],["impl From<FallibleExtError> for RunFallibleError"],["impl From<UnrecoverableExtError> for UnrecoverableExtError"],["impl From<(ContextChargedForCodeLength, u32)> for ContextChargedForCode"],["impl From<()> for FallibleExtError"],["impl From<ReservationError> for FallibleExtError"],["impl From<SystemTerminationReason> for SystemExecutionError"],["impl From<ChargeError> for UnrecoverableExtError"],["impl From<ContextChargedForCode> for ContextChargedForInstrumentation"],["impl From<ExecutionError> for FallibleExtError"],["impl From<(ContextChargedForMemory, InstrumentedCode, u128)> for ProcessExecutionContext"],["impl From<ProgramRentError> for FallibleExtError"],["impl From<UnrecoverableExecutionError> for UnrecoverableExtError"]], "gmeta":[["impl From<u16> for MetadataParseError"],["impl From<FromHexError> for MetadataParseError"],["impl From<()> for MetadataParseError"],["impl From<u8> for MetadataParseError"],["impl From<Error> for MetadataParseError"]], -"gsdk":[["impl From<Compact<MemoryInfix>> for MemoryInfix"],["impl From<DecodeError> for Error"],["impl From<Compact<Perbill>> for Perbill"],["impl From<ReplyCode> for ReplyCode"],["impl From<TxError> for Error"],["impl<_0> From<Compact<BitFlags<_0>>> for BitFlags<_0>"],["impl From<Compact<PerU16>> for PerU16"],["impl From<Error> for Error"],["impl From<PublicError> for Error"],["impl From<Compact<MemberRecord>> for MemberRecord"],["impl From<MessageId> for MessageId"],["impl From<Compact<WasmPage>> for WasmPage"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<Compact<Vote>> for Vote"],["impl From<ProgramId> for ProgramId"],["impl From<CodeId> for CodeId"],["impl From<MessageId> for MessageId"],["impl From<Compact<Perquintill>> for Perquintill"],["impl From<Error> for Error"],["impl From<Compact<Percent>> for Percent"],["impl From<Compact<Permill>> for Permill"],["impl From<RuntimeCall> for Value"],["impl From<TxStatus<GearConfig, OnlineClient<GearConfig>>> for Error"],["impl From<MetadataError> for Error"],["impl From<UserMessage> for UserMessage"],["impl From<Error> for Error"],["impl From<Compact<Percent>> for Percent"],["impl From<ProgramId> for ProgramId"],["impl From<Compact<GearPage>> for GearPage"],["impl<M> From<ReservationId> for GasNodeId<M, ReservationId>"],["impl From<UserStoredMessage> for UserStoredMessage"],["impl From<Compact<ReservationNonce>> for ReservationNonce"],["impl From<(Api, PairSigner<GearConfig, Pair>)> for Signer"],["impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Blocks"],["impl From<Compact<FixedU128>> for FixedU128"],["impl From<ReplyDetails> for ReplyDetails"],["impl From<CodeId> for CodeId"],["impl From<Error> for Error"],["impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Events"],["impl<'s> From<&'s TxStatus<GearConfig, OnlineClient<GearConfig>>> for BacktraceStatus"],["impl From<ModuleError> for ModuleError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Compact<Slot>> for Slot"],["impl From<ReservationId> for ReservationId"]], -"gstd":[["impl From<H256> for ActorId"],["impl From<H256> for CodeId"],["impl From<MessageId> for [u8; 32]"],["impl From<CodeId> for CodeId"],["impl From<H256> for MessageId"],["impl From<Error> for Error"],["impl From<ActorId> for ActorId"],["impl From<[u8; 32]> for MessageId"],["impl From<MessageId> for MessageId"],["impl From<CodeId> for [u8; 32]"],["impl From<ActorId> for ActorId"],["impl From<Reservation> for ReservationId"],["impl From<[u8; 32]> for CodeId"],["impl From<CodeId> for CodeId"],["impl From<ActorId> for [u8; 32]"],["impl From<MessageId> for MessageId"],["impl From<[u8; 32]> for ActorId"],["impl From<u64> for ActorId"],["impl From<MessageHandle> for MessageHandle"],["impl<T> From<T> for Mutex<T>"],["impl From<MessageHandle> for MessageHandle"],["impl From<ReservationId> for ReservationId"],["impl<T> From<T> for RwLock<T>"],["impl From<ReservationId> for ReservationId"]], +"gsdk":[["impl From<Compact<MemoryInfix>> for MemoryInfix"],["impl From<DecodeError> for Error"],["impl From<Compact<Perbill>> for Perbill"],["impl From<ReplyCode> for ReplyCode"],["impl From<TxError> for Error"],["impl<_0> From<Compact<BitFlags<_0>>> for BitFlags<_0>"],["impl From<Compact<PerU16>> for PerU16"],["impl From<Error> for Error"],["impl From<PublicError> for Error"],["impl From<Compact<MemberRecord>> for MemberRecord"],["impl From<MessageId> for MessageId"],["impl From<Compact<WasmPage>> for WasmPage"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<Compact<Vote>> for Vote"],["impl From<ProgramId> for ProgramId"],["impl From<CodeId> for CodeId"],["impl From<MessageId> for MessageId"],["impl From<Compact<Perquintill>> for Perquintill"],["impl From<Error> for Error"],["impl From<Compact<Percent>> for Percent"],["impl From<Compact<Permill>> for Permill"],["impl From<RuntimeCall> for Value"],["impl From<TxStatus<GearConfig, OnlineClient<GearConfig>>> for Error"],["impl From<MetadataError> for Error"],["impl From<UserMessage> for UserMessage"],["impl From<Error> for Error"],["impl From<Compact<Percent>> for Percent"],["impl From<ProgramId> for ProgramId"],["impl From<Compact<GearPage>> for GearPage"],["impl<M> From<ReservationId> for GasNodeId<M, ReservationId>"],["impl From<UserStoredMessage> for UserStoredMessage"],["impl From<Compact<ReservationNonce>> for ReservationNonce"],["impl From<(Api, PairSigner<GearConfig, Pair>)> for Signer"],["impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Blocks"],["impl From<Compact<FixedU128>> for FixedU128"],["impl From<ReplyDetails> for ReplyDetails"],["impl From<CodeId> for CodeId"],["impl From<Error> for Error"],["impl From<StreamOf<Result<Block<GearConfig, OnlineClient<GearConfig>>, Error>>> for Events"],["impl<'s> From<&'s TxStatus<GearConfig, OnlineClient<GearConfig>>> for BacktraceStatus"],["impl From<ModuleError> for ModuleError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Compact<Slot>> for Slot"],["impl From<ReservationId> for ReservationId"]], +"gstd":[["impl From<H256> for ActorId"],["impl From<H256> for CodeId"],["impl From<MessageId> for [u8; 32]"],["impl From<CodeId> for CodeId"],["impl From<H256> for MessageId"],["impl From<Error> for Error"],["impl From<ActorId> for ActorId"],["impl From<[u8; 32]> for MessageId"],["impl From<MessageId> for MessageId"],["impl From<CodeId> for [u8; 32]"],["impl From<ActorId> for ActorId"],["impl From<Reservation> for ReservationId"],["impl From<[u8; 32]> for CodeId"],["impl From<CodeId> for CodeId"],["impl From<ActorId> for [u8; 32]"],["impl From<MessageId> for MessageId"],["impl From<[u8; 32]> for ActorId"],["impl From<u64> for ActorId"],["impl From<MessageHandle> for MessageHandle"],["impl<T> From<T> for Mutex<T>"],["impl From<MessageHandle> for MessageHandle"],["impl From<ReservationId> for ReservationId"],["impl<T> From<T> for RwLock<T>"],["impl From<ReservationId> for ReservationId"]], "gtest":[["impl From<Error> for TestError"],["impl From<ExtError> for TestError"],["impl From<(WasmPage, WasmPage)> for TestError"],["impl<ID1, ID2, T> From<(ID1, ID2, T)> for Logwhere\n ID1: Into<ProgramIdWrapper>,\n ID2: Into<ProgramIdWrapper>,\n T: AsRef<[u8]>,"],["impl From<StoredMessage> for CoreLog"],["impl From<MemoryError> for TestError"],["impl<ID, T> From<(ID, T)> for Logwhere\n ID: Into<ProgramIdWrapper>,\n T: AsRef<[u8]>,"],["impl From<String> for TestError"]], "pallet_gear":[["impl<T: Config> From<Error<T>> for &'static str"],["impl<T: Config> From<MemoryWeights<T>> for PageCosts"],["impl<T: Config> From<Event<T>> for ()"],["impl<T: Config> From<ExtManager<T>> for QueuePostProcessingData"],["impl<T: Config> From<Error<T>> for DispatchError"]], "pallet_gear_gas":[["impl<T: Config> From<Error<T>> for DispatchError"],["impl<T: Config> From<Error<T>> for &'static str"]], diff --git a/pr-3467/implementors/gear_core_backend/error/trait.BackendAllocSyscallError.js b/pr-3467/implementors/gear_core_backend/error/trait.BackendAllocSyscallError.js index 6fbcf0e61bc..b75b309bef2 100644 --- a/pr-3467/implementors/gear_core_backend/error/trait.BackendAllocSyscallError.js +++ b/pr-3467/implementors/gear_core_backend/error/trait.BackendAllocSyscallError.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"gear_core_processor":[["impl BackendAllocSyscallError for AllocExtError"]] +"gear_core_processor":[["impl BackendAllocSyscallError for AllocExtError"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/pr-3467/implementors/gear_core_backend/error/trait.BackendSyscallError.js b/pr-3467/implementors/gear_core_backend/error/trait.BackendSyscallError.js index 4e3ada4ade6..e026b877955 100644 --- a/pr-3467/implementors/gear_core_backend/error/trait.BackendSyscallError.js +++ b/pr-3467/implementors/gear_core_backend/error/trait.BackendSyscallError.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"gear_core_processor":[["impl BackendSyscallError for UnrecoverableExtError"]] +"gear_core_processor":[["impl BackendSyscallError for UnrecoverableExtError"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/pr-3467/implementors/gear_core_backend/trait.BackendExternalities.js b/pr-3467/implementors/gear_core_backend/trait.BackendExternalities.js index c23f8a7029b..7c5a3bfec01 100644 --- a/pr-3467/implementors/gear_core_backend/trait.BackendExternalities.js +++ b/pr-3467/implementors/gear_core_backend/trait.BackendExternalities.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"gear_core_processor":[["impl BackendExternalities for Ext"]] +"gear_core_processor":[["impl BackendExternalities for Ext"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/pr-3467/index.html b/pr-3467/index.html index 9c5c508c1b3..71940d7c819 100644 --- a/pr-3467/index.html +++ b/pr-3467/index.html @@ -1 +1 @@ -Index of crates
\ No newline at end of file +Index of crates
\ No newline at end of file diff --git a/pr-3467/pallet_gear_rpc/trait.GearRuntimeApi.html b/pr-3467/pallet_gear_rpc/trait.GearRuntimeApi.html index ef895738934..86462eb7a13 100644 --- a/pr-3467/pallet_gear_rpc/trait.GearRuntimeApi.html +++ b/pr-3467/pallet_gear_rpc/trait.GearRuntimeApi.html @@ -1,11 +1,11 @@ -GearRuntimeApi in pallet_gear_rpc - Rust
pub trait GearRuntimeApi<Block>: Core<Block>where
+GearRuntimeApi in pallet_gear_rpc - Rust
pub trait GearRuntimeApi<Block>: Core<Block>where
     Block: Block,{
 
Show 18 methods // Provided methods fn calculate_gas_info( &self, __runtime_api_at_param__: <Block as Block>::Hash, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, @@ -17,7 +17,7 @@ __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, @@ -88,7 +88,7 @@ &self, __runtime_api_at_param__: <Block as Block>::Hash, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, @@ -99,7 +99,7 @@ __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, @@ -148,52 +148,52 @@ context: ExecutionContext, program_id: H256 ) -> Result<Result<H256, Vec<u8, Global>>, ApiError> { ... } -
}

Provided Methods§

}

Provided Methods§

fn calculate_gas_info( &self, __runtime_api_at_param__: <Block as Block>::Hash, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, initial_gas: Option<u64>, allowance_multiplier: Option<u64> -) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

source

fn calculate_gas_info_with_context( +) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

fn calculate_gas_info_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, initial_gas: Option<u64>, allowance_multiplier: Option<u64> -) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

source

fn gear_run_extrinsic( +) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

fn gear_run_extrinsic( &self, __runtime_api_at_param__: <Block as Block>::Hash, max_gas: Option<u64> ) -> Result<<Block as Block>::Extrinsic, ApiError>

Generate inherent-like extrinsic that runs message queue processing.

-
source

fn gear_run_extrinsic_with_context( +

fn gear_run_extrinsic_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, max_gas: Option<u64> ) -> Result<<Block as Block>::Extrinsic, ApiError>

Generate inherent-like extrinsic that runs message queue processing.

-
source

fn read_state( +

fn read_state( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256, payload: Vec<u8, Global>, allowance_multiplier: Option<u64> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

source

fn read_state_with_context( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

fn read_state_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, program_id: H256, payload: Vec<u8, Global>, allowance_multiplier: Option<u64> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

source

fn read_state_using_wasm( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

fn read_state_using_wasm( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256, @@ -202,7 +202,7 @@ wasm: Vec<u8, Global>, argument: Option<Vec<u8, Global>>, allowance_multiplier: Option<u64> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

source

fn read_state_using_wasm_with_context( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

fn read_state_using_wasm_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, @@ -212,48 +212,48 @@ wasm: Vec<u8, Global>, argument: Option<Vec<u8, Global>>, allowance_multiplier: Option<u64> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

source

fn read_metahash( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

fn read_metahash( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256, allowance_multiplier: Option<u64> -) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

source

fn read_metahash_with_context( +) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

fn read_metahash_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, program_id: H256, allowance_multiplier: Option<u64> -) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

source

fn calculate_gas_info_before_version_2( +) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

fn calculate_gas_info_before_version_2( &self, __runtime_api_at_param__: <Block as Block>::Hash, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, initial_gas: Option<u64> -) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn calculate_gas_info_before_version_2_with_context( +) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

👎Deprecated

fn calculate_gas_info_before_version_2_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8, Global>, value: u128, allow_other_panics: bool, initial_gas: Option<u64> -) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_state_before_version_2( +) -> Result<Result<GasInfo, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_state_before_version_2( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256, payload: Vec<u8, Global> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_state_before_version_2_with_context( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_state_before_version_2_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, program_id: H256, payload: Vec<u8, Global> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_state_using_wasm_before_version_2( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_state_using_wasm_before_version_2( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256, @@ -261,7 +261,7 @@ fn_name: Vec<u8, Global>, wasm: Vec<u8, Global>, argument: Option<Vec<u8, Global>> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_state_using_wasm_before_version_2_with_context( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_state_using_wasm_before_version_2_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, @@ -270,14 +270,14 @@ fn_name: Vec<u8, Global>, wasm: Vec<u8, Global>, argument: Option<Vec<u8, Global>> -) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_metahash_before_version_2( +) -> Result<Result<Vec<u8, Global>, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_metahash_before_version_2( &self, __runtime_api_at_param__: <Block as Block>::Hash, program_id: H256 -) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

👎Deprecated
source

fn read_metahash_before_version_2_with_context( +) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

👎Deprecated

fn read_metahash_before_version_2_with_context( &self, __runtime_api_at_param__: <Block as Block>::Hash, context: ExecutionContext, program_id: H256 -) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

👎Deprecated

Trait Implementations§

source§

impl<Block> RuntimeApiInfo for dyn GearApi<Block>where - Block: Block,

source§

const ID: [u8; 8] = _

The identifier of the runtime api.
source§

const VERSION: u32 = 2u32

The version of the runtime api.

Implementors§

\ No newline at end of file +) -> Result<Result<H256, Vec<u8, Global>>, ApiError>

👎Deprecated

Trait Implementations§

§

impl<Block> RuntimeApiInfo for dyn GearApi<Block>where + Block: Block,

§

const ID: [u8; 8] = _

The identifier of the runtime api.
§

const VERSION: u32 = 2u32

The version of the runtime api.

Implementors§

\ No newline at end of file diff --git a/pr-3467/pallet_gear_rpc_runtime_api/enum.HandleKind.html b/pr-3467/pallet_gear_rpc_runtime_api/enum.HandleKind.html index 192482459df..f3ae0e81961 100644 --- a/pr-3467/pallet_gear_rpc_runtime_api/enum.HandleKind.html +++ b/pr-3467/pallet_gear_rpc_runtime_api/enum.HandleKind.html @@ -1,10 +1,10 @@ -HandleKind in pallet_gear_rpc_runtime_api - Rust
pub enum HandleKind {
+HandleKind in pallet_gear_rpc_runtime_api - Rust
pub enum HandleKind {
     Init(Vec<u8, Global>),
     InitByHash(CodeId),
     Handle(ProgramId),
     Reply(MessageId, ReplyCode),
     Signal(MessageId, SignalCode),
-}

Variants§

§

Init(Vec<u8, Global>)

§

InitByHash(CodeId)

§

Handle(ProgramId)

§

Reply(MessageId, ReplyCode)

§

Signal(MessageId, SignalCode)

Trait Implementations§

source§

impl Clone for HandleKind

source§

fn clone(&self) -> HandleKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for HandleKind

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Decode for HandleKind

source§

fn decode<__CodecInputEdqy>( +}

Variants§

§

Init(Vec<u8, Global>)

§

InitByHash(CodeId)

§

Handle(ProgramId)

§

Reply(MessageId, ReplyCode)

§

Signal(MessageId, SignalCode)

Trait Implementations§

§

impl Clone for HandleKind

§

fn clone(&self) -> HandleKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for HandleKind

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Decode for HandleKind

§

fn decode<__CodecInputEdqy>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<HandleKind, Error>where __CodecInputEdqy: Input,

Attempt to deserialise the value from input.
§

fn decode_into<I>( @@ -12,12 +12,12 @@ dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>where I: Input,

Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
§

fn skip<I>(input: &mut I) -> Result<(), Error>where - I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Encode for HandleKind

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy>( + I: Input,

Attempt to skip the encoded value from input. Read more
§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
§

impl Encode for HandleKind

§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
§

fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )where __CodecOutputEdqy: Output + ?Sized,

Convert self to a slice and append it to the destination.
§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
§

fn using_encoded<R, F>(&self, f: F) -> Rwhere - F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl EncodeLike<HandleKind> for HandleKind

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere + F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
§

impl EncodeLike<HandleKind> for HandleKind

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for Twhere diff --git a/pr-3467/settings.html b/pr-3467/settings.html index 8bc56aca4aa..5775d180dee 100644 --- a/pr-3467/settings.html +++ b/pr-3467/settings.html @@ -1 +1 @@ -Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file +Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file diff --git a/pr-3467/src/gclient/api/calls.rs.html b/pr-3467/src/gclient/api/calls.rs.html index c4bfaba68db..06bc2ce4032 100644 --- a/pr-3467/src/gclient/api/calls.rs.html +++ b/pr-3467/src/gclient/api/calls.rs.html @@ -1363,10 +1363,10 @@
use super::{GearApi, Result}; use crate::{api::storage::account_id::IntoAccountId32, utils, Error}; use gear_core::{ - gas::LockId, - ids::*, - memory::PageBuf, - pages::{GearPage, PageNumber, PageU32Size, GEAR_PAGE_SIZE, WASM_PAGE_SIZE}, + gas::LockId, + ids::*, + memory::PageBuf, + pages::{GearPage, PageNumber, PageU32Size, GEAR_PAGE_SIZE, WASM_PAGE_SIZE}, }; use gear_utils::{MemoryPageDump, ProgramMemoryDump}; use gsdk::{ @@ -1409,7 +1409,7 @@ /// `at_block_hash`. pub async fn original_code_at( &self, - code_id: CodeId, + code_id: CodeId, at_block_hash: Option<H256>, ) -> Result<Vec<u8>> { self.0 @@ -1423,7 +1423,7 @@ /// `at_block_hash`. pub async fn program_at( &self, - program_id: ProgramId, + program_id: ProgramId, at_block_hash: Option<H256>, ) -> Result<ActiveProgram<u32>> { self.0 @@ -1440,7 +1440,7 @@ /// extrinsic. /// /// This function returns a hash of the block with the transfer transaction. - pub async fn transfer(&self, destination: ProgramId, value: u128) -> Result<H256> { + pub async fn transfer(&self, destination: ProgramId, value: u128) -> Result<H256> { let destination: [u8; 32] = destination.into(); let tx = self.0.calls.transfer(destination, value).await?; @@ -1499,12 +1499,12 @@ /// a new program and initialize it. pub async fn create_program_bytes( &self, - code_id: CodeId, + code_id: CodeId, salt: impl AsRef<[u8]>, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { let salt = salt.as_ref().to_vec(); let payload = payload.as_ref().to_vec(); @@ -1537,8 +1537,8 @@ /// useful when deploying a multi-program dApp. pub async fn create_program_bytes_batch( &self, - args: impl IntoIterator<Item = (CodeId, impl AsRef<[u8]>, impl AsRef<[u8]>, u64, u128)>, - ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { + args: impl IntoIterator<Item = (CodeId, impl AsRef<[u8]>, impl AsRef<[u8]>, u64, u128)>, + ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { let calls: Vec<_> = args .into_iter() .map(|(code_id, salt, payload, gas_limit, value)| { @@ -1591,12 +1591,12 @@ /// program and initialize it. pub async fn create_program( &self, - code_id: CodeId, + code_id: CodeId, salt: impl AsRef<[u8]>, payload: impl Encode, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { self.create_program_bytes(code_id, salt, payload.encode(), gas_limit, value) .await } @@ -1607,10 +1607,10 @@ /// `src_block_hash` if it is specified or the most recent one. pub async fn migrate_program( &self, - src_program_id: ProgramId, + src_program_id: ProgramId, src_block_hash: Option<H256>, dest_node_api: &GearApi, - ) -> Result<ProgramId> { + ) -> Result<ProgramId> { if dest_node_api.0.api().gprog(src_program_id).await.is_ok() { return Err(Error::ProgramAlreadyExists( src_program_id.as_ref().encode_hex(), @@ -1874,7 +1874,7 @@ /// time of `block_hash` if presented or the most recent block. pub async fn save_program_memory_dump_at<P: AsRef<Path>>( &self, - program_id: ProgramId, + program_id: ProgramId, block_hash: Option<H256>, file_path: P, ) -> Result { @@ -1934,7 +1934,7 @@ /// Replace entire program memory with one saved earlier in gclient/gtest pub async fn replace_program_memory<P: AsRef<Path>>( &self, - program_id: ProgramId, + program_id: ProgramId, file_path: P, ) -> Result { let memory_dump = ProgramMemoryDump::load_from_file(file_path); @@ -1975,7 +1975,7 @@ /// /// - [`claim_value_batch`](Self::claim_value_batch) function claims a batch /// of values from the mailbox. - pub async fn claim_value(&self, message_id: MessageId) -> Result<(u128, H256)> { + pub async fn claim_value(&self, message_id: MessageId) -> Result<(u128, H256)> { let value = self .get_mailbox_message(message_id) .await? @@ -2005,7 +2005,7 @@ /// processing multiple replies in the mailbox at once. pub async fn claim_value_batch( &self, - args: impl IntoIterator<Item = MessageId> + Clone, + args: impl IntoIterator<Item = MessageId> + Clone, ) -> Result<(Vec<Result<u128>>, H256)> { let message_ids: Vec<_> = args.clone().into_iter().collect(); @@ -2073,11 +2073,11 @@ /// sends a batch of messages. pub async fn send_message_bytes( &self, - destination: ProgramId, + destination: ProgramId, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128, - ) -> Result<(MessageId, H256)> { + ) -> Result<(MessageId, H256)> { let payload = payload.as_ref().to_vec(); let tx = self @@ -2109,8 +2109,8 @@ /// to one program. pub async fn send_message_bytes_batch( &self, - args: impl IntoIterator<Item = (ProgramId, impl AsRef<[u8]>, u64, u128)>, - ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { + args: impl IntoIterator<Item = (ProgramId, impl AsRef<[u8]>, u64, u128)>, + ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { let calls: Vec<_> = args .into_iter() .map(|(destination, payload, gas_limit, value)| { @@ -2155,11 +2155,11 @@ /// message with encoded `payload`. pub async fn send_message( &self, - destination: ProgramId, + destination: ProgramId, payload: impl Encode, gas_limit: u64, value: u128, - ) -> Result<(MessageId, H256)> { + ) -> Result<(MessageId, H256)> { self.send_message_bytes(destination, payload.encode(), gas_limit, value) .await } @@ -2185,11 +2185,11 @@ /// a batch of replies. pub async fn send_reply_bytes( &self, - reply_to_id: MessageId, + reply_to_id: MessageId, payload: impl AsRef<[u8]>, gas_limit: u64, value: u128, - ) -> Result<(MessageId, u128, H256)> { + ) -> Result<(MessageId, u128, H256)> { let payload = payload.as_ref().to_vec(); let data = self.get_mailbox_message(reply_to_id).await?; @@ -2230,8 +2230,8 @@ /// program id is also returned in the resulting tuple. pub async fn send_reply_bytes_batch( &self, - args: impl IntoIterator<Item = (MessageId, impl AsRef<[u8]>, u64, u128)> + Clone, - ) -> Result<(Vec<Result<(MessageId, ProgramId, u128)>>, H256)> { + args: impl IntoIterator<Item = (MessageId, impl AsRef<[u8]>, u64, u128)> + Clone, + ) -> Result<(Vec<Result<(MessageId, ProgramId, u128)>>, H256)> { let message_ids: Vec<_> = args.clone().into_iter().map(|(mid, _, _, _)| mid).collect(); let messages = futures::future::try_join_all( @@ -2295,11 +2295,11 @@ /// with encoded `payload`. pub async fn send_reply( &self, - reply_to_id: MessageId, + reply_to_id: MessageId, payload: impl Encode, gas_limit: u64, value: u128, - ) -> Result<(MessageId, u128, H256)> { + ) -> Result<(MessageId, u128, H256)> { self.send_reply_bytes(reply_to_id, payload.encode(), gas_limit, value) .await } @@ -2321,7 +2321,7 @@ /// from a previously uploaded code and initializes it. /// - [`upload_program`](Self::upload_program) function uploads a new /// program and initialize it. - pub async fn upload_code(&self, code: impl AsRef<[u8]>) -> Result<(CodeId, H256)> { + pub async fn upload_code(&self, code: impl AsRef<[u8]>) -> Result<(CodeId, H256)> { let tx = self.0.calls.upload_code(code.as_ref().to_vec()).await?; for event in tx.wait_for_success().await?.iter() { @@ -2346,7 +2346,7 @@ pub async fn upload_code_batch( &self, args: impl IntoIterator<Item = impl AsRef<[u8]>>, - ) -> Result<(Vec<Result<CodeId>>, H256)> { + ) -> Result<(Vec<Result<CodeId>>, H256)> { let calls: Vec<_> = args .into_iter() .map(|code| { @@ -2391,7 +2391,7 @@ /// /// Works with absolute and relative paths (relative to the root dir of the /// repo). - pub async fn upload_code_by_path(&self, path: impl AsRef<Path>) -> Result<(CodeId, H256)> { + pub async fn upload_code_by_path(&self, path: impl AsRef<Path>) -> Result<(CodeId, H256)> { let code = utils::code_from_os(path)?; self.upload_code(code).await } @@ -2430,7 +2430,7 @@ payload: impl AsRef<[u8]>, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { let code = code.as_ref().to_vec(); let salt = salt.as_ref().to_vec(); let payload = payload.as_ref().to_vec(); @@ -2473,7 +2473,7 @@ u128, ), >, - ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { + ) -> Result<(Vec<Result<(MessageId, ProgramId)>>, H256)> { let calls: Vec<_> = args .into_iter() .map(|(code, salt, payload, gas_limit, value)| { @@ -2530,7 +2530,7 @@ payload: impl AsRef<[u8]>, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { let code = utils::code_from_os(path)?; self.upload_program_bytes(code, salt, payload, gas_limit, value) .await @@ -2552,7 +2552,7 @@ payload: impl Encode, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { self.upload_program_bytes(code, salt, payload.encode(), gas_limit, value) .await } @@ -2572,7 +2572,7 @@ payload: impl Encode, gas_limit: u64, value: u128, - ) -> Result<(MessageId, ProgramId, H256)> { + ) -> Result<(MessageId, ProgramId, H256)> { let code = utils::code_from_os(path)?; self.upload_program(code, salt, payload, gas_limit, value) .await diff --git a/pr-3467/src/gclient/api/listener/mod.rs.html b/pr-3467/src/gclient/api/listener/mod.rs.html index 8e0eb621677..b27133b7a5c 100644 --- a/pr-3467/src/gclient/api/listener/mod.rs.html +++ b/pr-3467/src/gclient/api/listener/mod.rs.html @@ -340,8 +340,8 @@ use crate::{Error, Result}; use async_trait::async_trait; -use gear_core::ids::MessageId; -use gear_core_errors::ReplyCode; +use gear_core::ids::MessageId; +use gear_core_errors::ReplyCode; use gsdk::metadata::runtime_types::{ gear_common::event::DispatchStatus as GenDispatchStatus, gear_core::{ @@ -436,7 +436,7 @@ ) -> Result<Vec<T>>; /// Check whether the message identified by `message_id` has been processed. - async fn message_processed(&mut self, message_id: MessageId) -> Result<DispatchStatus> { + async fn message_processed(&mut self, message_id: MessageId) -> Result<DispatchStatus> { let message_id: GenMId = message_id.into(); self.proc(|e| { @@ -456,8 +456,8 @@ /// `message_ids` has been processed. async fn message_processed_batch( &mut self, - message_ids: impl IntoIterator<Item = MessageId>, - ) -> Result<Vec<(MessageId, DispatchStatus)>> { + message_ids: impl IntoIterator<Item = MessageId>, + ) -> Result<Vec<(MessageId, DispatchStatus)>> { let message_ids: Vec<GenMId> = message_ids.into_iter().map(Into::into).collect(); Ok(self @@ -496,8 +496,8 @@ /// error message (otherwise), and an associated value. async fn reply_bytes_on( &mut self, - message_id: MessageId, - ) -> Result<(MessageId, Result<Vec<u8>, String>, u128)> { + message_id: MessageId, + ) -> Result<(MessageId, Result<Vec<u8>, String>, u128)> { let message_id: GenMId = message_id.into(); self.proc(|e| { @@ -534,7 +534,7 @@ /// This function returns an error message in case of an error. It is needed /// only due to the possibility of a message's /// [`NotExecuted`](DispatchStatus::NotExecuted) state. - async fn err_or_succeed(&mut self, message_id: MessageId) -> Result<Option<String>> { + async fn err_or_succeed(&mut self, message_id: MessageId) -> Result<Option<String>> { let message_id: GenMId = message_id.into(); self.proc(|e| match e { @@ -574,8 +574,8 @@ /// of an error. async fn err_or_succeed_batch( &mut self, - message_ids: impl IntoIterator<Item = MessageId>, - ) -> Result<Vec<(MessageId, Option<String>)>> { + message_ids: impl IntoIterator<Item = MessageId>, + ) -> Result<Vec<(MessageId, Option<String>)>> { let message_ids: Vec<GenMId> = message_ids.into_iter().map(Into::into).collect(); Ok(self diff --git a/pr-3467/src/gclient/api/rpc.rs.html b/pr-3467/src/gclient/api/rpc.rs.html index 4292b4b4af4..0454205fdfb 100644 --- a/pr-3467/src/gclient/api/rpc.rs.html +++ b/pr-3467/src/gclient/api/rpc.rs.html @@ -462,8 +462,8 @@ #![allow(clippy::too_many_arguments)] use crate::{api::Result, GearApi}; -use gear_core::ids::{CodeId, MessageId, ProgramId}; -use gsdk::{ext::sp_core::H256, GasInfo}; +use gear_core::ids::{CodeId, MessageId, ProgramId}; +use gsdk::{ext::sp_core::H256, GasInfo}; use parity_scale_codec::{Decode, Encode}; use std::path::Path; @@ -488,11 +488,11 @@ pub async fn calculate_create_gas( &self, origin: Option<H256>, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.calculate_create_gas_at(origin, code_id, payload, value, allow_other_panics, None) .await } @@ -502,12 +502,12 @@ pub async fn calculate_create_gas_at( &self, origin: Option<H256>, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256>, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.0 .rpc .calculate_create_gas(origin, code_id, payload, value, allow_other_panics, at) @@ -537,7 +537,7 @@ payload: Vec<u8>, value: u128, allow_other_panics: bool, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.calculate_upload_gas_at(origin, code, payload, value, allow_other_panics, None) .await } @@ -552,7 +552,7 @@ value: u128, allow_other_panics: bool, at: Option<H256>, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.0 .rpc .calculate_upload_gas(origin, code, payload, value, allow_other_panics, at) @@ -576,11 +576,11 @@ pub async fn calculate_handle_gas( &self, origin: Option<H256>, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.calculate_handle_gas_at( origin, destination, @@ -597,12 +597,12 @@ pub async fn calculate_handle_gas_at( &self, origin: Option<H256>, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256>, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.0 .rpc .calculate_handle_gas(origin, destination, payload, value, allow_other_panics, at) @@ -629,11 +629,11 @@ pub async fn calculate_reply_gas( &self, origin: Option<H256>, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.calculate_reply_gas_at(origin, message_id, payload, value, allow_other_panics, None) .await } @@ -643,12 +643,12 @@ pub async fn calculate_reply_gas_at( &self, origin: Option<H256>, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, at: Option<H256>, - ) -> Result<GasInfo> { + ) -> Result<GasInfo> { self.0 .rpc .calculate_reply_gas(origin, message_id, payload, value, allow_other_panics, at) @@ -659,7 +659,7 @@ /// Read the program's state as a byte vector. pub async fn read_state_bytes( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, ) -> Result<Vec<u8>> { self.read_state_bytes_at(program_id, payload, None).await @@ -669,7 +669,7 @@ /// program's state at the block identified by its hash. pub async fn read_state_bytes_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, at: Option<H256>, ) -> Result<Vec<u8>> { @@ -684,7 +684,7 @@ /// Read the program's state as decoded data. pub async fn read_state<D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, ) -> Result<D> { self.read_state_at(program_id, payload, None).await @@ -694,7 +694,7 @@ /// at the block identified by its hash. pub async fn read_state_at<D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, at: Option<H256>, ) -> Result<D> { @@ -705,7 +705,7 @@ /// Read the program's state as a byte vector using a meta Wasm. pub async fn read_state_bytes_using_wasm( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -718,7 +718,7 @@ /// Same as [`read_state_bytes_using_wasm`](Self::read_state_bytes_using_wasm), but reads the program's state at the block identified by its hash. pub async fn read_state_bytes_using_wasm_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -743,7 +743,7 @@ /// Read the program's state as decoded data using a meta Wasm. pub async fn read_state_using_wasm<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -757,7 +757,7 @@ /// reads the program's state at the block identified by its hash. pub async fn read_state_using_wasm_at<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, wasm: Vec<u8>, @@ -782,7 +782,7 @@ /// `path`. pub async fn read_state_bytes_using_wasm_by_path( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -797,7 +797,7 @@ /// Same as [`read_state_using_wasm_by_path`](Self::read_state_using_wasm_by_path), but reads the program's state at the block identified by its hash. pub async fn read_state_bytes_using_wasm_by_path_at( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -819,7 +819,7 @@ /// `path`. pub async fn read_state_using_wasm_by_path<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -832,7 +832,7 @@ /// Same as [`read_state_using_wasm_by_path`](Self::read_state_using_wasm_by_path), but reads the program's state at the block identified by its hash. pub async fn read_state_using_wasm_by_path_at<E: Encode, D: Decode>( &self, - program_id: ProgramId, + program_id: ProgramId, payload: Vec<u8>, fn_name: &str, path: impl AsRef<Path>, @@ -854,13 +854,13 @@ } /// Read the program's metahash. - pub async fn read_metahash(&self, program_id: ProgramId) -> Result<H256> { + pub async fn read_metahash(&self, program_id: ProgramId) -> Result<H256> { self.read_metahash_at(program_id, None).await } /// Same as [`read_metahash`](Self::read_metahash), but read the program's /// metahash at the block identified by its hash. - pub async fn read_metahash_at(&self, program_id: ProgramId, at: Option<H256>) -> Result<H256> { + pub async fn read_metahash_at(&self, program_id: ProgramId, at: Option<H256>) -> Result<H256> { self.0 .api() .read_meta_hash(H256(program_id.into()), at) diff --git a/pr-3467/src/gclient/api/storage/account_id.rs.html b/pr-3467/src/gclient/api/storage/account_id.rs.html index af61affedbc..1e3cb095c3a 100644 --- a/pr-3467/src/gclient/api/storage/account_id.rs.html +++ b/pr-3467/src/gclient/api/storage/account_id.rs.html @@ -65,7 +65,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. -use gear_core::ids::ProgramId; +use gear_core::ids::ProgramId; use gsdk::ext::sp_runtime::AccountId32; /// A trait for convenient conversion into Substrate's AccountId32. @@ -85,13 +85,13 @@ } } -impl IntoAccountId32 for ProgramId { +impl IntoAccountId32 for ProgramId { fn into_account_id(self) -> AccountId32 { AccountId32::new(self.into_bytes()) } } -impl IntoAccountId32 for &ProgramId { +impl IntoAccountId32 for &ProgramId { fn into_account_id(self) -> AccountId32 { AccountId32::new(self.into_bytes()) } diff --git a/pr-3467/src/gclient/api/storage/mod.rs.html b/pr-3467/src/gclient/api/storage/mod.rs.html index d6d0e6e0937..94c152f86f3 100644 --- a/pr-3467/src/gclient/api/storage/mod.rs.html +++ b/pr-3467/src/gclient/api/storage/mod.rs.html @@ -169,7 +169,7 @@ use super::{GearApi, Result}; use crate::Error; use account_id::IntoAccountId32; -use gear_core::{ids::*, message::UserStoredMessage}; +use gear_core::{ids::*, message::UserStoredMessage}; use gsdk::{ ext::sp_core::{crypto::Ss58Codec, H256}, metadata::runtime_types::{ @@ -182,8 +182,8 @@ /// Get a message identified by `message_id` from the mailbox. pub async fn get_mailbox_message( &self, - message_id: MessageId, - ) -> Result<Option<(UserStoredMessage, Interval<u32>)>> { + message_id: MessageId, + ) -> Result<Option<(UserStoredMessage, Interval<u32>)>> { self.get_mailbox_account_message(self.0.account_id(), message_id) .await } @@ -193,8 +193,8 @@ pub async fn get_mailbox_account_message( &self, account_id: impl IntoAccountId32, - message_id: MessageId, - ) -> Result<Option<(UserStoredMessage, Interval<u32>)>> { + message_id: MessageId, + ) -> Result<Option<(UserStoredMessage, Interval<u32>)>> { let data: Option<(user::UserStoredMessage, Interval<u32>)> = self .0 .api() @@ -209,7 +209,7 @@ &self, account_id: impl IntoAccountId32, count: u32, - ) -> Result<Vec<(UserStoredMessage, Interval<u32>)>> { + ) -> Result<Vec<(UserStoredMessage, Interval<u32>)>> { let data = self .0 .api() @@ -222,7 +222,7 @@ pub async fn get_mailbox_messages( &self, count: u32, - ) -> Result<Vec<(UserStoredMessage, Interval<u32>)>> { + ) -> Result<Vec<(UserStoredMessage, Interval<u32>)>> { self.get_mailbox_account_messages(self.0.account_id(), count) .await } diff --git a/pr-3467/src/gear_core_processor/common.rs.html b/pr-3467/src/gear_core_processor/common.rs.html index 7bb4d000dee..70de59f455f 100644 --- a/pr-3467/src/gear_core_processor/common.rs.html +++ b/pr-3467/src/gear_core_processor/common.rs.html @@ -633,8 +633,8 @@ reservation::{GasReservationMap, GasReserver}, }; use gear_core_backend::{ - env::SystemEnvironmentError, - error::{SystemTerminationReason, TrapExplanation}, + env::SystemEnvironmentError, + error::{SystemTerminationReason, TrapExplanation}, }; use gear_core_errors::{SignalCode, SimpleExecutionError}; use scale_info::scale::{self, Decode, Encode}; @@ -645,7 +645,7 @@ /// Successful dispatch Success, /// Trap dispatch. - Trap(TrapExplanation), + Trap(TrapExplanation), /// Wait dispatch. Wait(Option<u32>, MessageWaitedType), /// Exit dispatch. @@ -1058,7 +1058,7 @@ Environment, /// Trap explanation #[display(fmt = "{_0}")] - Trap(TrapExplanation), + Trap(TrapExplanation), } impl ActorExecutionErrorReplyReason { @@ -1089,11 +1089,11 @@ PrepareMemory(SystemPrepareMemoryError), /// Environment error #[display(fmt = "Backend error: {_0}")] - Environment(SystemEnvironmentError), + Environment(SystemEnvironmentError), /// Termination reason #[from] #[display(fmt = "Syscall function error: {_0}")] - UndefinedTerminationReason(SystemTerminationReason), + UndefinedTerminationReason(SystemTerminationReason), /// Error during `into_ext_info()` call #[display(fmt = "`into_ext_info()` error: {_0}")] IntoExtInfo(MemoryError), diff --git a/pr-3467/src/gear_core_processor/executor.rs.html b/pr-3467/src/gear_core_processor/executor.rs.html index 7b5ace2760f..113d337164d 100644 --- a/pr-3467/src/gear_core_processor/executor.rs.html +++ b/pr-3467/src/gear_core_processor/executor.rs.html @@ -570,13 +570,13 @@ reservation::GasReserver, }; use gear_core_backend::{ - env::{BackendReport, Environment, EnvironmentError}, + env::{BackendReport, Environment, EnvironmentError}, error::{ - ActorTerminationReason, BackendAllocSyscallError, BackendSyscallError, RunFallibleError, - TerminationReason, + ActorTerminationReason, BackendAllocSyscallError, BackendSyscallError, RunFallibleError, + TerminationReason, }, - memory::MemoryWrap, - BackendExternalities, + memory::MemoryWrap, + BackendExternalities, }; use gear_lazy_pages_common::{GlobalsAccessConfig, LazyPagesWeights}; use scale_info::{ @@ -675,11 +675,11 @@ msg_ctx_settings: ContextSettings, ) -> Result<DispatchResult, ExecutionError> where - Ext: ProcessorExternalities + BackendExternalities + 'static, + Ext: ProcessorExternalities + BackendExternalities + 'static, <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError, { let WasmExecutionContext { gas_counter, @@ -780,7 +780,7 @@ }; let (termination, memory, ext) = match execute() { Ok(report) => { - let BackendReport { + let BackendReport { termination_reason, memory_wrap: mut memory, ext, @@ -883,11 +883,11 @@ block_info: BlockInfo, ) -> Result<Vec<u8>, String> where - Ext: ProcessorExternalities + BackendExternalities + 'static, + Ext: ProcessorExternalities + BackendExternalities + 'static, <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError, EP: WasmEntryPoint, { let (program_id, memory_infix) = program_info.unwrap_or_default(); @@ -980,7 +980,7 @@ let (termination, memory, ext) = match f() { Ok(report) => { - let BackendReport { + let BackendReport { termination_reason, memory_wrap, ext, diff --git a/pr-3467/src/gear_core_processor/ext.rs.html b/pr-3467/src/gear_core_processor/ext.rs.html index 682153151e4..8ac2c91e35f 100644 --- a/pr-3467/src/gear_core_processor/ext.rs.html +++ b/pr-3467/src/gear_core_processor/ext.rs.html @@ -1736,11 +1736,11 @@ }; use gear_core_backend::{ error::{ - ActorTerminationReason, BackendAllocSyscallError, BackendSyscallError, RunFallibleError, - TrapExplanation, UndefinedTerminationReason, UnrecoverableExecutionError, - UnrecoverableExtError as UnrecoverableExtErrorCore, UnrecoverableWaitError, + ActorTerminationReason, BackendAllocSyscallError, BackendSyscallError, RunFallibleError, + TrapExplanation, UndefinedTerminationReason, UnrecoverableExecutionError, + UnrecoverableExtError as UnrecoverableExtErrorCore, UnrecoverableWaitError, }, - BackendExternalities, + BackendExternalities, }; use gear_core_errors::{ ExecutionError as FallibleExecutionError, ExtError as FallibleExtErrorCore, MessageError, @@ -1897,25 +1897,25 @@ #[derive(Debug, Clone, Eq, PartialEq, derive_more::From)] pub enum UnrecoverableExtError { /// Basic error - Core(UnrecoverableExtErrorCore), + Core(UnrecoverableExtErrorCore), /// Charge error Charge(ChargeError), } -impl From<UnrecoverableExecutionError> for UnrecoverableExtError { - fn from(err: UnrecoverableExecutionError) -> UnrecoverableExtError { +impl From<UnrecoverableExecutionError> for UnrecoverableExtError { + fn from(err: UnrecoverableExecutionError) -> UnrecoverableExtError { Self::Core(UnrecoverableExtErrorCore::from(err)) } } -impl From<UnrecoverableWaitError> for UnrecoverableExtError { - fn from(err: UnrecoverableWaitError) -> UnrecoverableExtError { +impl From<UnrecoverableWaitError> for UnrecoverableExtError { + fn from(err: UnrecoverableWaitError) -> UnrecoverableExtError { Self::Core(UnrecoverableExtErrorCore::from(err)) } } -impl BackendSyscallError for UnrecoverableExtError { - fn into_termination_reason(self) -> UndefinedTerminationReason { +impl BackendSyscallError for UnrecoverableExtError { + fn into_termination_reason(self) -> UndefinedTerminationReason { match self { UnrecoverableExtError::Core(err) => { ActorTerminationReason::Trap(TrapExplanation::UnrecoverableExt(err)).into() @@ -1924,8 +1924,8 @@ } } - fn into_run_fallible_error(self) -> RunFallibleError { - RunFallibleError::UndefinedTerminationReason(self.into_termination_reason()) + fn into_run_fallible_error(self) -> RunFallibleError { + RunFallibleError::UndefinedTerminationReason(self.into_termination_reason()) } } @@ -1964,7 +1964,7 @@ } } -impl From<FallibleExtError> for RunFallibleError { +impl From<FallibleExtError> for RunFallibleError { fn from(err: FallibleExtError) -> Self { match err { FallibleExtError::Core(err) => RunFallibleError::FallibleExt(err), @@ -1991,7 +1991,7 @@ Alloc(AllocError), } -impl BackendAllocSyscallError for AllocExtError { +impl BackendAllocSyscallError for AllocExtError { type ExtError = UnrecoverableExtError; fn into_backend_error(self) -> Result<Self::ExtError, Self> { @@ -2155,7 +2155,7 @@ } } -impl BackendExternalities for Ext { +impl BackendExternalities for Ext { fn gas_amount(&self) -> GasAmount { self.context.gas_counter.to_amount() } diff --git a/pr-3467/src/gear_core_processor/processing.rs.html b/pr-3467/src/gear_core_processor/processing.rs.html index 7bb3e7e4edf..d046a87cc77 100644 --- a/pr-3467/src/gear_core_processor/processing.rs.html +++ b/pr-3467/src/gear_core_processor/processing.rs.html @@ -588,8 +588,8 @@ reservation::GasReservationState, }; use gear_core_backend::{ - error::{BackendAllocSyscallError, BackendSyscallError, RunFallibleError}, - BackendExternalities, + error::{BackendAllocSyscallError, BackendSyscallError, RunFallibleError}, + BackendExternalities, }; use gear_core_errors::{ErrorReplyReason, SignalCode}; @@ -600,11 +600,11 @@ random_data: (Vec<u8>, u32), ) -> Result<Vec<JournalNote>, SystemExecutionError> where - Ext: ProcessorExternalities + BackendExternalities + 'static, + Ext: ProcessorExternalities + BackendExternalities + 'static, <Ext as Externalities>::AllocError: BackendAllocSyscallError<ExtError = Ext::UnrecoverableError>, - RunFallibleError: From<Ext::FallibleError>, - <Ext as Externalities>::UnrecoverableError: BackendSyscallError, + RunFallibleError: From<Ext::FallibleError>, + <Ext as Externalities>::UnrecoverableError: BackendSyscallError, { use crate::precharge::SuccessfulDispatchResultKind::*; diff --git a/pr-3467/src/gsdk/lib.rs.html b/pr-3467/src/gsdk/lib.rs.html index 6e669f7f949..ca5edf76ba0 100644 --- a/pr-3467/src/gsdk/lib.rs.html +++ b/pr-3467/src/gsdk/lib.rs.html @@ -129,7 +129,7 @@ gas_provider::node::{GasNode, GasNodeId}, ActiveProgram, }; -use gear_core::ids::{MessageId, ReservationId}; +use gear_core::ids::{MessageId, ReservationId}; use parity_scale_codec::Decode; use sp_runtime::AccountId32; use std::collections::HashMap; @@ -169,7 +169,7 @@ pub type BlockNumber = u32; /// Gear gas node id. -pub type GearGasNodeId = GasNodeId<MessageId, ReservationId>; +pub type GearGasNodeId = GasNodeId<MessageId, ReservationId>; /// Gear gas node. pub type GearGasNode = GasNode<AccountId32, GearGasNodeId, u64, u128>; diff --git a/pr-3467/src/gsdk/metadata/impls.rs.html b/pr-3467/src/gsdk/metadata/impls.rs.html index 0fdedb0facb..1af2874962f 100644 --- a/pr-3467/src/gsdk/metadata/impls.rs.html +++ b/pr-3467/src/gsdk/metadata/impls.rs.html @@ -395,67 +395,67 @@ vara_runtime::{RuntimeCall, RuntimeEvent}, }; use core::ops::{Index, IndexMut}; -use gear_core::{ids, message, message::UserMessage}; +use gear_core::{ids, message, message::UserMessage}; use parity_scale_codec::{Decode, Encode}; use subxt::{dynamic::Value, utils::MultiAddress}; type ApiEvent = super::Event; -impl From<ids::MessageId> for generated_ids::MessageId { - fn from(other: ids::MessageId) -> Self { +impl From<ids::MessageId> for generated_ids::MessageId { + fn from(other: ids::MessageId) -> Self { Self(other.into()) } } -impl From<generated_ids::MessageId> for ids::MessageId { +impl From<generated_ids::MessageId> for ids::MessageId { fn from(other: generated_ids::MessageId) -> Self { other.0.into() } } -impl From<ids::ProgramId> for generated_ids::ProgramId { - fn from(other: ids::ProgramId) -> Self { +impl From<ids::ProgramId> for generated_ids::ProgramId { + fn from(other: ids::ProgramId) -> Self { Self(other.into()) } } -impl From<generated_ids::ProgramId> for ids::ProgramId { +impl From<generated_ids::ProgramId> for ids::ProgramId { fn from(other: generated_ids::ProgramId) -> Self { other.0.into() } } -impl From<ids::CodeId> for generated_ids::CodeId { - fn from(other: ids::CodeId) -> Self { +impl From<ids::CodeId> for generated_ids::CodeId { + fn from(other: ids::CodeId) -> Self { Self(other.into()) } } -impl From<generated_ids::CodeId> for ids::CodeId { +impl From<generated_ids::CodeId> for ids::CodeId { fn from(other: generated_ids::CodeId) -> Self { other.0.into() } } -impl From<generated_ids::ReservationId> for ids::ReservationId { +impl From<generated_ids::ReservationId> for ids::ReservationId { fn from(other: generated_ids::ReservationId) -> Self { other.0.into() } } -impl From<generated_core_errors::simple::ReplyCode> for gear_core_errors::ReplyCode { +impl From<generated_core_errors::simple::ReplyCode> for gear_core_errors::ReplyCode { fn from(value: generated_core_errors::simple::ReplyCode) -> Self { Self::decode(&mut value.encode().as_ref()).expect("Incompatible metadata") } } -impl From<generated_message::common::ReplyDetails> for message::ReplyDetails { +impl From<generated_message::common::ReplyDetails> for message::ReplyDetails { fn from(other: generated_message::common::ReplyDetails) -> Self { message::ReplyDetails::new(other.to.into(), other.code.into()) } } -impl From<generated_message::user::UserMessage> for message::UserMessage { +impl From<generated_message::user::UserMessage> for message::UserMessage { fn from(other: generated_message::user::UserMessage) -> Self { message::UserMessage::new( other.id.into(), @@ -469,7 +469,7 @@ } } -impl From<generated_message::user::UserStoredMessage> for message::UserStoredMessage { +impl From<generated_message::user::UserStoredMessage> for message::UserStoredMessage { fn from(other: generated_message::user::UserStoredMessage) -> Self { message::UserStoredMessage::new( other.id.into(), @@ -482,7 +482,7 @@ } } -impl<M> From<generated_ids::ReservationId> for GasNodeId<M, ids::ReservationId> { +impl<M> From<generated_ids::ReservationId> for GasNodeId<M, ids::ReservationId> { fn from(other: generated_ids::ReservationId) -> Self { GasNodeId::Reservation(other.into()) } diff --git a/pr-3467/src/gsdk/rpc.rs.html b/pr-3467/src/gsdk/rpc.rs.html index ab93e90f981..1cdb6387335 100644 --- a/pr-3467/src/gsdk/rpc.rs.html +++ b/pr-3467/src/gsdk/rpc.rs.html @@ -207,7 +207,7 @@ //! Gear API RPC methods use crate::{result::Result, Api, GasInfo}; -use gear_core::ids::{CodeId, MessageId, ProgramId}; +use gear_core::ids::{CodeId, MessageId, ProgramId}; use sp_core::H256; use subxt::rpc_params; @@ -216,7 +216,7 @@ pub async fn calculate_create_gas( &self, origin: H256, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -268,7 +268,7 @@ pub async fn calculate_handle_gas( &self, origin: H256, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -294,7 +294,7 @@ pub async fn calculate_reply_gas( &self, origin: H256, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, diff --git a/pr-3467/src/gsdk/signer/calls.rs.html b/pr-3467/src/gsdk/signer/calls.rs.html index 229d4f1b79d..1add7567dbf 100644 --- a/pr-3467/src/gsdk/signer/calls.rs.html +++ b/pr-3467/src/gsdk/signer/calls.rs.html @@ -224,7 +224,7 @@ }, Error, Result, TxInBlock, }; -use gear_core::ids::*; +use gear_core::ids::*; use sp_runtime::AccountId32; use std::sync::Arc; use subxt::{blocks::ExtrinsicEvents, dynamic::Value}; @@ -256,7 +256,7 @@ /// `pallet_gear::create_program` pub async fn create_program( &self, - code_id: CodeId, + code_id: CodeId, salt: Vec<u8>, payload: Vec<u8>, gas_limit: u64, @@ -278,7 +278,7 @@ } /// `pallet_gear::claim_value` - pub async fn claim_value(&self, message_id: MessageId) -> Result<TxInBlock> { + pub async fn claim_value(&self, message_id: MessageId) -> Result<TxInBlock> { self.0 .run_tx(GearCall::ClaimValue, vec![Value::from_bytes(message_id)]) .await @@ -287,7 +287,7 @@ /// `pallet_gear::send_message` pub async fn send_message( &self, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, gas_limit: u64, value: u128, @@ -309,7 +309,7 @@ /// `pallet_gear::send_reply` pub async fn send_reply( &self, - reply_to_id: MessageId, + reply_to_id: MessageId, payload: Vec<u8>, gas_limit: u64, value: u128, diff --git a/pr-3467/src/gsdk/signer/rpc.rs.html b/pr-3467/src/gsdk/signer/rpc.rs.html index 4d7378ed728..ed73a8d8340 100644 --- a/pr-3467/src/gsdk/signer/rpc.rs.html +++ b/pr-3467/src/gsdk/signer/rpc.rs.html @@ -155,7 +155,7 @@ //! RPC calls with signer use crate::{result::Result, signer::Inner, GasInfo}; -use gear_core::ids::{CodeId, MessageId, ProgramId}; +use gear_core::ids::{CodeId, MessageId, ProgramId}; use sp_core::H256; use std::sync::Arc; @@ -182,7 +182,7 @@ pub async fn calculate_create_gas( &self, origin: Option<H256>, - code_id: CodeId, + code_id: CodeId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -228,7 +228,7 @@ pub async fn calculate_handle_gas( &self, origin: Option<H256>, - destination: ProgramId, + destination: ProgramId, payload: Vec<u8>, value: u128, allow_other_panics: bool, @@ -251,7 +251,7 @@ pub async fn calculate_reply_gas( &self, origin: Option<H256>, - message_id: MessageId, + message_id: MessageId, payload: Vec<u8>, value: u128, allow_other_panics: bool, diff --git a/pr-3467/src/gsdk/signer/storage.rs.html b/pr-3467/src/gsdk/signer/storage.rs.html index a545f0a94ed..477c2e13fb6 100644 --- a/pr-3467/src/gsdk/signer/storage.rs.html +++ b/pr-3467/src/gsdk/signer/storage.rs.html @@ -208,8 +208,8 @@ Api, BlockNumber, Error, GearGasNode, GearGasNodeId, GearPages, Result, }; use gear_core::{ - ids::*, - memory::{PageBuf, PageBufInner}, + ids::*, + memory::{PageBuf, PageBufInner}, }; use hex::ToHex; use parity_scale_codec::Encode; @@ -291,7 +291,7 @@ // pallet-gear-program impl SignerStorage { /// Writes `InstrumentedCode` length into storage at `CodeId` - pub async fn set_code_len_storage(&self, code_id: CodeId, code_len: u32) -> EventsResult { + pub async fn set_code_len_storage(&self, code_id: CodeId, code_len: u32) -> EventsResult { let addr = Api::storage( GearProgramStorage::CodeLenStorage, vec![Value::from_bytes(code_id)], @@ -300,7 +300,7 @@ } /// Writes `InstrumentedCode` into storage at `CodeId` - pub async fn set_code_storage(&self, code_id: CodeId, code: &InstrumentedCode) -> EventsResult { + pub async fn set_code_storage(&self, code_id: CodeId, code: &InstrumentedCode) -> EventsResult { let addr = Api::storage( GearProgramStorage::CodeStorage, vec![Value::from_bytes(code_id)], @@ -311,7 +311,7 @@ /// Writes `GearPages` into storage at `program_id` pub async fn set_gpages( &self, - program_id: ProgramId, + program_id: ProgramId, memory_infix: u32, program_pages: &GearPages, ) -> EventsResult { @@ -336,7 +336,7 @@ /// Writes `ActiveProgram` into storage at `program_id` pub async fn set_gprog( &self, - program_id: ProgramId, + program_id: ProgramId, program: ActiveProgram<BlockNumber>, ) -> EventsResult { let addr = Api::storage( diff --git a/pr-3467/src/gsdk/storage.rs.html b/pr-3467/src/gsdk/storage.rs.html index 5ef5793a2e1..78b20c037de 100644 --- a/pr-3467/src/gsdk/storage.rs.html +++ b/pr-3467/src/gsdk/storage.rs.html @@ -459,7 +459,7 @@ Api, BlockNumber, GearGasNode, GearGasNodeId, GearPages, }; use anyhow::anyhow; -use gear_core::ids::*; +use gear_core::ids::*; use gsdk_codegen::storage_fetch; use hex::ToHex; use sp_core::{crypto::Ss58Codec, H256}; @@ -530,7 +530,7 @@ } /// Get program pages from program id. - pub async fn program_pages(&self, pid: ProgramId) -> Result<GearPages> { + pub async fn program_pages(&self, pid: ProgramId) -> Result<GearPages> { let program = self.gprog(pid).await?; self.gpages(pid, &program).await } @@ -669,7 +669,7 @@ #[storage_fetch] pub async fn original_code_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: Option<H256>, ) -> Result<Vec<u8>> { let addr = Self::storage( @@ -683,7 +683,7 @@ #[storage_fetch] pub async fn code_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: Option<H256>, ) -> Result<InstrumentedCode> { let addr = Self::storage( @@ -697,7 +697,7 @@ #[storage_fetch] pub async fn code_len_storage_at( &self, - code_id: CodeId, + code_id: CodeId, block_hash: Option<H256>, ) -> Result<u32> { let addr = Self::storage( @@ -711,7 +711,7 @@ #[storage_fetch] pub async fn gprog_at( &self, - program_id: ProgramId, + program_id: ProgramId, block_hash: Option<H256>, ) -> Result<ActiveProgram<BlockNumber>> { let addr = Self::storage( @@ -733,7 +733,7 @@ #[storage_fetch] pub async fn gpages_at( &self, - program_id: ProgramId, + program_id: ProgramId, program: &ActiveProgram<BlockNumber>, block_hash: Option<H256>, ) -> Result<GearPages> { diff --git a/pr-3467/src/gstd/common/errors.rs.html b/pr-3467/src/gstd/common/errors.rs.html index 80039f9ffca..1ea9f445f30 100644 --- a/pr-3467/src/gstd/common/errors.rs.html +++ b/pr-3467/src/gstd/common/errors.rs.html @@ -125,7 +125,7 @@ //! errors. use core::fmt; -use gcore::errors::Error as CoreError; +use gcore::errors::Error as CoreError; pub use gcore::errors::*; @@ -136,7 +136,7 @@ #[derive(Clone, Debug, Eq, PartialEq)] pub enum Error { /// [`gcore::errors::Error`] type. - Core(CoreError), + Core(CoreError), /// Timeout reached while expecting for reply. Timeout(u32, u32), /// Conversion error. @@ -183,8 +183,8 @@ } } -impl From<CoreError> for Error { - fn from(err: CoreError) -> Self { +impl From<CoreError> for Error { + fn from(err: CoreError) -> Self { Self::Core(err) } } diff --git a/pr-3467/src/gstd/common/primitives.rs.html b/pr-3467/src/gstd/common/primitives.rs.html index 8114a776d18..c3940596989 100644 --- a/pr-3467/src/gstd/common/primitives.rs.html +++ b/pr-3467/src/gstd/common/primitives.rs.html @@ -569,13 +569,13 @@ } } -impl From<gcore::ActorId> for ActorId { - fn from(other: gcore::ActorId) -> Self { +impl From<gcore::ActorId> for ActorId { + fn from(other: gcore::ActorId) -> Self { Self(other.0) } } -impl From<ActorId> for gcore::ActorId { +impl From<ActorId> for gcore::ActorId { fn from(other: ActorId) -> Self { Self(other.0) } @@ -620,14 +620,14 @@ } } -impl From<MessageId> for gcore::MessageId { +impl From<MessageId> for gcore::MessageId { fn from(other: MessageId) -> Self { Self(other.0) } } -impl From<gcore::MessageId> for MessageId { - fn from(other: gcore::MessageId) -> Self { +impl From<gcore::MessageId> for MessageId { + fn from(other: gcore::MessageId) -> Self { Self(other.0) } } @@ -713,13 +713,13 @@ } } -impl From<gcore::CodeId> for CodeId { - fn from(other: gcore::CodeId) -> Self { +impl From<gcore::CodeId> for CodeId { + fn from(other: gcore::CodeId) -> Self { Self(other.0) } } -impl From<CodeId> for gcore::CodeId { +impl From<CodeId> for gcore::CodeId { fn from(other: CodeId) -> Self { Self(other.0) } @@ -786,7 +786,7 @@ /// } /// ``` pub fn reserve(amount: u64, duration: u32) -> Result<Self> { - gcore::exec::reserve_gas(amount, duration).into_result() + gcore::exec::reserve_gas(amount, duration).into_result() } /// Unreserve unused gas from the reservation. @@ -803,13 +803,13 @@ } } -impl From<gcore::ReservationId> for ReservationId { - fn from(id: gcore::ReservationId) -> Self { +impl From<gcore::ReservationId> for ReservationId { + fn from(id: gcore::ReservationId) -> Self { Self(id.0) } } -impl From<ReservationId> for gcore::ReservationId { +impl From<ReservationId> for gcore::ReservationId { fn from(id: ReservationId) -> Self { gcore::ReservationId(id.0) } diff --git a/pr-3467/src/gstd/exec/async.rs.html b/pr-3467/src/gstd/exec/async.rs.html index 369f3cf4323..658fa79540a 100644 --- a/pr-3467/src/gstd/exec/async.rs.html +++ b/pr-3467/src/gstd/exec/async.rs.html @@ -92,7 +92,7 @@ pin::Pin, task::{Context, Poll}, }; -use gcore::exec; +use gcore::exec; /// Delays message execution in asynchronous way for the specified number of /// blocks. It works pretty much like the `exec::wait_for` function, but allows diff --git a/pr-3467/src/gstd/msg/basic.rs.html b/pr-3467/src/gstd/msg/basic.rs.html index 9886b08ab73..972726998fa 100644 --- a/pr-3467/src/gstd/msg/basic.rs.html +++ b/pr-3467/src/gstd/msg/basic.rs.html @@ -909,7 +909,7 @@ /// } /// ``` #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct MessageHandle(gcore::MessageHandle); +pub struct MessageHandle(gcore::MessageHandle); impl MessageHandle { /// Initialize a message to send formed in parts. @@ -1079,20 +1079,20 @@ } } -impl AsRef<gcore::MessageHandle> for MessageHandle { - fn as_ref(&self) -> &gcore::MessageHandle { +impl AsRef<gcore::MessageHandle> for MessageHandle { + fn as_ref(&self) -> &gcore::MessageHandle { &self.0 } } -impl From<MessageHandle> for gcore::MessageHandle { +impl From<MessageHandle> for gcore::MessageHandle { fn from(other: MessageHandle) -> Self { other.0 } } -impl From<gcore::MessageHandle> for MessageHandle { - fn from(other: gcore::MessageHandle) -> Self { +impl From<gcore::MessageHandle> for MessageHandle { + fn from(other: gcore::MessageHandle) -> Self { Self(other) } } diff --git a/pr-3467/src/pallet_gear_rpc/lib.rs.html b/pr-3467/src/pallet_gear_rpc/lib.rs.html index 3bf5fe23587..3953c70b4fa 100644 --- a/pr-3467/src/pallet_gear_rpc/lib.rs.html +++ b/pr-3467/src/pallet_gear_rpc/lib.rs.html @@ -625,7 +625,7 @@ types::error::{CallError, ErrorObject}, }; pub use pallet_gear_rpc_runtime_api::GearApi as GearRuntimeApi; -use pallet_gear_rpc_runtime_api::{GasInfo, HandleKind}; +use pallet_gear_rpc_runtime_api::{GasInfo, HandleKind}; use sp_api::{ApiError, ApiExt, ApiRef, ProvideRuntimeApi}; use sp_blockchain::HeaderBackend; use sp_core::{Bytes, H256}; @@ -787,7 +787,7 @@ &self, at_hash: <Block as BlockT>::Hash, source: H256, - kind: HandleKind, + kind: HandleKind, payload: Vec<u8>, value: u128, allow_other_panics: bool,