pub enum StoreIdentifierOption {
Plain,
Hashed,
Custom(StoreIdentifierHashFn),
}Expand description
How verification identifiers are persisted.
Variants§
Trait Implementations§
Source§impl Clone for StoreIdentifierOption
impl Clone for StoreIdentifierOption
Source§fn clone(&self) -> StoreIdentifierOption
fn clone(&self) -> StoreIdentifierOption
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 StoreIdentifierOption
impl Debug for StoreIdentifierOption
Source§impl Default for StoreIdentifierOption
impl Default for StoreIdentifierOption
Source§fn default() -> StoreIdentifierOption
fn default() -> StoreIdentifierOption
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for StoreIdentifierOption
impl !UnwindSafe for StoreIdentifierOption
impl Freeze for StoreIdentifierOption
impl Send for StoreIdentifierOption
impl Sync for StoreIdentifierOption
impl Unpin for StoreIdentifierOption
impl UnsafeUnpin for StoreIdentifierOption
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