From 31c558a9bb15598c4acbcc5ebd62226949daa2bf Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 10 Mar 2021 16:09:41 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=205c443?= =?UTF-8?q?5430f141f0474d139dc240c2f660fa1483b=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guard/all.html | 2 +- guard/api/index.html | 5 + guard/api/sidebar-items.js | 1 + guard/api/v1/auth/fn.is_authenticated.html | 4 + guard/api/v1/auth/index.html | 6 + guard/api/v1/auth/sidebar-items.js | 1 + guard/api/v1/auth/struct.Login.html | 124 +++++ guard/api/v1/auth/struct.Password.html | 114 +++++ guard/api/v1/auth/struct.Register.html | 125 +++++ guard/api/v1/auth/struct.SomeData.html | 123 +++++ guard/api/v1/auth/struct.signin.html | 111 ++++ guard/api/v1/auth/struct.signout.html | 111 ++++ guard/api/v1/auth/struct.signup.html | 111 ++++ guard/api/v1/fn.services.html | 4 + guard/api/v1/index.html | 6 + guard/api/v1/sidebar-items.js | 1 + guard/data/index.html | 2 +- guard/data/struct.Data.html | 11 +- guard/errors/enum.ServiceError.html | 43 +- guard/errors/index.html | 2 +- guard/errors/struct.ErrorToResponse.html | 15 +- guard/errors/type.ServiceResult.html | 2 +- guard/fn.get_identity_service.html | 2 +- guard/fn.get_json_err.html | 2 +- guard/fn.main.html | 2 +- guard/index.html | 4 +- guard/settings/fn.set_database_url.html | 2 +- guard/settings/fn.set_from_database_url.html | 2 +- guard/settings/index.html | 4 +- guard/settings/sidebar-items.js | 2 +- guard/settings/struct.Captcha.html | 122 +++++ guard/settings/struct.Database.html | 12 +- guard/settings/struct.DatabaseBuilder.html | 12 +- guard/settings/struct.Server.html | 6 +- guard/settings/struct.Settings.html | 15 +- guard/sidebar-items.js | 2 +- guard/struct.Data.html | 11 +- guard/struct.SETTINGS.html | 12 +- guard/struct.Settings.html | 15 +- .../service/trait.HttpServiceFactory.js | 3 + implementors/core/clone/trait.Clone.js | 3 +- implementors/core/convert/trait.From.js | 2 +- implementors/core/fmt/trait.Debug.js | 3 +- implementors/core/marker/trait.Freeze.js | 3 +- implementors/core/marker/trait.Send.js | 3 +- implementors/core/marker/trait.Sync.js | 3 +- implementors/core/marker/trait.Unpin.js | 3 +- implementors/core/ops/deref/trait.Deref.js | 1 + implementors/lazy_static/trait.LazyStatic.js | 1 + implementors/serde/de/trait.Deserialize.js | 3 +- implementors/serde/ser/trait.Serialize.js | 2 +- implementors/std/panic/trait.RefUnwindSafe.js | 3 +- implementors/std/panic/trait.UnwindSafe.js | 3 +- search-index.js | 3 +- source-files.js | 3 +- src/guard/api/mod.rs.html | 42 ++ src/guard/api/v1/auth.rs.html | 476 ++++++++++++++++++ src/guard/api/v1/mod.rs.html | 60 +++ src/guard/data.rs.html | 46 +- src/guard/errors.rs.html | 70 +-- src/guard/main.rs.html | 16 +- src/guard/settings.rs.html | 12 + src/tests_migrate/data.rs.html | 148 ++++++ src/tests_migrate/settings.rs.html | 324 ++++++++++++ src/tests_migrate/tests-migrate.rs.html | 78 +++ tests_migrate/all.html | 6 + tests_migrate/data/index.html | 5 + tests_migrate/data/sidebar-items.js | 1 + tests_migrate/data/struct.Data.html | 122 +++++ tests_migrate/fn.main.html | 4 + tests_migrate/index.html | 7 + .../settings/fn.set_database_url.html | 4 + .../settings/fn.set_from_database_url.html | 4 + tests_migrate/settings/index.html | 6 + tests_migrate/settings/sidebar-items.js | 1 + tests_migrate/settings/struct.Captcha.html | 122 +++++ tests_migrate/settings/struct.Database.html | 123 +++++ .../settings/struct.DatabaseBuilder.html | 127 +++++ tests_migrate/settings/struct.Server.html | 126 +++++ tests_migrate/settings/struct.Settings.html | 125 +++++ tests_migrate/sidebar-items.js | 1 + tests_migrate/struct.Data.html | 122 +++++ tests_migrate/struct.SETTINGS.html | 116 +++++ tests_migrate/struct.Settings.html | 125 +++++ 84 files changed, 3467 insertions(+), 145 deletions(-) create mode 100644 guard/api/index.html create mode 100644 guard/api/sidebar-items.js create mode 100644 guard/api/v1/auth/fn.is_authenticated.html create mode 100644 guard/api/v1/auth/index.html create mode 100644 guard/api/v1/auth/sidebar-items.js create mode 100644 guard/api/v1/auth/struct.Login.html create mode 100644 guard/api/v1/auth/struct.Password.html create mode 100644 guard/api/v1/auth/struct.Register.html create mode 100644 guard/api/v1/auth/struct.SomeData.html create mode 100644 guard/api/v1/auth/struct.signin.html create mode 100644 guard/api/v1/auth/struct.signout.html create mode 100644 guard/api/v1/auth/struct.signup.html create mode 100644 guard/api/v1/fn.services.html create mode 100644 guard/api/v1/index.html create mode 100644 guard/api/v1/sidebar-items.js create mode 100644 guard/settings/struct.Captcha.html create mode 100644 implementors/actix_web/service/trait.HttpServiceFactory.js create mode 100644 src/guard/api/mod.rs.html create mode 100644 src/guard/api/v1/auth.rs.html create mode 100644 src/guard/api/v1/mod.rs.html create mode 100644 src/tests_migrate/data.rs.html create mode 100644 src/tests_migrate/settings.rs.html create mode 100644 src/tests_migrate/tests-migrate.rs.html create mode 100644 tests_migrate/all.html create mode 100644 tests_migrate/data/index.html create mode 100644 tests_migrate/data/sidebar-items.js create mode 100644 tests_migrate/data/struct.Data.html create mode 100644 tests_migrate/fn.main.html create mode 100644 tests_migrate/index.html create mode 100644 tests_migrate/settings/fn.set_database_url.html create mode 100644 tests_migrate/settings/fn.set_from_database_url.html create mode 100644 tests_migrate/settings/index.html create mode 100644 tests_migrate/settings/sidebar-items.js create mode 100644 tests_migrate/settings/struct.Captcha.html create mode 100644 tests_migrate/settings/struct.Database.html create mode 100644 tests_migrate/settings/struct.DatabaseBuilder.html create mode 100644 tests_migrate/settings/struct.Server.html create mode 100644 tests_migrate/settings/struct.Settings.html create mode 100644 tests_migrate/sidebar-items.js create mode 100644 tests_migrate/struct.Data.html create mode 100644 tests_migrate/struct.SETTINGS.html create mode 100644 tests_migrate/struct.Settings.html diff --git a/guard/all.html b/guard/all.html index 9f52090c..e7458a89 100644 --- a/guard/all.html +++ b/guard/all.html @@ -3,4 +3,4 @@

