Struct move_compiler::command_line::compiler::Compiler
source · [−]pub struct Compiler<'a> { /* private fields */ }
Implementations
sourceimpl<'a> Compiler<'a>
impl<'a> Compiler<'a>
pub fn from_package_paths<Paths: Into<Symbol>, NamedAddress: Into<Symbol>>(
targets: Vec<PackagePaths<Paths, NamedAddress>>,
deps: Vec<PackagePaths<Paths, NamedAddress>>
) -> Self
pub fn from_files<Paths: Into<Symbol>, NamedAddress: Into<Symbol> + Clone>(
targets: Vec<Paths>,
deps: Vec<Paths>,
named_address_map: BTreeMap<NamedAddress, NumericalAddress>
) -> Self
pub fn set_flags(self, flags: Flags) -> Self
pub fn set_interface_files_dir(self, dir: String) -> Self
pub fn set_interface_files_dir_opt(self, dir_opt: Option<String>) -> Self
pub fn set_pre_compiled_lib(
self,
pre_compiled_lib: &'a FullyCompiledProgram
) -> Self
pub fn set_pre_compiled_lib_opt(
self,
pre_compiled_lib: Option<&'a FullyCompiledProgram>
) -> Self
pub fn set_compiled_module_named_address_mapping(
self,
compiled_module_named_address_mapping: BTreeMap<CompiledModuleId, String>
) -> Self
pub fn run<const TARGET: Pass>(
self
) -> Result<(FilesSourceText, Result<(CommentMap, SteppedCompiler<'a, TARGET>), Diagnostics>)>
pub fn check(self) -> Result<(FilesSourceText, Result<(), Diagnostics>)>
pub fn check_and_report(self) -> Result<FilesSourceText>
pub fn build(
self
) -> Result<(FilesSourceText, Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>)>
pub fn build_and_report(
self
) -> Result<(FilesSourceText, Vec<AnnotatedCompiledUnit>)>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Compiler<'a>
impl<'a> Send for Compiler<'a>
impl<'a> Sync for Compiler<'a>
impl<'a> Unpin for Compiler<'a>
impl<'a> UnwindSafe for Compiler<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more