Struct lsp_types::SemanticTokensRangeParams
source · [−]pub struct SemanticTokensRangeParams {
pub work_done_progress_params: WorkDoneProgressParams,
pub partial_result_params: PartialResultParams,
pub text_document: TextDocumentIdentifier,
pub range: Range,
}Fields
work_done_progress_params: WorkDoneProgressParamspartial_result_params: PartialResultParamstext_document: TextDocumentIdentifierThe text document.
range: RangeThe range the semantic tokens are requested for.
Trait Implementations
sourceimpl Clone for SemanticTokensRangeParams
impl Clone for SemanticTokensRangeParams
sourcefn clone(&self) -> SemanticTokensRangeParams
fn clone(&self) -> SemanticTokensRangeParams
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 more
sourceimpl Debug for SemanticTokensRangeParams
impl Debug for SemanticTokensRangeParams
sourceimpl<'de> Deserialize<'de> for SemanticTokensRangeParams
impl<'de> Deserialize<'de> for SemanticTokensRangeParams
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 PartialEq<SemanticTokensRangeParams> for SemanticTokensRangeParams
impl PartialEq<SemanticTokensRangeParams> for SemanticTokensRangeParams
sourcefn eq(&self, other: &SemanticTokensRangeParams) -> bool
fn eq(&self, other: &SemanticTokensRangeParams) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for SemanticTokensRangeParams
impl Serialize for SemanticTokensRangeParams
impl Eq for SemanticTokensRangeParams
impl StructuralEq for SemanticTokensRangeParams
impl StructuralPartialEq for SemanticTokensRangeParams
Auto Trait Implementations
impl RefUnwindSafe for SemanticTokensRangeParams
impl Send for SemanticTokensRangeParams
impl Sync for SemanticTokensRangeParams
impl Unpin for SemanticTokensRangeParams
impl UnwindSafe for SemanticTokensRangeParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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