charon_lib::ast::krate

Struct TranslatedCrate

source
pub struct TranslatedCrate {
    pub crate_name: String,
    pub real_crate_name: String,
    pub options: CliOpts,
    pub all_ids: IndexSet<AnyTransId>,
    pub item_names: HashMap<AnyTransId, Name>,
    pub files: Vector<FileId, File>,
    pub type_decls: Vector<TypeDeclId, TypeDecl>,
    pub fun_decls: Vector<FunDeclId, FunDecl>,
    pub global_decls: Vector<GlobalDeclId, GlobalDecl>,
    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.

§options: CliOpts

The options used when calling Charon. It is useful for the applications which consumed the serialized code, to check that Charon was called with the proper options.

§all_ids: IndexSet<AnyTransId>

All the item 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. Invariant: after translation, any existing AnyTransId must have an associated name, even if the corresponding item wasn’t translated.

§files: Vector<FileId, File>

The translated files.

§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

§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 item_name(&self, trans_id: impl Into<AnyTransId>) -> Option<&Name>

source

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

source

pub fn get_item_mut( &mut self, trans_id: AnyTransId, ) -> Option<AnyTransItemMut<'_>>

source

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

source

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

source

pub fn all_items_mut(&mut self) -> impl Iterator<Item = AnyTransItemMut<'_>>

Trait Implementations§

source§

impl AstVisitable for TranslatedCrate

source§

fn drive<V: VisitAst>(&self, v: &mut V) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
source§

fn drive_mut<V: VisitAstMut>(&mut self, v: &mut V) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
source§

fn name(&self) -> &'static str

The name of the type, used for debug logging.
source§

fn dyn_visit<T: AstVisitable>(&self, f: impl FnMut(&T))

Visit all occurrences of that type inside self, in pre-order traversal.
source§

fn dyn_visit_mut<T: AstVisitable>(&mut self, f: impl FnMut(&mut T))

Visit all occurrences of that type inside self, in pre-order traversal.
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<'s, V> Drive<'s, V> for TranslatedCrate
where V: Visitor + Visit<'s, HashMap<AnyTransId, Name>> + Visit<'s, Vector<TypeDeclId, TypeDecl>> + Visit<'s, Vector<FunDeclId, FunDecl>> + Visit<'s, Vector<GlobalDeclId, GlobalDecl>> + Visit<'s, Vector<TraitDeclId, TraitDecl>> + Visit<'s, Vector<TraitImplId, TraitImpl>>,

source§

fn drive_inner(&'s self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
source§

impl<'s, V> DriveMut<'s, V> for TranslatedCrate
where V: Visitor + VisitMut<'s, HashMap<AnyTransId, Name>> + VisitMut<'s, Vector<TypeDeclId, TypeDecl>> + VisitMut<'s, Vector<FunDeclId, FunDecl>> + VisitMut<'s, Vector<GlobalDeclId, GlobalDecl>> + VisitMut<'s, Vector<TraitDeclId, TraitDecl>> + VisitMut<'s, Vector<TraitImplId, TraitImpl>>,

source§

fn drive_inner_mut(&'s mut self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
source§

impl HasVectorOf<FunDeclId> for TranslatedCrate

source§

fn get_vector(&self) -> &Vector<FunDeclId, Self::Output>

source§

fn get_vector_mut(&mut self) -> &mut Vector<FunDeclId, Self::Output>

source§

impl HasVectorOf<GlobalDeclId> for TranslatedCrate

source§

impl HasVectorOf<TraitDeclId> for TranslatedCrate

source§

fn get_vector(&self) -> &Vector<TraitDeclId, Self::Output>

source§

fn get_vector_mut(&mut self) -> &mut Vector<TraitDeclId, Self::Output>

source§

impl HasVectorOf<TraitImplId> for TranslatedCrate

source§

fn get_vector(&self) -> &Vector<TraitImplId, Self::Output>

source§

fn get_vector_mut(&mut self) -> &mut Vector<TraitImplId, Self::Output>

source§

impl HasVectorOf<TypeDeclId> for TranslatedCrate

source§

fn get_vector(&self) -> &Vector<TypeDeclId, Self::Output>

source§

fn get_vector_mut(&mut self) -> &mut Vector<TypeDeclId, Self::Output>

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

impl<T> TyVisitable for T
where T: AstVisitable,

source§

fn substitute(self, generics: &GenericArgs) -> Self

source§

fn substitute_with_self( self, generics: &GenericArgs, self_ref: &TraitRefKind, ) -> Self

source§

fn move_under_binder(self) -> Self

Move under one binder.
source§

fn move_under_binders(self, depth: DeBruijnId) -> Self

Move under depth binders.
source§

fn move_from_under_binders(self, depth: DeBruijnId) -> Option<Self>

Move the value out of depth binders. Returns None if it contains a variable bound in one of these depth binders.
source§

fn visit_db_id<B>( &mut self, f: impl FnMut(&mut DeBruijnId) -> ControlFlow<B>, ) -> ControlFlow<B>

Visit the de Bruijn ids contained in self, as seen from the outside of self. This means that any variable bound inside self will be skipped, and all the seen indices will count from the outside of self.
§

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>,