pub struct TextDocumentContentRegistrationOptions {
pub text_document_content_options_base: TextDocumentContentOptions,
pub static_registration_options_mixin: StaticRegistrationOptions,
}Expand description
Text document content provider registration options.
@since 3.18.0
Fields§
§text_document_content_options_base: TextDocumentContentOptions§static_registration_options_mixin: StaticRegistrationOptionsTrait Implementations§
Source§impl Clone for TextDocumentContentRegistrationOptions
impl Clone for TextDocumentContentRegistrationOptions
Source§fn clone(&self) -> TextDocumentContentRegistrationOptions
fn clone(&self) -> TextDocumentContentRegistrationOptions
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 TextDocumentContentRegistrationOptions
impl<'de> Deserialize<'de> for TextDocumentContentRegistrationOptions
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 TextDocumentContentRegistrationOptions
impl PartialEq for TextDocumentContentRegistrationOptions
Source§fn eq(&self, other: &TextDocumentContentRegistrationOptions) -> bool
fn eq(&self, other: &TextDocumentContentRegistrationOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextDocumentContentRegistrationOptions
Auto Trait Implementations§
impl Freeze for TextDocumentContentRegistrationOptions
impl RefUnwindSafe for TextDocumentContentRegistrationOptions
impl Send for TextDocumentContentRegistrationOptions
impl Sync for TextDocumentContentRegistrationOptions
impl Unpin for TextDocumentContentRegistrationOptions
impl UnsafeUnpin for TextDocumentContentRegistrationOptions
impl UnwindSafe for TextDocumentContentRegistrationOptions
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