pub struct CaptableRound {
pub close_date: Option<String>,
pub created_at: Option<i32>,
pub id: Option<String>,
pub name: Option<String>,
pub pre_money_valuation: Option<f64>,
pub price_per_share: Option<f64>,
pub raised_amount: Option<f64>,
pub round_type: Option<String>,
pub share_class_id: Option<String>,
pub status: Option<String>,
pub target_amount: Option<f64>,
}Fields§
§close_date: Option<String>CloseDate is the ISO date the round closed, once it has.
created_at: Option<i32>CreatedAt is when the round was recorded, in unix milliseconds.
id: Option<String>ID is the round id.
name: Option<String>Name is the round name, e.g. "Series A".
pre_money_valuation: Option<f64>PreMoneyValuation is the pre-money valuation, for a priced round.
PricePerShare is the price per share, for a priced round.
raised_amount: Option<f64>RaisedAmount is how much has been invested so far.
round_type: Option<String>RoundType is PRICED, SAFE or CONVERTIBLE_NOTE.
ShareClassID is the class a priced round issues into.
status: Option<String>Status is OPEN or CLOSED.
target_amount: Option<f64>TargetAmount is how much the round set out to raise.
Implementations§
Source§impl CaptableRound
impl CaptableRound
pub fn new() -> CaptableRound
Trait Implementations§
Source§impl Clone for CaptableRound
impl Clone for CaptableRound
Source§fn clone(&self) -> CaptableRound
fn clone(&self) -> CaptableRound
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 CaptableRound
impl Debug for CaptableRound
Source§impl Default for CaptableRound
impl Default for CaptableRound
Source§fn default() -> CaptableRound
fn default() -> CaptableRound
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CaptableRound
impl<'de> Deserialize<'de> for CaptableRound
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 CaptableRound
impl PartialEq for CaptableRound
Source§impl Serialize for CaptableRound
impl Serialize for CaptableRound
impl StructuralPartialEq for CaptableRound
Auto Trait Implementations§
impl Freeze for CaptableRound
impl RefUnwindSafe for CaptableRound
impl Send for CaptableRound
impl Sync for CaptableRound
impl Unpin for CaptableRound
impl UnsafeUnpin for CaptableRound
impl UnwindSafe for CaptableRound
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