pub enum ColorProviderCapability {
Simple(bool),
ColorProvider(ColorProviderOptions),
Options(StaticTextDocumentColorProviderOptions),
}
Variants
Simple(bool)
ColorProvider(ColorProviderOptions)
Options(StaticTextDocumentColorProviderOptions)
Trait Implementations
sourceimpl Clone for ColorProviderCapability
impl Clone for ColorProviderCapability
sourcefn clone(&self) -> ColorProviderCapability
fn clone(&self) -> ColorProviderCapability
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ColorProviderCapability
impl Debug for ColorProviderCapability
sourceimpl<'de> Deserialize<'de> for ColorProviderCapability
impl<'de> Deserialize<'de> for ColorProviderCapability
sourcefn 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
sourceimpl From<ColorProviderOptions> for ColorProviderCapability
impl From<ColorProviderOptions> for ColorProviderCapability
sourcefn from(from: ColorProviderOptions) -> Self
fn from(from: ColorProviderOptions) -> Self
Converts to this type from the input type.
sourceimpl From<StaticTextDocumentColorProviderOptions> for ColorProviderCapability
impl From<StaticTextDocumentColorProviderOptions> for ColorProviderCapability
sourcefn from(from: StaticTextDocumentColorProviderOptions) -> Self
fn from(from: StaticTextDocumentColorProviderOptions) -> Self
Converts to this type from the input type.
sourceimpl From<bool> for ColorProviderCapability
impl From<bool> for ColorProviderCapability
sourceimpl PartialEq<ColorProviderCapability> for ColorProviderCapability
impl PartialEq<ColorProviderCapability> for ColorProviderCapability
sourcefn eq(&self, other: &ColorProviderCapability) -> bool
fn eq(&self, other: &ColorProviderCapability) -> bool
sourceimpl Serialize for ColorProviderCapability
impl Serialize for ColorProviderCapability
impl Eq for ColorProviderCapability
impl StructuralEq for ColorProviderCapability
impl StructuralPartialEq for ColorProviderCapability
Auto Trait Implementations
impl RefUnwindSafe for ColorProviderCapability
impl Send for ColorProviderCapability
impl Sync for ColorProviderCapability
impl Unpin for ColorProviderCapability
impl UnwindSafe for ColorProviderCapability
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more