pub struct FortifyPaths {Show 22 fields
pub login: String,
pub register: String,
pub logout: String,
pub me: String,
pub profile: String,
pub password: String,
pub forgot_password: String,
pub reset_password: String,
pub verify_email: String,
pub resend_verification: String,
pub confirm_password: String,
pub confirmed_password_status: String,
pub two_factor: String,
pub two_factor_confirm: String,
pub two_factor_disable: String,
pub two_factor_qr: String,
pub two_factor_secret: String,
pub two_factor_recovery: String,
pub two_factor_challenge: String,
pub roles: String,
pub permissions: String,
pub users: String,
}Expand description
Relative path segments for Fortify JSON routes.
Fields§
§login: String§register: String§logout: String§me: String§profile: String§password: String§forgot_password: String§reset_password: String§verify_email: String§resend_verification: String§confirm_password: String§confirmed_password_status: String§two_factor: String§two_factor_confirm: String§two_factor_disable: String§two_factor_qr: String§two_factor_secret: String§two_factor_recovery: String§two_factor_challenge: String§roles: String§permissions: String§users: StringImplementations§
Source§impl FortifyPaths
impl FortifyPaths
Trait Implementations§
Source§impl Clone for FortifyPaths
impl Clone for FortifyPaths
Source§fn clone(&self) -> FortifyPaths
fn clone(&self) -> FortifyPaths
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FortifyPaths
impl Debug for FortifyPaths
Auto Trait Implementations§
impl Freeze for FortifyPaths
impl RefUnwindSafe for FortifyPaths
impl Send for FortifyPaths
impl Sync for FortifyPaths
impl Unpin for FortifyPaths
impl UnsafeUnpin for FortifyPaths
impl UnwindSafe for FortifyPaths
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more