pub struct CallHierarchyIncomingCallsParams {
pub item: CallHierarchyItem,
pub work_done_token: Option<ProgressToken>,
pub partial_result_token: Option<ProgressToken>,
}Expand description
The parameter of a callHierarchy/incomingCalls request.
@since 3.16.0
Fields§
§item: CallHierarchyItem§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 CallHierarchyIncomingCallsParams
impl Clone for CallHierarchyIncomingCallsParams
Source§fn clone(&self) -> CallHierarchyIncomingCallsParams
fn clone(&self) -> CallHierarchyIncomingCallsParams
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 CallHierarchyIncomingCallsParams
impl<'de> Deserialize<'de> for CallHierarchyIncomingCallsParams
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 CallHierarchyIncomingCallsParams
impl StructuralPartialEq for CallHierarchyIncomingCallsParams
Auto Trait Implementations§
impl Freeze for CallHierarchyIncomingCallsParams
impl RefUnwindSafe for CallHierarchyIncomingCallsParams
impl Send for CallHierarchyIncomingCallsParams
impl Sync for CallHierarchyIncomingCallsParams
impl Unpin for CallHierarchyIncomingCallsParams
impl UnsafeUnpin for CallHierarchyIncomingCallsParams
impl UnwindSafe for CallHierarchyIncomingCallsParams
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