[] - List of all items

Structs

Enums

Functions

Typedefs

\ No newline at end of file + List of all items

Structs

Enums

Functions

Typedefs

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

[][src]Module guard::api

Modules

+
v1
\ No newline at end of file diff --git a/guard/api/sidebar-items.js b/guard/api/sidebar-items.js new file mode 100644 index 00000000..fabe6839 --- /dev/null +++ b/guard/api/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"mod":[["v1",""]]}); \ No newline at end of file diff --git a/guard/api/v1/auth/fn.is_authenticated.html b/guard/api/v1/auth/fn.is_authenticated.html new file mode 100644 index 00000000..402e8df6 --- /dev/null +++ b/guard/api/v1/auth/fn.is_authenticated.html @@ -0,0 +1,4 @@ +guard::api::v1::auth::is_authenticated - Rust + +

[][src]Function guard::api::v1::auth::is_authenticated

fn is_authenticated(id: &Identity) -> Result<bool, ServiceError>
\ No newline at end of file diff --git a/guard/api/v1/auth/index.html b/guard/api/v1/auth/index.html new file mode 100644 index 00000000..affc19a1 --- /dev/null +++ b/guard/api/v1/auth/index.html @@ -0,0 +1,6 @@ +guard::api::v1::auth - Rust + +

[][src]Module guard::api::v1::auth

Structs

+
Login
Password
Register
SomeData
signin
signout
signup

Functions

+
is_authenticated
\ No newline at end of file diff --git a/guard/api/v1/auth/sidebar-items.js b/guard/api/v1/auth/sidebar-items.js new file mode 100644 index 00000000..f0a1ad14 --- /dev/null +++ b/guard/api/v1/auth/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"fn":[["is_authenticated",""]],"struct":[["Login",""],["Password",""],["Register",""],["SomeData",""],["signin",""],["signout",""],["signup",""]]}); \ No newline at end of file diff --git a/guard/api/v1/auth/struct.Login.html b/guard/api/v1/auth/struct.Login.html new file mode 100644 index 00000000..f4a0e900 --- /dev/null +++ b/guard/api/v1/auth/struct.Login.html @@ -0,0 +1,124 @@ +guard::api::v1::auth::Login - Rust + +

[][src]Struct guard::api::v1::auth::Login

pub struct Login {
+    pub username: String,
+    pub password: String,
+}

+ Fields

username: Stringpassword: String

Trait Implementations

impl Clone for Login[src]

impl Debug for Login[src]

impl<'de> Deserialize<'de> for Login[src]

