pub struct IssuanceRef {
pub governance_action_id: ActionId,
pub issuance_type: IssuanceType,
pub price_per_share: Option<u128>,
pub round_id: Option<String>,
}Expand description
Issuance reference for minting
Fields§
§governance_action_id: ActionIdGovernance action authorizing issuance
issuance_type: IssuanceTypeIssuance type
Price per share (if applicable)
round_id: Option<String>Round identifier
Trait Implementations§
Source§impl Clone for IssuanceRef
impl Clone for IssuanceRef
Source§fn clone(&self) -> IssuanceRef
fn clone(&self) -> IssuanceRef
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 IssuanceRef
impl Debug for IssuanceRef
Source§impl<'de> Deserialize<'de> for IssuanceRef
impl<'de> Deserialize<'de> for IssuanceRef
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 IssuanceRef
impl PartialEq for IssuanceRef
Source§fn eq(&self, other: &IssuanceRef) -> bool
fn eq(&self, other: &IssuanceRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IssuanceRef
impl Serialize for IssuanceRef
impl Eq for IssuanceRef
impl StructuralPartialEq for IssuanceRef
Auto Trait Implementations§
impl Freeze for IssuanceRef
impl RefUnwindSafe for IssuanceRef
impl Send for IssuanceRef
impl Sync for IssuanceRef
impl Unpin for IssuanceRef
impl UnsafeUnpin for IssuanceRef
impl UnwindSafe for IssuanceRef
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