pub struct TextDocumentContentParams {
pub uri: Uri,
}
Expand description
Parameters for the workspace/textDocumentContent
request.
@since 3.18.0 @proposed
Fields§
§uri: Uri
The uri of the text document.
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 · 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
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 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