pub enum VerificationStoreIdentifierConfig {
Plain,
Single(StoreIdentifierOption),
WithOverrides {
default: StoreIdentifierOption,
overrides: BTreeMap<String, StoreIdentifierOption>,
},
}Expand description
Verification storage configuration.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VerificationStoreIdentifierConfig
impl Clone for VerificationStoreIdentifierConfig
Source§fn clone(&self) -> VerificationStoreIdentifierConfig
fn clone(&self) -> VerificationStoreIdentifierConfig
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 Default for VerificationStoreIdentifierConfig
impl Default for VerificationStoreIdentifierConfig
Source§fn default() -> VerificationStoreIdentifierConfig
fn default() -> VerificationStoreIdentifierConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for VerificationStoreIdentifierConfig
impl !UnwindSafe for VerificationStoreIdentifierConfig
impl Freeze for VerificationStoreIdentifierConfig
impl Send for VerificationStoreIdentifierConfig
impl Sync for VerificationStoreIdentifierConfig
impl Unpin for VerificationStoreIdentifierConfig
impl UnsafeUnpin for VerificationStoreIdentifierConfig
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