pub struct TextDocumentContentParams {
pub uri: Uri,
}Expand description
Parameters for the workspace/textDocumentContent request.
@since 3.18.0 @proposed
Fields§
§uri: UriThe uri of the text document.
Implementations§
Trait Implementations§
Source§impl Clone for TextDocumentContentParams
impl Clone for TextDocumentContentParams
Source§fn clone(&self) -> TextDocumentContentParams
fn clone(&self) -> TextDocumentContentParams
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 TextDocumentContentParams
impl Debug for TextDocumentContentParams
Source§impl<'de> Deserialize<'de> for TextDocumentContentParams
impl<'de> Deserialize<'de> for TextDocumentContentParams
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 Hash for TextDocumentContentParams
impl Hash for TextDocumentContentParams
Source§impl PartialEq for TextDocumentContentParams
impl PartialEq for TextDocumentContentParams
Source§fn eq(&self, other: &TextDocumentContentParams) -> bool
fn eq(&self, other: &TextDocumentContentParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TextDocumentContentParams
impl StructuralPartialEq for TextDocumentContentParams
Auto Trait Implementations§
impl Freeze for TextDocumentContentParams
impl RefUnwindSafe for TextDocumentContentParams
impl Send for TextDocumentContentParams
impl Sync for TextDocumentContentParams
impl Unpin for TextDocumentContentParams
impl UnsafeUnpin for TextDocumentContentParams
impl UnwindSafe for TextDocumentContentParams
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