pub struct BrowserHost {
pub customer_app: String,
pub services: BrowserSecurityServices,
/* private fields */
}Fields§
§customer_app: String§services: BrowserSecurityServicesImplementations§
Source§impl BrowserHost
impl BrowserHost
pub fn with_session_store_client( customer_app: String, services: BrowserSecurityServices, client: DistributedSessionStoreClient, ) -> Result<Self, BrowserHostBuildError>
pub fn session_store_kind(&self) -> SessionStoreBackendKind
pub fn issue_session( &mut self, request: SessionIssueRequest, cookie_secret: &[u8], now: BrowserInstant, ) -> Result<IssuedBrowserSession, RuntimeBrowserError>
pub fn rotate_session( &mut self, session_id: &str, cookie_secret: &[u8], now: BrowserInstant, ) -> Result<RotatedBrowserSession, RuntimeBrowserError>
pub fn revoke_session( &mut self, session_id: &str, now: BrowserInstant, ) -> Result<(), RuntimeBrowserError>
pub fn issue_csrf_token( &self, csrf_secret: &[u8], session_id: &str, action: &str, ) -> Result<String, RuntimeBrowserError>
pub fn session( &self, session_id: &str, ) -> Result<Option<BrowserSessionRecord>, RuntimeBrowserError>
pub fn resolve_request( &mut self, request: &RequestInput, cookie_secret: &[u8], now: BrowserInstant, ) -> Result<ResolvedBrowserRequest, RuntimeBrowserError>
Trait Implementations§
Source§impl Clone for BrowserHost
impl Clone for BrowserHost
Source§fn clone(&self) -> BrowserHost
fn clone(&self) -> BrowserHost
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BrowserHost
impl !RefUnwindSafe for BrowserHost
impl Send for BrowserHost
impl Sync for BrowserHost
impl Unpin for BrowserHost
impl UnsafeUnpin for BrowserHost
impl !UnwindSafe for BrowserHost
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
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