pub struct TypeDefinitionParams {
pub text_document: TextDocumentIdentifier,
pub position: Position,
pub work_done_token: Option<ProgressToken>,
pub partial_result_token: Option<ProgressToken>,
}Fields§
§text_document: TextDocumentIdentifierThe text document.
position: PositionThe position inside the text document.
work_done_token: Option<ProgressToken>An optional token that a server can use to report work done progress.
partial_result_token: Option<ProgressToken>An optional token that a server can use to report partial results (e.g. streaming) to the client.
Trait Implementations§
Source§impl Clone for TypeDefinitionParams
impl Clone for TypeDefinitionParams
Source§fn clone(&self) -> TypeDefinitionParams
fn clone(&self) -> TypeDefinitionParams
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 TypeDefinitionParams
impl Debug for TypeDefinitionParams
Source§impl<'de> Deserialize<'de> for TypeDefinitionParams
impl<'de> Deserialize<'de> for TypeDefinitionParams
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 TypeDefinitionParams
impl PartialEq for TypeDefinitionParams
Source§impl Serialize for TypeDefinitionParams
impl Serialize for TypeDefinitionParams
impl Eq for TypeDefinitionParams
impl StructuralPartialEq for TypeDefinitionParams
Auto Trait Implementations§
impl Freeze for TypeDefinitionParams
impl RefUnwindSafe for TypeDefinitionParams
impl Send for TypeDefinitionParams
impl Sync for TypeDefinitionParams
impl Unpin for TypeDefinitionParams
impl UnwindSafe for TypeDefinitionParams
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