diff --git a/actix_protobuf/enum.ProtoBufPayloadError.html b/actix_protobuf/enum.ProtoBufPayloadError.html index 1aee0967e..f64182d3a 100644 --- a/actix_protobuf/enum.ProtoBufPayloadError.html +++ b/actix_protobuf/enum.ProtoBufPayloadError.html @@ -5,7 +5,7 @@

ProtoBufPayloadError

pub enum ProtoBufPayloadError {
+    

Enum actix_protobuf::ProtoBufPayloadError

source · []
pub enum ProtoBufPayloadError {
     Overflow,
     ContentType,
     Serialize(ProtoBufEncodeError),
@@ -16,11 +16,11 @@
 

Serialize(ProtoBufEncodeError)

Serialize error

Deserialize(ProtoBufDecodeError)

Deserialize error

Payload(PayloadError)

Payload error

-

Trait Implementations

Formats the value using the given formatter. Read more

-

Formats the value using the given formatter. Read more

-

Converts to this type from the input type.

-

Converts to this type from the input type.

-

Creates full response for error. Read more

+

Trait Implementations

Formats the value using the given formatter. Read more

+

Formats the value using the given formatter. Read more

+

Converts to this type from the input type.

+

Converts to this type from the input type.

+

Creates full response for error. Read more

Returns appropriate status code for error. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

diff --git a/actix_protobuf/index.html b/actix_protobuf/index.html index 9237cbf0c..ea274ec9d 100644 --- a/actix_protobuf/index.html +++ b/actix_protobuf/index.html @@ -1,11 +1,12 @@ -actix_protobuf - Rust
diff --git a/actix_protobuf/struct.ProtoBuf.html b/actix_protobuf/struct.ProtoBuf.html index dd4e05e25..6aa2b9389 100644 --- a/actix_protobuf/struct.ProtoBuf.html +++ b/actix_protobuf/struct.ProtoBuf.html @@ -5,16 +5,16 @@

ProtoBuf

pub struct ProtoBuf<T: Message>(pub T);

Tuple Fields

0: T

Trait Implementations

Formats the value using the given formatter. Read more

-

The resulting type after dereferencing.

-

Dereferences the value.

-

Mutably dereferences the value.

-

Formats the value using the given formatter. Read more

-

The associated error which can be returned.

+

Struct actix_protobuf::ProtoBuf

source · []
pub struct ProtoBuf<T: Message>(pub T);

Tuple Fields

0: T

Trait Implementations

Formats the value using the given formatter. Read more

+

The resulting type after dereferencing.

+

Dereferences the value.

+

Mutably dereferences the value.

+

Formats the value using the given formatter. Read more

+

The associated error which can be returned.

Future that resolves to a Self. Read more

-

Create a Self from request parts asynchronously.

+

Create a Self from request parts asynchronously.

Create a Self from request head asynchronously. Read more

-

Convert self to HttpResponse.

+

Convert self to HttpResponse.

Wraps responder to allow alteration of its response. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

diff --git a/actix_protobuf/struct.ProtoBufConfig.html b/actix_protobuf/struct.ProtoBufConfig.html index 5a0c5752e..662500d8f 100644 --- a/actix_protobuf/struct.ProtoBufConfig.html +++ b/actix_protobuf/struct.ProtoBufConfig.html @@ -5,8 +5,8 @@

ProtoBufConfig

pub struct ProtoBufConfig { /* private fields */ }

Implementations

Change max size of payload. By default max size is 256Kb

-

Trait Implementations

Returns the “default value” for a type. Read more

+

Struct actix_protobuf::ProtoBufConfig

source · []
pub struct ProtoBufConfig { /* private fields */ }

Implementations

Change max size of payload. By default max size is 256Kb

+

Trait Implementations

Returns the “default value” for a type. 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

diff --git a/actix_protobuf/struct.ProtoBufMessage.html b/actix_protobuf/struct.ProtoBufMessage.html index 0a9c2d82c..03a43ddba 100644 --- a/actix_protobuf/struct.ProtoBufMessage.html +++ b/actix_protobuf/struct.ProtoBufMessage.html @@ -5,10 +5,10 @@

ProtoBufMessage

pub struct ProtoBufMessage<T: Message + Default> { /* private fields */ }

Implementations

Create ProtoBufMessage for request.

-

Change max size of payload. By default max size is 256Kb

-

Trait Implementations

The type of value produced on completion.

-

Attempt to resolve the future to a final value, registering +

Struct actix_protobuf::ProtoBufMessage

source · []
pub struct ProtoBufMessage<T: Message + Default> { /* private fields */ }

Implementations

Create ProtoBufMessage for request.

+

Change max size of payload. By default max size is 256Kb

+

Trait Implementations

The type of value produced on completion.

+

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

diff --git a/actix_protobuf/trait.ProtoBufResponseBuilder.html b/actix_protobuf/trait.ProtoBufResponseBuilder.html index 567d2b4ad..a454e94c0 100644 --- a/actix_protobuf/trait.ProtoBufResponseBuilder.html +++ b/actix_protobuf/trait.ProtoBufResponseBuilder.html @@ -5,7 +5,7 @@

ProtoBufResponseBuilder

pub trait ProtoBufResponseBuilder {
+    

Trait actix_protobuf::ProtoBufResponseBuilder

source · []
pub trait ProtoBufResponseBuilder {
     fn protobuf<T: Message>(&mut self, value: T) -> Result<HttpResponse, Error>;
-}

Required Methods

Implementations on Foreign Types

Implementors

+}

Required Methods

Implementations on Foreign Types

Implementors

\ No newline at end of file diff --git a/actix_redis/enum.Error.html b/actix_redis/enum.Error.html index 8e90f4cb0..fdc66f858 100644 --- a/actix_redis/enum.Error.html +++ b/actix_redis/enum.Error.html @@ -5,22 +5,22 @@

Error

pub enum Error {
+    

Enum actix_redis::Error

source · []
pub enum Error {
     Redis(Error),
     NotConnected,
     Disconnected,
 }
Expand description

General purpose actix-redis error.

-

Variants

Redis(Error)

NotConnected

Receiving message during reconnecting

-

Disconnected

Cancel all waters when connection get dropped

-

Trait Implementations

Formats the value using the given formatter. Read more

-

Formats the value using the given formatter. Read more

-

The lower-level source of this error, if any. Read more

+

Variants

Redis(Error)

NotConnected

Receiving message during reconnecting.

+

Disconnected

Cancel all waiters when connection is dropped.

+

Trait Implementations

Formats the value using the given formatter. Read more

+

Formats the value using the given formatter. Read more

+

The lower-level source of this error, if any. Read more

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

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Provides type based access to context intended for error reports. Read more

-

Converts to this type from the input type.

-

Returns appropriate status code for error. Read more

+

Converts to this type from the input type.

+

Returns appropriate status code for error. Read more

Creates full response for error. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

diff --git a/actix_redis/enum.RespError.html b/actix_redis/enum.RespError.html index 551ba4f0f..747264295 100644 --- a/actix_redis/enum.RespError.html +++ b/actix_redis/enum.RespError.html @@ -31,7 +31,7 @@ a proper option.

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Provides type based access to context intended for error reports. Read more

Converts to this type from the input type.

-

Converts to this type from the input type.

+

Converts to this type from the input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

diff --git a/actix_redis/index.html b/actix_redis/index.html index 8e0466e8a..e101fcebc 100644 --- a/actix_redis/index.html +++ b/actix_redis/index.html @@ -5,13 +5,13 @@

Crate actix_redis

Expand description

Redis integration for actix.

+

Crate actix_redis

source · []
Expand description

Redis integration for actix.

Macros

Macro to create a RESP array, useful for preparing commands to send. Elements can be any type, or a mixture of types, that satisfy Into<RespValue>.

Structs

-

Command for send data to Redis

-

Redis communication actor

+

Command for sending data to Redis.

+

Redis communication actor.

Enums

General purpose actix-redis error.

A single RESP value, this owns the data that is read/to-be written to Redis.

diff --git a/actix_redis/sidebar-items.js b/actix_redis/sidebar-items.js index 647ad51f1..c98499f6a 100644 --- a/actix_redis/sidebar-items.js +++ b/actix_redis/sidebar-items.js @@ -1 +1 @@ -window.SIDEBAR_ITEMS = {"enum":[["Error","General purpose `actix-redis` error."],["RespError",""],["RespValue","A single RESP value, this owns the data that is read/to-be written to Redis."]],"macro":[["resp_array","Macro to create a RESP array, useful for preparing commands to send. Elements can be any type, or a mixture of types, that satisfy `Into`."]],"struct":[["Command","Command for send data to Redis"],["RedisActor","Redis communication actor"]]}; \ No newline at end of file +window.SIDEBAR_ITEMS = {"enum":[["Error","General purpose `actix-redis` error."],["RespError",""],["RespValue","A single RESP value, this owns the data that is read/to-be written to Redis."]],"macro":[["resp_array","Macro to create a RESP array, useful for preparing commands to send. Elements can be any type, or a mixture of types, that satisfy `Into`."]],"struct":[["Command","Command for sending data to Redis."],["RedisActor","Redis communication actor."]]}; \ No newline at end of file diff --git a/actix_redis/struct.Command.html b/actix_redis/struct.Command.html index 98e099dc3..0d8ea6e18 100644 --- a/actix_redis/struct.Command.html +++ b/actix_redis/struct.Command.html @@ -1,15 +1,15 @@ -Command in actix_redis - Rust