pub enum ImplementationProvider {
Bool(bool),
ImplementationOptions(ImplementationOptions),
ImplementationRegistrationOptions(ImplementationRegistrationOptions),
}Variants§
Bool(bool)
ImplementationOptions(ImplementationOptions)
ImplementationRegistrationOptions(ImplementationRegistrationOptions)
Trait Implementations§
Source§impl Clone for ImplementationProvider
impl Clone for ImplementationProvider
Source§fn clone(&self) -> ImplementationProvider
fn clone(&self) -> ImplementationProvider
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 ImplementationProvider
impl Debug for ImplementationProvider
Source§impl<'de> Deserialize<'de> for ImplementationProvider
impl<'de> Deserialize<'de> for ImplementationProvider
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ImplementationOptions> for ImplementationProvider
impl From<ImplementationOptions> for ImplementationProvider
Source§fn from(v: ImplementationOptions) -> Self
fn from(v: ImplementationOptions) -> Self
Converts to this type from the input type.
Source§impl From<ImplementationRegistrationOptions> for ImplementationProvider
impl From<ImplementationRegistrationOptions> for ImplementationProvider
Source§fn from(v: ImplementationRegistrationOptions) -> Self
fn from(v: ImplementationRegistrationOptions) -> Self
Converts to this type from the input type.
Source§impl From<bool> for ImplementationProvider
impl From<bool> for ImplementationProvider
Source§impl Hash for ImplementationProvider
impl Hash for ImplementationProvider
Source§impl PartialEq for ImplementationProvider
impl PartialEq for ImplementationProvider
Source§fn eq(&self, other: &ImplementationProvider) -> bool
fn eq(&self, other: &ImplementationProvider) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImplementationProvider
impl Serialize for ImplementationProvider
impl Eq for ImplementationProvider
impl StructuralPartialEq for ImplementationProvider
Auto Trait Implementations§
impl Freeze for ImplementationProvider
impl RefUnwindSafe for ImplementationProvider
impl Send for ImplementationProvider
impl Sync for ImplementationProvider
impl Unpin for ImplementationProvider
impl UnsafeUnpin for ImplementationProvider
impl UnwindSafe for ImplementationProvider
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