pub struct CasmContractEntryPoints {
pub external: Vec<CasmContractEntryPoint>,
pub l1_handler: Vec<CasmContractEntryPoint>,
pub constructor: Vec<CasmContractEntryPoint>,
}
Fields§
§external: Vec<CasmContractEntryPoint>
§l1_handler: Vec<CasmContractEntryPoint>
§constructor: Vec<CasmContractEntryPoint>
Trait Implementations§
source§impl Debug for CasmContractEntryPoints
impl Debug for CasmContractEntryPoints
source§impl Default for CasmContractEntryPoints
impl Default for CasmContractEntryPoints
source§fn default() -> CasmContractEntryPoints
fn default() -> CasmContractEntryPoints
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CasmContractEntryPoints
impl<'de> Deserialize<'de> for CasmContractEntryPoints
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 PartialEq<CasmContractEntryPoints> for CasmContractEntryPoints
impl PartialEq<CasmContractEntryPoints> for CasmContractEntryPoints
source§fn eq(&self, other: &CasmContractEntryPoints) -> bool
fn eq(&self, other: &CasmContractEntryPoints) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CasmContractEntryPoints
impl Serialize for CasmContractEntryPoints
impl Eq for CasmContractEntryPoints
impl StructuralEq for CasmContractEntryPoints
impl StructuralPartialEq for CasmContractEntryPoints
Auto Trait Implementations§
impl RefUnwindSafe for CasmContractEntryPoints
impl Send for CasmContractEntryPoints
impl Sync for CasmContractEntryPoints
impl Unpin for CasmContractEntryPoints
impl UnwindSafe for CasmContractEntryPoints
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.