#[non_exhaustive]pub enum FabricX509StoreLocationConversionError {
    InvalidValue,
    UnknownValue(FABRIC_X509_STORE_LOCATION),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidValue
UnknownValue(FABRIC_X509_STORE_LOCATION)
Trait Implementations§
Source§impl Clone for FabricX509StoreLocationConversionError
 
impl Clone for FabricX509StoreLocationConversionError
Source§fn clone(&self) -> FabricX509StoreLocationConversionError
 
fn clone(&self) -> FabricX509StoreLocationConversionError
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 moreimpl Copy for FabricX509StoreLocationConversionError
Auto Trait Implementations§
impl Freeze for FabricX509StoreLocationConversionError
impl RefUnwindSafe for FabricX509StoreLocationConversionError
impl Send for FabricX509StoreLocationConversionError
impl Sync for FabricX509StoreLocationConversionError
impl Unpin for FabricX509StoreLocationConversionError
impl UnwindSafe for FabricX509StoreLocationConversionError
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