pub struct DiscoveredFile {
pub root: Moniker,
pub root_kind: &'static [u8],
pub defs: Vec<DiscoveredDef>,
pub def_index: DefIndex,
pub scopes: ScopeTree,
pub imports: ImportTable,
}Fields§
§root: Moniker§root_kind: &'static [u8]§defs: Vec<DiscoveredDef>§def_index: DefIndex§scopes: ScopeTree§imports: ImportTableImplementations§
Source§impl DiscoveredFile
impl DiscoveredFile
pub fn new( root: Moniker, root_kind: &'static [u8], defs: Vec<DiscoveredDef>, scopes: ScopeTree, imports: ImportTable, ) -> Self
Trait Implementations§
Source§impl Clone for DiscoveredFile
impl Clone for DiscoveredFile
Source§fn clone(&self) -> DiscoveredFile
fn clone(&self) -> DiscoveredFile
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 DiscoveredFile
impl Debug for DiscoveredFile
impl Eq for DiscoveredFile
Source§impl PartialEq for DiscoveredFile
impl PartialEq for DiscoveredFile
impl StructuralPartialEq for DiscoveredFile
Auto Trait Implementations§
impl Freeze for DiscoveredFile
impl RefUnwindSafe for DiscoveredFile
impl Send for DiscoveredFile
impl Sync for DiscoveredFile
impl Unpin for DiscoveredFile
impl UnsafeUnpin for DiscoveredFile
impl UnwindSafe for DiscoveredFile
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§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.