Struct move_package::BuildConfig
source · [−]pub struct BuildConfig {
pub dev_mode: bool,
pub test_mode: bool,
pub generate_docs: bool,
pub generate_abis: bool,
pub install_dir: Option<PathBuf>,
pub force_recompilation: bool,
pub additional_named_addresses: BTreeMap<String, AccountAddress>,
pub architecture: Option<Architecture>,
pub fetch_deps_only: bool,
}
Fields
dev_mode: bool
Compile in ‘dev’ mode. The ‘dev-addresses’ and ‘dev-dependencies’ fields will be used if this flag is set. This flag is useful for development of packages that expose named addresses that are not set to a specific value.
test_mode: bool
Compile in ‘test’ mode. The ‘dev-addresses’ and ‘dev-dependencies’ fields will be used along with any code in the ‘tests’ directory.
generate_docs: bool
Generate documentation for packages
generate_abis: bool
Generate ABIs for packages
install_dir: Option<PathBuf>
Installation directory for compiled artifacts. Defaults to current directory.
force_recompilation: bool
Force recompilation of all packages
additional_named_addresses: BTreeMap<String, AccountAddress>
Additional named address mapping. Useful for tools in rust
architecture: Option<Architecture>
fetch_deps_only: bool
Only fetch dependency repos to MOVE_HOME
Implementations
sourceimpl BuildConfig
impl BuildConfig
sourcepub fn compile_package<W: Write>(
self,
path: &Path,
writer: &mut W
) -> Result<CompiledPackage>
pub fn compile_package<W: Write>(
self,
path: &Path,
writer: &mut W
) -> Result<CompiledPackage>
Compile the package at path
or the containing Move package. Exit process on warning or
failure.
sourcepub fn compile_package_no_exit<W: Write>(
self,
path: &Path,
writer: &mut W
) -> Result<CompiledPackage>
pub fn compile_package_no_exit<W: Write>(
self,
path: &Path,
writer: &mut W
) -> Result<CompiledPackage>
Compile the package at path
or the containing Move package. Do not exit process on warning
or failure.
pub fn move_model_for_package(
self,
path: &Path,
model_config: ModelConfig
) -> Result<GlobalEnv>
pub fn download_deps_for_package(&self, path: &Path) -> Result<()>
pub fn resolution_graph_for_package(self, path: &Path) -> Result<ResolvedGraph>
Trait Implementations
sourceimpl Args for BuildConfig
impl Args for BuildConfig
sourceimpl Clone for BuildConfig
impl Clone for BuildConfig
sourcefn clone(&self) -> BuildConfig
fn clone(&self) -> BuildConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl CommandFactory for BuildConfig
impl CommandFactory for BuildConfig
sourcefn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
Deprecated, replaced with CommandFactory::command_for_update
sourcefn command_for_update<'help>() -> App<'help>
fn command_for_update<'help>() -> App<'help>
sourceimpl Debug for BuildConfig
impl Debug for BuildConfig
sourceimpl Default for BuildConfig
impl Default for BuildConfig
sourceimpl<'de> Deserialize<'de> for BuildConfig
impl<'de> Deserialize<'de> for BuildConfig
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl FromArgMatches for BuildConfig
impl FromArgMatches for BuildConfig
sourcefn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Instantiate Self
from ArgMatches
, parsing the arguments as needed. Read more
sourcefn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
Instantiate Self
from ArgMatches
, parsing the arguments as needed. Read more
sourcefn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
Assign values from ArgMatches
to self
.
sourcefn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
Assign values from ArgMatches
to self
.
sourceimpl Parser for BuildConfig
impl Parser for BuildConfig
sourcefn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, exit on error
sourcefn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, return Err on error.
sourcefn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, exit on error
sourcefn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, return Err on error.
sourceimpl PartialEq<BuildConfig> for BuildConfig
impl PartialEq<BuildConfig> for BuildConfig
sourcefn eq(&self, other: &BuildConfig) -> bool
fn eq(&self, other: &BuildConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BuildConfig) -> bool
fn ne(&self, other: &BuildConfig) -> bool
This method tests for !=
.
sourceimpl PartialOrd<BuildConfig> for BuildConfig
impl PartialOrd<BuildConfig> for BuildConfig
sourcefn partial_cmp(&self, other: &BuildConfig) -> Option<Ordering>
fn partial_cmp(&self, other: &BuildConfig) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for BuildConfig
impl Serialize for BuildConfig
impl Eq for BuildConfig
impl StructuralEq for BuildConfig
impl StructuralPartialEq for BuildConfig
Auto Trait Implementations
impl RefUnwindSafe for BuildConfig
impl Send for BuildConfig
impl Sync for BuildConfig
impl Unpin for BuildConfig
impl UnwindSafe for BuildConfig
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more