Struct safe_network::client::client_api::Client[][src]

pub struct Client { /* fields omitted */ }
Expand description

Client object

Implementations

Read the contents of a blob from the network. The contents might be spread across different chunks in the network. This function invokes the self-encryptor and returns the data that was initially stored.

Examples

TODO: update once data types are crdt compliant

Read the contents of a blob from the network. The contents might be spread across different chunks in the network. This function invokes the self-encryptor and returns the data that was initially stored.

Takes position and len arguments which specify the start position and the length of bytes to be read. Passing 0 to position reads the data from the beginning. Passing None to length reads the full length of the data.

Examples

TODO: update once data types are crdt compliant

Directly writes raw data to the network in the form of immutable self encrypted chunks, without any batching.

Send a signed DataCmd to the network. This is to be part of a public API, for the user to provide the serialised and already signed command.

Create a Private Register onto the Network

Creates a private Register on the network which can then be written to. Private data can be removed from the network at a later date.

A tag must be supplied. A xorname must be supplied, this can be random or deterministic as per your apps needs.

Create a Public Register onto the Network

Creates a public Register on the network which can then be written to. Public data can not be removed from the network at a later date.

A tag must be supplied. A xorname must be supplied, this can be random or deterministic as per your apps needs.

Delete Register

You’re only able to delete a PrivateRegister. Public data can no be removed from the network.

Write to Register

Public or private isn’t important for writing, though the data you write will be Public or Private according to the type of the targeted Register.

Get a Register from the Network

Get the last data entry from a Register data.

pub async fn get_register_entry(
    &self,
    address: Address,
    hash: EntryHash
) -> Result<Entry, Error>

Get an entry from a Register on the Network by its hash

Get the owner of a Register.

Get the set of Permissions in a Register for a specific user.

Get the Policy of a Register.

Easily manage connections to/from The Safe Network with the client and its APIs. Use a random client for read-only or one-time operations. Supply an existing, SecretKey which holds a SafeCoin balance to be able to perform write operations.

Create a Safe Network client instance. Either for an existing SecretKey (in which case) the client will attempt to retrieve the history of the key’s balance in order to be ready for any token operations. Or if no SecreteKey is passed, a random keypair will be used, which provides a client that can only perform Read operations (at least until the client’s SecretKey receives some token).

Examples

TODO: update once data types are crdt compliant

Return the client’s keypair.

Useful for retrieving the PublicKey or KeyPair in the event you need to sign something

Examples

TODO: update once data types are crdt compliant

Return the client’s PublicKey.

Examples

TODO: update once data types are crdt compliant

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more