#[repr(u8)]pub enum IssuanceType {
Initial = 0,
FollowOn = 1,
OptionExercise = 2,
WarrantExercise = 3,
Conversion = 4,
StockSplit = 5,
StockDividend = 6,
}Expand description
Issuance type
Variants§
Initial = 0
Initial issuance
FollowOn = 1
Follow-on offering
OptionExercise = 2
Stock option exercise
WarrantExercise = 3
Warrant exercise
Conversion = 4
Conversion
StockSplit = 5
Stock split
StockDividend = 6
Stock dividend
Trait Implementations§
Source§impl Clone for IssuanceType
impl Clone for IssuanceType
Source§fn clone(&self) -> IssuanceType
fn clone(&self) -> IssuanceType
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 IssuanceType
impl Debug for IssuanceType
Source§impl<'de> Deserialize<'de> for IssuanceType
impl<'de> Deserialize<'de> for IssuanceType
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 Hash for IssuanceType
impl Hash for IssuanceType
Source§impl PartialEq for IssuanceType
impl PartialEq for IssuanceType
Source§fn eq(&self, other: &IssuanceType) -> bool
fn eq(&self, other: &IssuanceType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IssuanceType
impl Serialize for IssuanceType
impl Copy for IssuanceType
impl Eq for IssuanceType
impl StructuralPartialEq for IssuanceType
Auto Trait Implementations§
impl Freeze for IssuanceType
impl RefUnwindSafe for IssuanceType
impl Send for IssuanceType
impl Sync for IssuanceType
impl Unpin for IssuanceType
impl UnsafeUnpin for IssuanceType
impl UnwindSafe for IssuanceType
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