pub struct DistributionResponse {
pub distribution_uuid: String,
pub map_address_amount: HashMap<String, f64>,
pub map_address_asset: HashMap<String, String>,
pub asset_id: String,
}Expand description
Response from distribution creation API
Fields§
§distribution_uuid: String§map_address_amount: HashMap<String, f64>§map_address_asset: HashMap<String, String>§asset_id: StringTrait Implementations§
Source§impl Clone for DistributionResponse
impl Clone for DistributionResponse
Source§fn clone(&self) -> DistributionResponse
fn clone(&self) -> DistributionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DistributionResponse
impl Debug for DistributionResponse
Source§impl<'de> Deserialize<'de> for DistributionResponse
impl<'de> Deserialize<'de> for DistributionResponse
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
Auto Trait Implementations§
impl Freeze for DistributionResponse
impl RefUnwindSafe for DistributionResponse
impl Send for DistributionResponse
impl Sync for DistributionResponse
impl Unpin for DistributionResponse
impl UnsafeUnpin for DistributionResponse
impl UnwindSafe for DistributionResponse
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