Struct diem_types::on_chain_config::VMPublishingOption
source · pub struct VMPublishingOption {
pub script_allow_list: Vec<HashValue>,
pub is_open_module: bool,
}
Expand description
Defines and holds the publishing policies for the VM. There are three possible configurations:
- No module publishing, only allowlisted scripts are allowed.
- No module publishing, custom scripts are allowed.
- Both module publishing and custom scripts are allowed. We represent these as an enum instead of a struct since allowlisting and module/script publishing are mutually exclusive options.
Fields§
§script_allow_list: Vec<HashValue>
§is_open_module: bool
Implementations§
source§impl VMPublishingOption
impl VMPublishingOption
pub fn locked(allowlist: Vec<HashValue>) -> Self
pub fn custom_scripts() -> Self
pub fn open() -> Self
pub fn is_open_module(&self) -> bool
pub fn is_open_script(&self) -> bool
Trait Implementations§
source§impl Clone for VMPublishingOption
impl Clone for VMPublishingOption
source§fn clone(&self) -> VMPublishingOption
fn clone(&self) -> VMPublishingOption
Returns a copy of the value. Read more
1.0.0 · 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 VMPublishingOption
impl Debug for VMPublishingOption
source§impl<'de> Deserialize<'de> for VMPublishingOption
impl<'de> Deserialize<'de> for VMPublishingOption
source§fn 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
source§impl OnChainConfig for VMPublishingOption
impl OnChainConfig for VMPublishingOption
const IDENTIFIER: &'static str = "DiemTransactionPublishingOption"
const ADDRESS: &'static str = CONFIG_ADDRESS_STR
const CONFIG_ID: ConfigID = _
fn deserialize_default_impl(bytes: &[u8]) -> Result<Self>
fn deserialize_into_config(bytes: &[u8]) -> Result<Self>
fn fetch_config<T>(storage: &T) -> Option<Self>where T: ConfigStorage,
source§impl PartialEq<VMPublishingOption> for VMPublishingOption
impl PartialEq<VMPublishingOption> for VMPublishingOption
source§fn eq(&self, other: &VMPublishingOption) -> bool
fn eq(&self, other: &VMPublishingOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for VMPublishingOption
impl Serialize for VMPublishingOption
impl Eq for VMPublishingOption
impl StructuralEq for VMPublishingOption
impl StructuralPartialEq for VMPublishingOption
Auto Trait Implementations§
impl RefUnwindSafe for VMPublishingOption
impl Send for VMPublishingOption
impl Sync for VMPublishingOption
impl Unpin for VMPublishingOption
impl UnwindSafe for VMPublishingOption
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
source§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.