pub struct OccurrenceEntry {
pub local_id: u32,
pub role: OccurrenceRole,
pub name: String,
pub qualifier: Vec<String>,
pub namespace: SymbolNamespace,
pub scope: u32,
pub span: ByteSpan,
}Expand description
One unresolved symbol occurrence, numbered in source order.
Fields§
§local_id: u32§role: OccurrenceRole§name: String§qualifier: Vec<String>§namespace: SymbolNamespace§scope: u32§span: ByteSpanTrait Implementations§
Source§impl Clone for OccurrenceEntry
impl Clone for OccurrenceEntry
Source§fn clone(&self) -> OccurrenceEntry
fn clone(&self) -> OccurrenceEntry
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 OccurrenceEntry
impl Debug for OccurrenceEntry
Source§impl<'de> Deserialize<'de> for OccurrenceEntry
impl<'de> Deserialize<'de> for OccurrenceEntry
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 OccurrenceEntry
Source§impl PartialEq for OccurrenceEntry
impl PartialEq for OccurrenceEntry
Source§impl Serialize for OccurrenceEntry
impl Serialize for OccurrenceEntry
impl StructuralPartialEq for OccurrenceEntry
Auto Trait Implementations§
impl Freeze for OccurrenceEntry
impl RefUnwindSafe for OccurrenceEntry
impl Send for OccurrenceEntry
impl Sync for OccurrenceEntry
impl Unpin for OccurrenceEntry
impl UnsafeUnpin for OccurrenceEntry
impl UnwindSafe for OccurrenceEntry
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