List of all items
Structs
- Identity
- IdentityMiddleware
- config::IdentityMiddlewareBuilder
- error::LoginError
- error::LostIdentityError
- error::MissingIdentityError
- error::SessionExpiryError
diff --git a/actix_identity/all.html b/actix_identity/all.html index 96ce3ade3..f0a5c1b4d 100644 --- a/actix_identity/all.html +++ b/actix_identity/all.html @@ -1 +1 @@ -
#[non_exhaustive]pub enum LogoutBehaviour {
+LogoutBehaviour in actix_identity::config - Rust Enum actix_identity::config::LogoutBehaviour
source · #[non_exhaustive]pub enum LogoutBehaviour {
PurgeSession,
DeleteIdentityKeys,
}
Expand description
LogoutBehaviour
controls what actions are going to be performed when Identity::logout
is
diff --git a/actix_identity/config/index.html b/actix_identity/config/index.html
index 812b7b363..cb4d61eca 100644
--- a/actix_identity/config/index.html
+++ b/actix_identity/config/index.html
@@ -1,4 +1,4 @@
-
actix_identity::config - Rust Module actix_identity::config
source · Expand description
Configuration options to tune the behaviour of IdentityMiddleware
.
+actix_identity::config - Rust Module actix_identity::config
source · Expand description
Configuration options to tune the behaviour of IdentityMiddleware
.
Structs
- A fluent builder to construct an
IdentityMiddleware
instance with custom configuration
parameters.
Enums
LogoutBehaviour
controls what actions are going to be performed when Identity::logout
is
invoked.
\ No newline at end of file
diff --git a/actix_identity/config/struct.IdentityMiddlewareBuilder.html b/actix_identity/config/struct.IdentityMiddlewareBuilder.html
index b3cc28acf..83867e554 100644
--- a/actix_identity/config/struct.IdentityMiddlewareBuilder.html
+++ b/actix_identity/config/struct.IdentityMiddlewareBuilder.html
@@ -1,4 +1,4 @@
-IdentityMiddlewareBuilder in actix_identity::config - Rust Struct actix_identity::config::IdentityMiddlewareBuilder
source · pub struct IdentityMiddlewareBuilder { /* private fields */ }
Expand description
A fluent builder to construct an IdentityMiddleware
instance with custom configuration
+
IdentityMiddlewareBuilder in actix_identity::config - Rust Struct actix_identity::config::IdentityMiddlewareBuilder
source · pub struct IdentityMiddlewareBuilder { /* private fields */ }
Expand description
A fluent builder to construct an IdentityMiddleware
instance with custom configuration
parameters.
Use IdentityMiddleware::builder
to get started!
Implementations§
source§impl IdentityMiddlewareBuilder
sourcepub fn logout_behaviour(self, logout_behaviour: LogoutBehaviour) -> Self
Determines how Identity::logout
affects the current session.
diff --git a/actix_identity/error/enum.GetIdentityError.html b/actix_identity/error/enum.GetIdentityError.html
index 6622a20fa..1e96d7c2b 100644
--- a/actix_identity/error/enum.GetIdentityError.html
+++ b/actix_identity/error/enum.GetIdentityError.html
@@ -1,4 +1,4 @@
-GetIdentityError in actix_identity::error - Rust Enum actix_identity::error::GetIdentityError
source · #[non_exhaustive]pub enum GetIdentityError {
+GetIdentityError in actix_identity::error - Rust Enum actix_identity::error::GetIdentityError
source · #[non_exhaustive]pub enum GetIdentityError {
SessionExpiryError(SessionExpiryError),
MissingIdentityError(MissingIdentityError),
SessionGetError(SessionGetError),
diff --git a/actix_identity/error/index.html b/actix_identity/error/index.html
index b7a3ea807..eacd0f10a 100644
--- a/actix_identity/error/index.html
+++ b/actix_identity/error/index.html
@@ -1,2 +1,2 @@
-actix_identity::error - Rust Module actix_identity::error
source · Expand description
Failure modes of identity operations.
+actix_identity::error - Rust Module actix_identity::error
source · Expand description
Failure modes of identity operations.
Structs
- Error that can occur during login attempts.
- The identity information has been lost.
- There is no identity information attached to the current session.
- Error encountered when working with a session that has expired.
Enums
- Errors that can occur while retrieving an identity.
\ No newline at end of file
diff --git a/actix_identity/error/struct.LoginError.html b/actix_identity/error/struct.LoginError.html
index 8cc3b6281..2ab2072af 100644
--- a/actix_identity/error/struct.LoginError.html
+++ b/actix_identity/error/struct.LoginError.html
@@ -1,4 +1,4 @@
-LoginError in actix_identity::error - Rust Struct actix_identity::error::LoginError
source · pub struct LoginError(/* private fields */);
Expand description
Error that can occur during login attempts.
+LoginError in actix_identity::error - Rust Struct actix_identity::error::LoginError
source · pub struct LoginError(/* private fields */);
Expand description
Error that can occur during login attempts.
Trait Implementations§
source§impl Debug for LoginError
source§impl Display for LoginError
source§impl Error for LoginError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more1.0.0 · source§fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()source§impl From<SessionInsertError> for LoginError
source§fn from(original: SessionInsertError) -> LoginError
Converts to this type from the input type.source§impl ResponseError for LoginError
source§fn status_code(&self) -> StatusCode
Returns appropriate status code for error. Read more§fn error_response(&self) -> HttpResponse
Creates full response for error. Read moreAuto Trait Implementations§
§impl RefUnwindSafe for LoginError
§impl Send for LoginError
§impl Sync for LoginError
§impl Unpin for LoginError
§impl UnwindSafe for LoginError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
diff --git a/actix_identity/error/struct.LostIdentityError.html b/actix_identity/error/struct.LostIdentityError.html
index 67af56593..319f5e4b1 100644
--- a/actix_identity/error/struct.LostIdentityError.html
+++ b/actix_identity/error/struct.LostIdentityError.html
@@ -1,4 +1,4 @@
-LostIdentityError in actix_identity::error - Rust Struct actix_identity::error::LostIdentityError
source · #[non_exhaustive]pub struct LostIdentityError;
Expand description
The identity information has been lost.
+LostIdentityError in actix_identity::error - Rust Struct actix_identity::error::LostIdentityError
source · #[non_exhaustive]pub struct LostIdentityError;
Expand description
The identity information has been lost.
Seeing this error in user code indicates a bug in actix-identity.
Trait Implementations§
source§impl Debug for LostIdentityError
source§impl Display for LostIdentityError
source§impl Error for LostIdentityError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more1.0.0 · source§fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()source§impl From<LostIdentityError> for GetIdentityError
source§fn from(original: LostIdentityError) -> GetIdentityError
Converts to this type from the input type.Auto Trait Implementations§
§impl RefUnwindSafe for LostIdentityError
§impl Send for LostIdentityError
§impl Sync for LostIdentityError
§impl Unpin for LostIdentityError
§impl UnwindSafe for LostIdentityError
Blanket Implementations§
source§impl<T> Borrow<T> for Twhere
diff --git a/actix_identity/error/struct.MissingIdentityError.html b/actix_identity/error/struct.MissingIdentityError.html
index 285573237..fda096f56 100644
--- a/actix_identity/error/struct.MissingIdentityError.html
+++ b/actix_identity/error/struct.MissingIdentityError.html
@@ -1,4 +1,4 @@
-MissingIdentityError in actix_identity::error - Rust Struct actix_identity::error::MissingIdentityError
source · #[non_exhaustive]pub struct MissingIdentityError;
Expand description
There is no identity information attached to the current session.
+MissingIdentityError in actix_identity::error - Rust Struct actix_identity::error::MissingIdentityError
source · #[non_exhaustive]pub struct MissingIdentityError;
Expand description
There is no identity information attached to the current session.
Trait Implementations§
source§impl Debug for MissingIdentityError
source§impl Display for MissingIdentityError
source§impl Error for MissingIdentityError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more1.0.0 · source§fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()source§impl From<MissingIdentityError> for GetIdentityError
source§fn from(original: MissingIdentityError) -> GetIdentityError
Converts to this type from the input type.Auto Trait Implementations§
§impl RefUnwindSafe for MissingIdentityError
§impl Send for MissingIdentityError
§impl Sync for MissingIdentityError
§impl Unpin for MissingIdentityError
§impl UnwindSafe for MissingIdentityError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
diff --git a/actix_identity/error/struct.SessionExpiryError.html b/actix_identity/error/struct.SessionExpiryError.html
index 98c1890fa..871e505a4 100644
--- a/actix_identity/error/struct.SessionExpiryError.html
+++ b/actix_identity/error/struct.SessionExpiryError.html
@@ -1,4 +1,4 @@
-SessionExpiryError in actix_identity::error - Rust Struct actix_identity::error::SessionExpiryError
source · pub struct SessionExpiryError(/* private fields */);
Expand description
Error encountered when working with a session that has expired.
+SessionExpiryError in actix_identity::error - Rust Struct actix_identity::error::SessionExpiryError
source · pub struct SessionExpiryError(/* private fields */);
Expand description
Error encountered when working with a session that has expired.
Trait Implementations§
source§impl Debug for SessionExpiryError
source§impl Display for SessionExpiryError
source§impl Error for SessionExpiryError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more1.0.0 · source§fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()source§impl From<SessionExpiryError> for GetIdentityError
source§fn from(original: SessionExpiryError) -> GetIdentityError
Converts to this type from the input type.Auto Trait Implementations§
§impl RefUnwindSafe for SessionExpiryError
§impl Send for SessionExpiryError
§impl Sync for SessionExpiryError
§impl Unpin for SessionExpiryError
§impl UnwindSafe for SessionExpiryError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
diff --git a/actix_identity/index.html b/actix_identity/index.html
index 7dcf401b5..adad0ccaa 100644
--- a/actix_identity/index.html
+++ b/actix_identity/index.html
@@ -1,5 +1,5 @@
-actix_identity - Rust Crate actix_identity
source · Expand description
Identity management for Actix Web.
+actix_identity - Rust Crate actix_identity
source · Expand description
Identity management for Actix Web.
actix-identity
can be used to track identity of a user across multiple requests. It is built
on top of HTTP sessions, via actix-session
.
Getting started
diff --git a/actix_identity/struct.Identity.html b/actix_identity/struct.Identity.html
index 95cfc4b0d..d12e694cc 100644
--- a/actix_identity/struct.Identity.html
+++ b/actix_identity/struct.Identity.html
@@ -1,4 +1,4 @@
-Identity in actix_identity - Rust Struct actix_identity::Identity
source · pub struct Identity(/* private fields */);
Expand description
A verified user identity. It can be used as a request extractor.
+Identity in actix_identity - Rust Struct actix_identity::Identity
source · pub struct Identity(/* private fields */);
Expand description
A verified user identity. It can be used as a request extractor.
The lifecycle of a user identity is tied to the lifecycle of the underlying session. If the
session is destroyed (e.g. the session expired), the user identity will be forgotten, de-facto
forcing a user log out.
diff --git a/actix_identity/struct.IdentityMiddleware.html b/actix_identity/struct.IdentityMiddleware.html
index b0220f0d3..042fc8816 100644
--- a/actix_identity/struct.IdentityMiddleware.html
+++ b/actix_identity/struct.IdentityMiddleware.html
@@ -1,4 +1,4 @@
-IdentityMiddleware in actix_identity - Rust Struct actix_identity::IdentityMiddleware
source · pub struct IdentityMiddleware { /* private fields */ }
Expand description
Identity management middleware.
+IdentityMiddleware in actix_identity - Rust Struct actix_identity::IdentityMiddleware
source · pub struct IdentityMiddleware { /* private fields */ }
Expand description
Identity management middleware.
use actix_web::{cookie::Key, App, HttpServer};
use actix_session::storage::RedisSessionStore;
diff --git a/actix_identity/trait.IdentityExt.html b/actix_identity/trait.IdentityExt.html
index 829ed36af..c61bdde78 100644
--- a/actix_identity/trait.IdentityExt.html
+++ b/actix_identity/trait.IdentityExt.html
@@ -1,4 +1,4 @@
-IdentityExt in actix_identity - Rust Trait actix_identity::IdentityExt
source · pub trait IdentityExt {
+IdentityExt in actix_identity - Rust Trait actix_identity::IdentityExt
source · pub trait IdentityExt {
// Required method
fn get_identity(&self) -> Result<Identity, GetIdentityError>;
}
Expand description
Helper trait to retrieve an Identity
instance from various actix-web
’s types.
diff --git a/actix_limitation/constant.DEFAULT_COOKIE_NAME.html b/actix_limitation/constant.DEFAULT_COOKIE_NAME.html
index a5ac032dc..9080a31b7 100644
--- a/actix_limitation/constant.DEFAULT_COOKIE_NAME.html
+++ b/actix_limitation/constant.DEFAULT_COOKIE_NAME.html
@@ -1,2 +1,2 @@
-DEFAULT_COOKIE_NAME in actix_limitation - Rust Constant actix_limitation::DEFAULT_COOKIE_NAME
source · pub const DEFAULT_COOKIE_NAME: &str = "sid";
Expand description
Default cookie name.
+DEFAULT_COOKIE_NAME in actix_limitation - Rust Constant actix_limitation::DEFAULT_COOKIE_NAME
source · pub const DEFAULT_COOKIE_NAME: &str = "sid";
Expand description
Default cookie name.
\ No newline at end of file
diff --git a/actix_limitation/constant.DEFAULT_PERIOD_SECS.html b/actix_limitation/constant.DEFAULT_PERIOD_SECS.html
index 789b8383c..dc52c828b 100644
--- a/actix_limitation/constant.DEFAULT_PERIOD_SECS.html
+++ b/actix_limitation/constant.DEFAULT_PERIOD_SECS.html
@@ -1,2 +1,2 @@
-DEFAULT_PERIOD_SECS in actix_limitation - Rust Constant actix_limitation::DEFAULT_PERIOD_SECS
source · pub const DEFAULT_PERIOD_SECS: u64 = 3600;
Expand description
Default period (in seconds).
+DEFAULT_PERIOD_SECS in actix_limitation - Rust Constant actix_limitation::DEFAULT_PERIOD_SECS
source · pub const DEFAULT_PERIOD_SECS: u64 = 3600;
Expand description
Default period (in seconds).
\ No newline at end of file
diff --git a/actix_limitation/constant.DEFAULT_REQUEST_LIMIT.html b/actix_limitation/constant.DEFAULT_REQUEST_LIMIT.html
index 242eac811..6c5074ad2 100644
--- a/actix_limitation/constant.DEFAULT_REQUEST_LIMIT.html
+++ b/actix_limitation/constant.DEFAULT_REQUEST_LIMIT.html
@@ -1,2 +1,2 @@
-DEFAULT_REQUEST_LIMIT in actix_limitation - Rust Constant actix_limitation::DEFAULT_REQUEST_LIMIT
source · pub const DEFAULT_REQUEST_LIMIT: usize = 5000;
Expand description
Default request limit.
+DEFAULT_REQUEST_LIMIT in actix_limitation - Rust Constant actix_limitation::DEFAULT_REQUEST_LIMIT
source · pub const DEFAULT_REQUEST_LIMIT: usize = 5000;
Expand description
Default request limit.
\ No newline at end of file
diff --git a/actix_limitation/constant.DEFAULT_SESSION_KEY.html b/actix_limitation/constant.DEFAULT_SESSION_KEY.html
index ea89da562..003368c2a 100644
--- a/actix_limitation/constant.DEFAULT_SESSION_KEY.html
+++ b/actix_limitation/constant.DEFAULT_SESSION_KEY.html
@@ -1,2 +1,2 @@
-DEFAULT_SESSION_KEY in actix_limitation - Rust Constant actix_limitation::DEFAULT_SESSION_KEY
source · pub const DEFAULT_SESSION_KEY: &str = "rate-api-id";
Expand description
Default session key.
+DEFAULT_SESSION_KEY in actix_limitation - Rust Constant actix_limitation::DEFAULT_SESSION_KEY
source · pub const DEFAULT_SESSION_KEY: &str = "rate-api-id";
Expand description
Default session key.
\ No newline at end of file
diff --git a/actix_limitation/index.html b/actix_limitation/index.html
index 7c2037d5b..94d1d3e93 100644
--- a/actix_limitation/index.html
+++ b/actix_limitation/index.html
@@ -1,5 +1,5 @@
actix_limitation - Rust Crate actix_limitation
source · Expand description
Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web.
+ All Items Crate actix_limitation
source · Expand description
Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web.
[dependencies]
actix-web = "4"
actix-limitation = "0.5"
diff --git a/actix_limitation/struct.Limiter.html b/actix_limitation/struct.Limiter.html
index dc4c5e180..e58c2049e 100644
--- a/actix_limitation/struct.Limiter.html
+++ b/actix_limitation/struct.Limiter.html
@@ -1,9 +1,9 @@
-Limiter in actix_limitation - Rust Struct actix_limitation::Limiter
source · pub struct Limiter { /* private fields */ }
Expand description
Rate limiter.
-Implementations§
source§impl Limiter
sourcepub fn builder(redis_url: impl Into<String>) -> Builder
Construct rate limiter builder with defaults.
+Limiter in actix_limitation - Rust Struct actix_limitation::Limiter
source · pub struct Limiter { /* private fields */ }
Expand description
Rate limiter.
+Implementations§
Trait Implementations§
Auto Trait Implementations§
§impl !RefUnwindSafe for Limiter
§impl Send for Limiter
§impl Sync for Limiter
§impl Unpin for Limiter
§impl !UnwindSafe for Limiter
Blanket Implementations§
Trait Implementations§
Auto Trait Implementations§
§impl !RefUnwindSafe for Limiter
§impl Send for Limiter
§impl Sync for Limiter
§impl Unpin for Limiter
§impl !UnwindSafe for Limiter
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read moresource§impl<T> From<T> for T
source§fn from(t: T) -> T
Returns the argument unchanged.
diff --git a/actix_protobuf/all.html b/actix_protobuf/all.html
index 726d5dbf3..2aad7ad90 100644
--- a/actix_protobuf/all.html
+++ b/actix_protobuf/all.html
@@ -1 +1 @@
-List of all items in this crate List of all items
Structs
Enums
Traits
\ No newline at end of file
+List of all items in this crate List of all items
Structs
Enums
Traits
\ No newline at end of file
diff --git a/actix_protobuf/enum.ProtoBufPayloadError.html b/actix_protobuf/enum.ProtoBufPayloadError.html
index 1ef56c4a6..4c8f18d83 100644
--- a/actix_protobuf/enum.ProtoBufPayloadError.html
+++ b/actix_protobuf/enum.ProtoBufPayloadError.html
@@ -1,4 +1,4 @@
-ProtoBufPayloadError in actix_protobuf - Rust pub enum ProtoBufPayloadError {
+ProtoBufPayloadError in actix_protobuf - Rust pub enum ProtoBufPayloadError {
Overflow,
ContentType,
Serialize(EncodeError),
@@ -9,7 +9,7 @@
§Serialize(EncodeError)
Serialize error
§Deserialize(DecodeError)
Deserialize error
§Payload(PayloadError)
Payload error
-
Trait Implementations§
source§impl Debug for ProtoBufPayloadError
source§impl Display for ProtoBufPayloadError
source§impl From<DecodeError> for ProtoBufPayloadError
source§fn from(err: ProtoBufDecodeError) -> ProtoBufPayloadError
Converts to this type from the input type.source§impl From<PayloadError> for ProtoBufPayloadError
source§fn from(err: PayloadError) -> ProtoBufPayloadError
Converts to this type from the input type.source§impl ResponseError for ProtoBufPayloadError
source§fn error_response(&self) -> HttpResponse
Creates full response for error. Read more§fn status_code(&self) -> StatusCode
Returns appropriate status code for error. Read moreAuto Trait Implementations§
§impl !RefUnwindSafe for ProtoBufPayloadError
§impl Send for ProtoBufPayloadError
§impl Sync for ProtoBufPayloadError
§impl Unpin for ProtoBufPayloadError
§impl !UnwindSafe for ProtoBufPayloadError
Blanket Implementations§
Trait Implementations§
source§impl Debug for ProtoBufPayloadError
source§impl Display for ProtoBufPayloadError
source§impl From<DecodeError> for ProtoBufPayloadError
source§fn from(err: ProtoBufDecodeError) -> ProtoBufPayloadError
Converts to this type from the input type.source§impl From<PayloadError> for ProtoBufPayloadError
source§fn from(err: PayloadError) -> ProtoBufPayloadError
Converts to this type from the input type.source§impl ResponseError for ProtoBufPayloadError
source§fn error_response(&self) -> HttpResponse
Creates full response for error. Read more§fn status_code(&self) -> StatusCode
Returns appropriate status code for error. Read moreAuto Trait Implementations§
§impl !RefUnwindSafe for ProtoBufPayloadError
§impl Send for ProtoBufPayloadError
§impl Sync for ProtoBufPayloadError
§impl Unpin for ProtoBufPayloadError
§impl !UnwindSafe for ProtoBufPayloadError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read moresource§impl<T> From<T> for T
source§fn from(t: T) -> T
Returns the argument unchanged.
diff --git a/actix_protobuf/index.html b/actix_protobuf/index.html
index 9dd70aab3..a0b158799 100644
--- a/actix_protobuf/index.html
+++ b/actix_protobuf/index.html
@@ -1,3 +1,3 @@
-actix_protobuf - Rust Crate actix_protobuf
source · Expand description
Protobuf payload extractor for Actix Web.
+actix_protobuf - Rust Crate actix_protobuf
source · Expand description
Protobuf payload extractor for Actix Web.
Structs
Enums
Traits
\ No newline at end of file
diff --git a/actix_protobuf/struct.ProtoBuf.html b/actix_protobuf/struct.ProtoBuf.html
index 7e7f5b8e4..ed8d2bab5 100644
--- a/actix_protobuf/struct.ProtoBuf.html
+++ b/actix_protobuf/struct.ProtoBuf.html
@@ -1,7 +1,7 @@
-ProtoBuf in actix_protobuf - Rust Struct actix_protobuf::ProtoBuf
source · pub struct ProtoBuf<T: Message>(pub T);
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T> FromRequest for ProtoBuf<T>where
- T: Message + Default + 'static,
source§impl<T: Message + Default> Responder for ProtoBuf<T>
§type Body = BoxBody
source§fn respond_to(self, _: &HttpRequest) -> HttpResponse
Convert self to HttpResponse
.§fn customize(self) -> CustomizeResponder<Self>where
+ProtoBuf in actix_protobuf - Rust Struct actix_protobuf::ProtoBuf
source · pub struct ProtoBuf<T: Message>(pub T);
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T> FromRequest for ProtoBuf<T>where
+ T: Message + Default + 'static,
Auto Trait Implementations§
§impl<T> RefUnwindSafe for ProtoBuf<T>where
T: RefUnwindSafe,
§impl<T> Send for ProtoBuf<T>
§impl<T> Sync for ProtoBuf<T>
§impl<T> Unpin for ProtoBuf<T>where
T: Unpin,
§impl<T> UnwindSafe for ProtoBuf<T>where
diff --git a/actix_protobuf/struct.ProtoBufConfig.html b/actix_protobuf/struct.ProtoBufConfig.html
index c52036d9d..d5f416e5f 100644
--- a/actix_protobuf/struct.ProtoBufConfig.html
+++ b/actix_protobuf/struct.ProtoBufConfig.html
@@ -1,5 +1,5 @@
-ProtoBufConfig in actix_protobuf - Rust Struct actix_protobuf::ProtoBufConfig
source · pub struct ProtoBufConfig { /* private fields */ }
Implementations§
Trait Implementations§
Auto Trait Implementations§
§impl RefUnwindSafe for ProtoBufConfig
§impl Send for ProtoBufConfig
§impl Sync for ProtoBufConfig
§impl Unpin for ProtoBufConfig
§impl UnwindSafe for ProtoBufConfig
Blanket Implementations§
source§impl<T> Any for Twhere
+ProtoBufConfig in actix_protobuf - Rust Struct actix_protobuf::ProtoBufConfig
source · pub struct ProtoBufConfig { /* private fields */ }
Implementations§
Trait Implementations§
Auto Trait Implementations§
§impl RefUnwindSafe for ProtoBufConfig
§impl Send for ProtoBufConfig
§impl Sync for ProtoBufConfig
§impl Unpin for ProtoBufConfig
§impl UnwindSafe for ProtoBufConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read moresource§impl<T> From<T> for T
source§fn from(t: T) -> T
Returns the argument unchanged.
diff --git a/actix_protobuf/struct.ProtoBufMessage.html b/actix_protobuf/struct.ProtoBufMessage.html
index a28bff049..361be4074 100644
--- a/actix_protobuf/struct.ProtoBufMessage.html
+++ b/actix_protobuf/struct.ProtoBufMessage.html
@@ -1,6 +1,6 @@
-ProtoBufMessage in actix_protobuf - Rust Struct actix_protobuf::ProtoBufMessage
source · pub struct ProtoBufMessage<T: Message + Default> { /* private fields */ }
Implementations§
Trait Implementations§
source§impl<T: Message + Default + 'static> Future for ProtoBufMessage<T>
§type Output = Result<T, ProtoBufPayloadError>
The type of value produced on completion.source§fn poll(self: Pin<&mut Self>, task: &mut Context<'_>) -> Poll<Self::Output>
Attempt to resolve the future to a final value, registering
+ProtoBufMessage in actix_protobuf - Rust Struct actix_protobuf::ProtoBufMessage
source · pub struct ProtoBufMessage<T: Message + Default> { /* private fields */ }
Implementations§
Trait Implementations§
source§impl<T: Message + Default + 'static> Future for ProtoBufMessage<T>
§type Output = Result<T, ProtoBufPayloadError>
The type of value produced on completion.Auto Trait Implementations§
§impl<T> !RefUnwindSafe for ProtoBufMessage<T>
§impl<T> !Send for ProtoBufMessage<T>
§impl<T> !Sync for ProtoBufMessage<T>
§impl<T> Unpin for ProtoBufMessage<T>
§impl<T> !UnwindSafe for ProtoBufMessage<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
diff --git a/actix_protobuf/trait.ProtoBufResponseBuilder.html b/actix_protobuf/trait.ProtoBufResponseBuilder.html
index eca61766f..0185168c9 100644
--- a/actix_protobuf/trait.ProtoBufResponseBuilder.html
+++ b/actix_protobuf/trait.ProtoBufResponseBuilder.html
@@ -1,4 +1,4 @@
-ProtoBufResponseBuilder in actix_protobuf - Rust pub trait ProtoBufResponseBuilder {
+ProtoBufResponseBuilder in actix_protobuf - Rust