pub struct CallHierarchyOutgoingCall {
pub to: CallHierarchyItem,
pub from_ranges: Vec<Range>,
}Expand description
Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.
@since 3.16.0
Fields§
§to: CallHierarchyItemThe item that is called.
from_ranges: Vec<Range>The range at which this item is called. This is the range relative to the caller, e.g the item
passed to [provideCallHierarchyOutgoingCalls][CallHierarchyItemProvider::provideCallHierarchyOutgoingCalls]
and not this.to.
Implementations§
Source§impl CallHierarchyOutgoingCall
impl CallHierarchyOutgoingCall
pub const fn new(to: CallHierarchyItem, from_ranges: Vec<Range>) -> Self
Trait Implementations§
Source§impl Clone for CallHierarchyOutgoingCall
impl Clone for CallHierarchyOutgoingCall
Source§fn clone(&self) -> CallHierarchyOutgoingCall
fn clone(&self) -> CallHierarchyOutgoingCall
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 Debug for CallHierarchyOutgoingCall
impl Debug for CallHierarchyOutgoingCall
Source§impl<'de> Deserialize<'de> for CallHierarchyOutgoingCall
impl<'de> Deserialize<'de> for CallHierarchyOutgoingCall
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 CallHierarchyOutgoingCall
impl PartialEq for CallHierarchyOutgoingCall
Source§fn eq(&self, other: &CallHierarchyOutgoingCall) -> bool
fn eq(&self, other: &CallHierarchyOutgoingCall) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CallHierarchyOutgoingCall
impl StructuralPartialEq for CallHierarchyOutgoingCall
Auto Trait Implementations§
impl Freeze for CallHierarchyOutgoingCall
impl RefUnwindSafe for CallHierarchyOutgoingCall
impl Send for CallHierarchyOutgoingCall
impl Sync for CallHierarchyOutgoingCall
impl Unpin for CallHierarchyOutgoingCall
impl UnsafeUnpin 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