pub struct CallResolution {
pub name: QualifiedName,
pub callee: HirCallableRef,
pub kind: CallKind,
pub requested_outputs: RequestedOutputCount,
pub span: Span,
}Fields§
§name: QualifiedName§callee: HirCallableRef§kind: CallKind§requested_outputs: RequestedOutputCount§span: SpanTrait Implementations§
Source§impl Clone for CallResolution
impl Clone for CallResolution
Source§fn clone(&self) -> CallResolution
fn clone(&self) -> CallResolution
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 CallResolution
impl Debug for CallResolution
Source§impl<'de> Deserialize<'de> for CallResolution
impl<'de> Deserialize<'de> for CallResolution
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 CallResolution
impl PartialEq for CallResolution
Source§fn eq(&self, other: &CallResolution) -> bool
fn eq(&self, other: &CallResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallResolution
impl Serialize for CallResolution
impl StructuralPartialEq for CallResolution
Auto Trait Implementations§
impl Freeze for CallResolution
impl RefUnwindSafe for CallResolution
impl Send for CallResolution
impl Sync for CallResolution
impl Unpin for CallResolution
impl UnsafeUnpin for CallResolution
impl UnwindSafe for CallResolution
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