diff --git a/guard/all.html b/guard/all.html index 3688031b..b5ca9899 100644 --- a/guard/all.html +++ b/guard/all.html @@ -3,5 +3,5 @@

List of all items[] -

Structs

Enums

Macros

Functions

Typedefs

Statics

Constants

+

Structs

Enums

Macros

Functions

Typedefs

Statics

Constants

\ No newline at end of file diff --git a/guard/constant.PAGES.html b/guard/constant.PAGES.html new file mode 100644 index 00000000..af2ef2b1 --- /dev/null +++ b/guard/constant.PAGES.html @@ -0,0 +1,5 @@ +guard::PAGES - Rust + +

Constant guard::PAGES[][src]

pub const PAGES: Routes;
+ \ No newline at end of file diff --git a/guard/fn.get_identity_service.html b/guard/fn.get_identity_service.html index 874e61da..c91e6d9d 100644 --- a/guard/fn.get_identity_service.html +++ b/guard/fn.get_identity_service.html @@ -1,5 +1,5 @@ guard::get_identity_service - Rust

Function guard::get_identity_service[][src]

pub fn get_identity_service() -> IdentityService<CookieIdentityPolicy>
+ Change settings

Function guard::get_identity_service[][src]

pub fn get_identity_service() -> IdentityService<CookieIdentityPolicy>
\ No newline at end of file diff --git a/guard/fn.get_json_err.html b/guard/fn.get_json_err.html index 587b8621..4b4d0c4f 100644 --- a/guard/fn.get_json_err.html +++ b/guard/fn.get_json_err.html @@ -1,5 +1,5 @@ guard::get_json_err - Rust

Function guard::get_json_err[][src]

pub fn get_json_err() -> JsonConfig
+ Change settings

Function guard::get_json_err[][src]

pub fn get_json_err() -> JsonConfig
\ No newline at end of file diff --git a/guard/fn.main.html b/guard/fn.main.html index 8415f9fe..a2ba8e4c 100644 --- a/guard/fn.main.html +++ b/guard/fn.main.html @@ -1,5 +1,5 @@ guard::main - Rust

Function guard::main[][src]

pub(crate) fn main() -> Result<()>
+ Change settings

Function guard::main[][src]

pub(crate) fn main() -> Result<()>
\ No newline at end of file diff --git a/guard/index.html b/guard/index.html index 57081791..ceee9e04 100644 --- a/guard/index.html +++ b/guard/index.html @@ -1,12 +1,12 @@ guard - Rust

Crate guard[][src]

Modules

-
api
data
docs
errors
middleware
routes
settings
static_assets
templates

Macros

+ Change settings

Crate guard[][src]

Modules

+
api
data
docs
errors
middleware
pages
routes
settings
static_assets

Macros

define_resource

Defines resoures for Methods

Structs

CSS
CheckLogin
Data
FILES
JS
S
SETTINGS
Settings

Constants

-
V1_API_ROUTES

Statics

+
PAGES
V1_API_ROUTES

Statics

GIT_COMMIT_HASH
OPEN_API_DOC
PKG_DESCRIPTION
PKG_HOMEPAGE
PKG_NAME
VERIFICATION_PATH
VERSION

Functions

get_identity_service
get_json_err
main
\ No newline at end of file diff --git a/guard/middleware/auth/constant.LOGIN_ROUTE.html b/guard/middleware/auth/constant.LOGIN_ROUTE.html deleted file mode 100644 index b1696981..00000000 --- a/guard/middleware/auth/constant.LOGIN_ROUTE.html +++ /dev/null @@ -1,5 +0,0 @@ -guard::middleware::auth::LOGIN_ROUTE - Rust - -

Constant guard::middleware::auth::LOGIN_ROUTE[][src]

const LOGIN_ROUTE: &str = "/login";
- \ No newline at end of file diff --git a/guard/middleware/auth/index.html b/guard/middleware/auth/index.html index 9b5934ac..4fbc3ef9 100644 --- a/guard/middleware/auth/index.html +++ b/guard/middleware/auth/index.html @@ -1,7 +1,6 @@ guard::middleware::auth - Rust -

Module guard::middleware::auth[][src]

Structs

-
CheckLogin
CheckLoginMiddleware

Constants

-
LOGIN_ROUTE
+

Module guard::middleware::auth[][src]

Structs

+
CheckLogin
CheckLoginMiddleware
\ No newline at end of file diff --git a/guard/middleware/auth/sidebar-items.js b/guard/middleware/auth/sidebar-items.js index d8b2c337..b8697dbc 100644 --- a/guard/middleware/auth/sidebar-items.js +++ b/guard/middleware/auth/sidebar-items.js @@ -1 +1 @@ -initSidebarItems({"constant":[["LOGIN_ROUTE",""]],"struct":[["CheckLogin",""],["CheckLoginMiddleware",""]]}); \ No newline at end of file +initSidebarItems({"struct":[["CheckLogin",""],["CheckLoginMiddleware",""]]}); \ No newline at end of file diff --git a/guard/middleware/auth/struct.CheckLogin.html b/guard/middleware/auth/struct.CheckLogin.html index bbb275e8..649dcceb 100644 --- a/guard/middleware/auth/struct.CheckLogin.html +++ b/guard/middleware/auth/struct.CheckLogin.html @@ -1,13 +1,13 @@ guard::middleware::auth::CheckLogin - Rust

Struct guard::middleware::auth::CheckLogin[][src]

pub struct CheckLogin;

Trait Implementations

impl<S, B> Transform<S> for CheckLogin where
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
    S::Future: 'static, 
[src]

type Request = ServiceRequest

Requests handled by the service.

+ Change settings

Struct guard::middleware::auth::CheckLogin[][src]

pub struct CheckLogin;

Trait Implementations

impl<S, B> Transform<S> for CheckLogin where
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
    S::Future: 'static, 
[src]

type Request = ServiceRequest

Requests handled by the service.

type Response = ServiceResponse<B>

Responses given by the service.

type Error = Error

Errors produced by the service.

type Transform = CheckLoginMiddleware<S>

The TransformService value created by this factory

type InitError = ()

Errors produced while building a transform service.

type Future = Ready<Result<Self::Transform, Self::InitError>>

The future response value.

-

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]