pub struct SessionService<B: Bmc> { /* private fields */ }Expand description
Session service.
Provides access to the session collection and individual session resources.
Implementations§
Source§impl<B: Bmc> SessionService<B>
impl<B: Bmc> SessionService<B>
Sourcepub fn raw(&self) -> Arc<SessionServiceSchema>
pub fn raw(&self) -> Arc<SessionServiceSchema>
Get the raw schema data for this session service.
Returns an Arc to the underlying schema, allowing cheap cloning
and sharing of the data.
Auto Trait Implementations§
impl<B> Freeze for SessionService<B>
impl<B> RefUnwindSafe for SessionService<B>where
B: RefUnwindSafe,
impl<B> Send for SessionService<B>
impl<B> Sync for SessionService<B>
impl<B> Unpin for SessionService<B>
impl<B> UnsafeUnpin for SessionService<B>
impl<B> UnwindSafe for SessionService<B>where
B: RefUnwindSafe,
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