pub struct IDLModule {
pub module_id: ModuleIdData,
pub doc: Option<String>,
pub functions: Vec<IDLScriptFunction, Global>,
pub structs: Vec<IDLStruct, Global>,
pub errors: BTreeMap<u64, IDLError, Global>,
}
Expand description
Simplified ABI for a Move module.
Fields
module_id: ModuleIdData
The module name and address.
doc: Option<String>
Documentation.
functions: Vec<IDLScriptFunction, Global>
Functions.
structs: Vec<IDLStruct, Global>
Structs.
errors: BTreeMap<u64, IDLError, Global>
Errors.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for IDLModule
impl<'de> Deserialize<'de> for IDLModule
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<IDLModule, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<IDLModule, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for IDLModule
impl Serialize for IDLModule
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for IDLModule
impl Send for IDLModule
impl Sync for IDLModule
impl Unpin for IDLModule
impl UnwindSafe for IDLModule
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