charon_lib::ast::krate

Struct TranslatedCrate

source
pub struct TranslatedCrate {
Show 14 fields pub crate_name: String, pub real_crate_name: String, pub id_to_file: Vector<FileId, FileName>, pub file_to_id: HashMap<FileName, FileId>, pub file_id_to_content: HashMap<FileId, String>, pub all_ids: LinkedHashSet<AnyTransId>, pub item_names: HashMap<AnyTransId, Name>, pub type_decls: Vector<TypeDeclId, TypeDecl>, pub fun_decls: Vector<FunDeclId, FunDecl>, pub global_decls: Vector<GlobalDeclId, GlobalDecl>, pub bodies: Vector<BodyId, Body>, pub trait_decls: Vector<TraitDeclId, TraitDecl>, pub trait_impls: Vector<TraitImplId, TraitImpl>, pub ordered_decls: Option<DeclarationsGroups>,
}
Expand description

The data of a translated crate.

Fields§

§crate_name: String

The name that the user requested for the crate. This may differ from what rustc reports as the name of the crate.

§real_crate_name: String

The name of the crate according to rustc.

§id_to_file: Vector<FileId, FileName>

File names to ids and vice-versa

§file_to_id: HashMap<FileName, FileId>§file_id_to_content: HashMap<FileId, String>

File id to content.

Note that some files may be missing, if they are not “real” files.

§all_ids: LinkedHashSet<AnyTransId>

All the ids, in the order in which we encountered them

§item_names: HashMap<AnyTransId, Name>

The names of all registered items. Available so we can know the names even of items that failed to translate.

§type_decls: Vector<TypeDeclId, TypeDecl>

The translated type definitions

§fun_decls: Vector<FunDeclId, FunDecl>

The translated function definitions

§global_decls: Vector<GlobalDeclId, GlobalDecl>

The translated global definitions

§bodies: Vector<BodyId, Body>

The bodies of functions and constants

§trait_decls: Vector<TraitDeclId, TraitDecl>

The translated trait declarations

§trait_impls: Vector<TraitImplId, TraitImpl>

The translated trait declarations

§ordered_decls: Option<DeclarationsGroups>

The re-ordered groups of declarations, initialized as empty.

Implementations§

source§

impl TranslatedCrate

source

pub fn get_item( &self, trans_id: impl Into<AnyTransId>, ) -> Option<AnyTransItem<'_>>

source

pub fn item_name(&self, trans_id: impl Into<AnyTransId>) -> Option<&Name>

source

pub fn all_items(&self) -> impl Iterator<Item = AnyTransItem<'_>>

source

pub fn all_items_with_ids( &self, ) -> impl Iterator<Item = (AnyTransId, AnyTransItem<'_>)>

Trait Implementations§

source§

impl Clone for TranslatedCrate

source§

fn clone(&self) -> TranslatedCrate

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for TranslatedCrate

source§

fn default() -> TranslatedCrate

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for TranslatedCrate

source§

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 Display for TranslatedCrate

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drive for TranslatedCrate

source§

fn drive<V: Visitor>(&self, visitor: &mut V)

source§

impl DriveMut for TranslatedCrate

source§

fn drive_mut<V: VisitorMut>(&mut self, visitor: &mut V)

source§

impl Index<BodyId> for TranslatedCrate

source§

type Output = Body

The returned type after indexing.
source§

fn index(&self, index: BodyId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<FunDeclId> for TranslatedCrate

source§

type Output = FunDecl

The returned type after indexing.
source§

fn index(&self, index: FunDeclId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<GlobalDeclId> for TranslatedCrate

source§

type Output = GlobalDecl

The returned type after indexing.
source§

fn index(&self, index: GlobalDeclId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<TraitDeclId> for TranslatedCrate

source§

type Output = TraitDecl

The returned type after indexing.
source§

fn index(&self, index: TraitDeclId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<TraitImplId> for TranslatedCrate

source§

type Output = TraitImpl

The returned type after indexing.
source§

fn index(&self, index: TraitImplId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<TypeDeclId> for TranslatedCrate

source§

type Output = TypeDecl

The returned type after indexing.
source§

fn index(&self, index: TypeDeclId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<BodyId> for TranslatedCrate

source§

fn index_mut(&mut self, index: BodyId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<FunDeclId> for TranslatedCrate

source§

fn index_mut(&mut self, index: FunDeclId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<GlobalDeclId> for TranslatedCrate

source§

fn index_mut(&mut self, index: GlobalDeclId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<TraitDeclId> for TranslatedCrate

source§

fn index_mut(&mut self, index: TraitDeclId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<TraitImplId> for TranslatedCrate

source§

fn index_mut(&mut self, index: TraitImplId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<TypeDeclId> for TranslatedCrate

source§

fn index_mut(&mut self, index: TypeDeclId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'tcx, 'ctx, 'a> IntoFormatter for &'a TranslatedCrate

source§

type C = FmtCtx<'a>

source§

fn into_fmt(self) -> Self::C

source§

impl Serialize for TranslatedCrate

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<I, T> ExtractContext<I, ()> for T

§

fn extract_context(self, _original_input: I)

Given the context attached to a nom error, and given the original input to the nom parser, extract more the useful context information. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Indentable for T
where T: Display,

§

fn indented(self, indent: &str) -> Indented<'_, Self>

Wrap this object so that its Display representation is indented with the given indent. Each non-empty line of the formatted output will be prefixed with the indent. Read more
§

fn indented_skip_initial(self, indent: &str) -> IndentedSkipIntial<'_, Self>

Wrap this object so that its Display representation is indented with the given indent. Each non-empty line except for the first of the formatted output will be prefixed with the indent. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<I> RecreateContext<I> for I

§

fn recreate_context(_original_input: I, tail: I) -> I

Given the original input, as well as the context reported by nom, recreate a context in the original string where the error occurred. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,