Struct lsp2::CallHierarchyOutgoingCall
pub struct CallHierarchyOutgoingCall {
pub to: CallHierarchyItem,
pub from_ranges: Vec<Range, Global>,
}
Expand description
Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.
Fields§
§to: CallHierarchyItem
The item that is called.
from_ranges: Vec<Range, Global>
The range at which this item is called. This is the range relative to the caller, e.g the item
passed to provideCallHierarchyOutgoingCalls
and not this.to
.
Trait Implementations§
§impl Clone for CallHierarchyOutgoingCall
impl Clone for CallHierarchyOutgoingCall
§fn clone(&self) -> CallHierarchyOutgoingCall
fn clone(&self) -> CallHierarchyOutgoingCall
Returns a copy 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 more§impl Debug for CallHierarchyOutgoingCall
impl Debug for CallHierarchyOutgoingCall
§impl<'de> Deserialize<'de> for CallHierarchyOutgoingCall
impl<'de> Deserialize<'de> for CallHierarchyOutgoingCall
§fn deserialize<__D>(
__deserializer: __D
) -> Result<CallHierarchyOutgoingCall, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CallHierarchyOutgoingCall, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq<CallHierarchyOutgoingCall> for CallHierarchyOutgoingCall
impl PartialEq<CallHierarchyOutgoingCall> for CallHierarchyOutgoingCall
§fn eq(&self, other: &CallHierarchyOutgoingCall) -> bool
fn eq(&self, other: &CallHierarchyOutgoingCall) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for CallHierarchyOutgoingCall
impl Serialize for CallHierarchyOutgoingCall
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CallHierarchyOutgoingCall
Auto Trait Implementations§
impl RefUnwindSafe for CallHierarchyOutgoingCall
impl Send for CallHierarchyOutgoingCall
impl Sync for CallHierarchyOutgoingCall
impl Unpin for CallHierarchyOutgoingCall
impl UnwindSafe for CallHierarchyOutgoingCall
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