pub enum BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions {
SelectionRangeRegistrationOptions(SelectionRangeRegistrationOptions),
SelectionRangeOptions(SelectionRangeOptions),
Boolean(bool),
}Variants§
SelectionRangeRegistrationOptions(SelectionRangeRegistrationOptions)
SelectionRangeOptions(SelectionRangeOptions)
Boolean(bool)
Trait Implementations§
Source§impl Clone for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl Clone for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
Source§fn clone(
&self,
) -> BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
fn clone( &self, ) -> BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
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<'de> Deserialize<'de> for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl<'de> Deserialize<'de> for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
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 PartialEq for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl PartialEq for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
Source§fn eq(
&self,
other: &BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions,
) -> bool
fn eq( &self, other: &BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
Auto Trait Implementations§
impl Freeze for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl RefUnwindSafe for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl Send for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl Sync for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl Unpin for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl UnsafeUnpin for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
impl UnwindSafe for BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions
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