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