impl Serialize for Login[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

+

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.Password.html b/guard/api/v1/auth/struct.Password.html new file mode 100644 index 00000000..171f1393 --- /dev/null +++ b/guard/api/v1/auth/struct.Password.html @@ -0,0 +1,114 @@ +guard::api::v1::auth::Password - Rust + +

[][src]Struct guard::api::v1::auth::Password

struct Password {
+    password: String,
+}

+ Fields

password: String

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.Register.html b/guard/api/v1/auth/struct.Register.html new file mode 100644 index 00000000..b3f32dd5 --- /dev/null +++ b/guard/api/v1/auth/struct.Register.html @@ -0,0 +1,125 @@ +guard::api::v1::auth::Register - Rust + +

[][src]Struct guard::api::v1::auth::Register

pub struct Register {
+    pub username: String,
+    pub password: String,
+    pub email: String,
+}

+ Fields

username: Stringpassword: Stringemail: String

Trait Implementations

impl Clone for Register[src]

impl Debug for Register[src]

impl<'de> Deserialize<'de> for Register[src]

impl Serialize for Register[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

+

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.SomeData.html b/guard/api/v1/auth/struct.SomeData.html new file mode 100644 index 00000000..47aeef0d --- /dev/null +++ b/guard/api/v1/auth/struct.SomeData.html @@ -0,0 +1,123 @@ +guard::api::v1::auth::SomeData - Rust + +

[][src]Struct guard::api::v1::auth::SomeData

pub struct SomeData {
+    pub a: String,
+}

+ Fields

a: String

Trait Implementations

impl Clone for SomeData[src]

impl Debug for SomeData[src]

impl<'de> Deserialize<'de> for SomeData[src]

impl Serialize for SomeData[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

+

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.signin.html b/guard/api/v1/auth/struct.signin.html new file mode 100644 index 00000000..d4ca6e4b --- /dev/null +++ b/guard/api/v1/auth/struct.signin.html @@ -0,0 +1,111 @@ +guard::api::v1::auth::signin - Rust + +

[][src]Struct guard::api::v1::auth::signin

pub struct signin;

Trait Implementations

impl HttpServiceFactory for signin[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.signout.html b/guard/api/v1/auth/struct.signout.html new file mode 100644 index 00000000..88917410 --- /dev/null +++ b/guard/api/v1/auth/struct.signout.html @@ -0,0 +1,111 @@ +guard::api::v1::auth::signout - Rust + +

[][src]Struct guard::api::v1::auth::signout

pub struct signout;

Trait Implementations

impl HttpServiceFactory for signout[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/auth/struct.signup.html b/guard/api/v1/auth/struct.signup.html new file mode 100644 index 00000000..c28d532e --- /dev/null +++ b/guard/api/v1/auth/struct.signup.html @@ -0,0 +1,111 @@ +guard::api::v1::auth::signup - Rust + +

[][src]Struct guard::api::v1::auth::signup

pub struct signup;

Trait Implementations

impl HttpServiceFactory for signup[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

+

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

+

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

+

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

\ No newline at end of file diff --git a/guard/api/v1/fn.services.html b/guard/api/v1/fn.services.html new file mode 100644 index 00000000..3533e72a --- /dev/null +++ b/guard/api/v1/fn.services.html @@ -0,0 +1,4 @@ +guard::api::v1::services - Rust + +

[][src]Function guard::api::v1::services

pub fn services(cfg: &mut ServiceConfig)
\ No newline at end of file diff --git a/guard/api/v1/index.html b/guard/api/v1/index.html new file mode 100644 index 00000000..907ba278 --- /dev/null +++ b/guard/api/v1/index.html @@ -0,0 +1,6 @@ +guard::api::v1 - Rust + +

[][src]Module guard::api::v1

Modules

+
auth

Functions

+
services
\ No newline at end of file diff --git a/guard/api/v1/sidebar-items.js b/guard/api/v1/sidebar-items.js new file mode 100644 index 00000000..33859e4b --- /dev/null +++ b/guard/api/v1/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"fn":[["services",""]],"mod":[["auth",""]]}); \ No newline at end of file diff --git a/guard/data/index.html b/guard/data/index.html index b68476e4..7ce5534f 100644 --- a/guard/data/index.html +++ b/guard/data/index.html @@ -1,5 +1,5 @@ guard::data - Rust

[][src]Module guard::data

Structs

+ Change settings

[][src]Module guard::data

Structs

Data
\ No newline at end of file diff --git a/guard/data/struct.Data.html b/guard/data/struct.Data.html index 07792f3a..2df10f5e 100644 --- a/guard/data/struct.Data.html +++ b/guard/data/struct.Data.html @@ -1,11 +1,12 @@ guard::data::Data - Rust -

[][src]Struct guard::data::Data

pub struct Data {
+

[][src]Struct guard::data::Data

pub struct Data {
     pub db: PgPool,
     pub creds: Config,
+    pub captcha: System<HashCache>,
 }

- Fields

db: PgPoolcreds: Config

Implementations

impl Data[src]

pub async fn new() -> Self[src]

Trait Implementations

impl Clone for Data[src]