pub struct InMemoryRevocationStore { /* private fields */ }Expand description
In-memory revocation store for development and testing.
Implementations§
Trait Implementations§
Source§impl Debug for InMemoryRevocationStore
impl Debug for InMemoryRevocationStore
Source§impl Default for InMemoryRevocationStore
impl Default for InMemoryRevocationStore
Source§fn default() -> InMemoryRevocationStore
fn default() -> InMemoryRevocationStore
Returns the “default value” for a type. Read more
Source§impl RevocationStore for InMemoryRevocationStore
impl RevocationStore for InMemoryRevocationStore
Source§fn is_revoked(&self, capability_id: &str) -> Result<bool, RevocationStoreError>
fn is_revoked(&self, capability_id: &str) -> Result<bool, RevocationStoreError>
Check if a capability ID has been revoked.
Auto Trait Implementations§
impl Freeze for InMemoryRevocationStore
impl RefUnwindSafe for InMemoryRevocationStore
impl Send for InMemoryRevocationStore
impl Sync for InMemoryRevocationStore
impl Unpin for InMemoryRevocationStore
impl UnsafeUnpin for InMemoryRevocationStore
impl UnwindSafe for InMemoryRevocationStore
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