pub struct InventoryEntry {
pub name: String,
pub line: u32,
pub start_column: u32,
pub end_line: u32,
pub end_column: u32,
pub source_hash: String,
pub is_callback: bool,
}Expand description
A single static-inventory entry for one function.
This is the engine-owned inventory contract exposed to CLI upload surfaces. The extractor owns AST traversal; the engine owns the public shape that downstream crates construct and upload.
Fields§
§name: StringBeacon-compatible function name.
line: u321-based source line of the function declaration.
start_column: u321-indexed UTF-16 column of the function node start.
end_line: u321-based source line where the function node ends.
end_column: u321-indexed UTF-16 column of the function node end.
source_hash: StringContent digest of the function’s full-span source slice.
is_callback: boolWhether the name came from the callee of the call this function is
passed to (arr.map(cb) -> map) rather than from a declaration,
a binding, or a property key.
Trait Implementations§
Source§impl Clone for InventoryEntry
impl Clone for InventoryEntry
Source§impl Debug for InventoryEntry
impl Debug for InventoryEntry
impl Eq for InventoryEntry
Source§impl From<InventoryEntry> for InventoryEntry
impl From<InventoryEntry> for InventoryEntry
Source§fn from(entry: InventoryEntry) -> Self
fn from(entry: InventoryEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InventoryEntry
impl PartialEq for InventoryEntry
impl StructuralPartialEq for InventoryEntry
Auto Trait Implementations§
impl Freeze for InventoryEntry
impl RefUnwindSafe for InventoryEntry
impl Send for InventoryEntry
impl Sync for InventoryEntry
impl Unpin for InventoryEntry
impl UnsafeUnpin for InventoryEntry
impl UnwindSafe for InventoryEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more