pub enum InlineValueProvider {
Bool(bool),
InlineValueOptions(InlineValueOptions),
InlineValueRegistrationOptions(InlineValueRegistrationOptions),
}Variants§
Bool(bool)
InlineValueOptions(InlineValueOptions)
InlineValueRegistrationOptions(InlineValueRegistrationOptions)
Trait Implementations§
Source§impl Clone for InlineValueProvider
impl Clone for InlineValueProvider
Source§fn clone(&self) -> InlineValueProvider
fn clone(&self) -> InlineValueProvider
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 InlineValueProvider
impl Debug for InlineValueProvider
Source§impl<'de> Deserialize<'de> for InlineValueProvider
impl<'de> Deserialize<'de> for InlineValueProvider
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<InlineValueOptions> for InlineValueProvider
impl From<InlineValueOptions> for InlineValueProvider
Source§fn from(v: InlineValueOptions) -> Self
fn from(v: InlineValueOptions) -> Self
Converts to this type from the input type.
Source§impl From<InlineValueRegistrationOptions> for InlineValueProvider
impl From<InlineValueRegistrationOptions> for InlineValueProvider
Source§fn from(v: InlineValueRegistrationOptions) -> Self
fn from(v: InlineValueRegistrationOptions) -> Self
Converts to this type from the input type.
Source§impl From<bool> for InlineValueProvider
impl From<bool> for InlineValueProvider
Source§impl Hash for InlineValueProvider
impl Hash for InlineValueProvider
Source§impl PartialEq for InlineValueProvider
impl PartialEq for InlineValueProvider
Source§fn eq(&self, other: &InlineValueProvider) -> bool
fn eq(&self, other: &InlineValueProvider) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InlineValueProvider
impl Serialize for InlineValueProvider
impl Eq for InlineValueProvider
impl StructuralPartialEq for InlineValueProvider
Auto Trait Implementations§
impl Freeze for InlineValueProvider
impl RefUnwindSafe for InlineValueProvider
impl Send for InlineValueProvider
impl Sync for InlineValueProvider
impl Unpin for InlineValueProvider
impl UnsafeUnpin for InlineValueProvider
impl UnwindSafe for InlineValueProvider
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