pub struct ContractMetadataDto {
pub id: String,
pub base_asset_id: String,
pub contract_address: String,
pub contract_template_id: String,
pub vault_account_id: Option<String>,
}Fields§
§id: StringThe deployed contract ID
base_asset_id: StringThe blockchain base asset ID
contract_address: StringThe address of the token contract
contract_template_id: StringThe contract template ID
vault_account_id: Option<String>The vault account ID that initiated the request to issue the token
Implementations§
Trait Implementations§
Source§impl Clone for ContractMetadataDto
impl Clone for ContractMetadataDto
Source§fn clone(&self) -> ContractMetadataDto
fn clone(&self) -> ContractMetadataDto
Returns a duplicate 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 ContractMetadataDto
impl Debug for ContractMetadataDto
Source§impl Default for ContractMetadataDto
impl Default for ContractMetadataDto
Source§fn default() -> ContractMetadataDto
fn default() -> ContractMetadataDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContractMetadataDto
impl<'de> Deserialize<'de> for ContractMetadataDto
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 for ContractMetadataDto
impl PartialEq for ContractMetadataDto
Source§impl Serialize for ContractMetadataDto
impl Serialize for ContractMetadataDto
impl StructuralPartialEq for ContractMetadataDto
Auto Trait Implementations§
impl Freeze for ContractMetadataDto
impl RefUnwindSafe for ContractMetadataDto
impl Send for ContractMetadataDto
impl Sync for ContractMetadataDto
impl Unpin for ContractMetadataDto
impl UnwindSafe for ContractMetadataDto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more