Struct diem_sdk::types::on_chain_config::VMPublishingOption
pub struct VMPublishingOption {
pub script_allow_list: Vec<HashValue, Global>,
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, Global>
§is_open_module: bool
Implementations§
§impl VMPublishingOption
impl VMPublishingOption
pub fn locked(allowlist: Vec<HashValue, Global>) -> VMPublishingOption
pub fn custom_scripts() -> VMPublishingOption
pub fn open() -> VMPublishingOption
pub fn is_open_module(&self) -> bool
pub fn is_open_script(&self) -> bool
Trait Implementations§
§impl Clone for VMPublishingOption
impl Clone for VMPublishingOption
§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 more§impl Debug for VMPublishingOption
impl Debug for VMPublishingOption
§impl<'de> Deserialize<'de> for VMPublishingOption
impl<'de> Deserialize<'de> for VMPublishingOption
§fn deserialize<__D>(
__deserializer: __D
) -> Result<VMPublishingOption, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<VMPublishingOption, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl OnChainConfig for VMPublishingOption
impl OnChainConfig for VMPublishingOption
const IDENTIFIER: &'static str = "DiemTransactionPublishingOption"
const ADDRESS: &'static str = CONFIG_ADDRESS_STR
const CONFIG_ID: ConfigID = ConfigID(Self::ADDRESS, Self::IDENTIFIER)
fn deserialize_default_impl(bytes: &[u8]) -> Result<Self, Error>
fn deserialize_into_config(bytes: &[u8]) -> Result<Self, Error>
fn fetch_config<T>(storage: &T) -> Option<Self>where T: ConfigStorage,
§impl PartialEq<VMPublishingOption> for VMPublishingOption
impl PartialEq<VMPublishingOption> for VMPublishingOption
§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 ==
.§impl Serialize for VMPublishingOption
impl Serialize for VMPublishingOption
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.