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