pub struct CaptableOption {Show 14 fields
pub cliff_years: Option<i32>,
pub equity_plan_id: Option<String>,
pub equity_plan_name: Option<String>,
pub exercise_price: Option<f64>,
pub expiration_date: Option<String>,
pub grant_id: Option<String>,
pub id: Option<String>,
pub issue_date: Option<String>,
pub quantity: Option<i32>,
pub stakeholder_id: Option<String>,
pub stakeholder_name: Option<String>,
pub status: Option<String>,
pub type: Option<String>,
pub vesting_years: Option<i32>,
}Fields§
§cliff_years: Option<i32>CliffYears is how many years before any of the grant vests.
equity_plan_id: Option<String>EquityPlanID is the plan the grant draws from.
equity_plan_name: Option<String>EquityPlanName is that plan’s name.
exercise_price: Option<f64>ExercisePrice is the strike price per share.
expiration_date: Option<String>ExpirationDate is the ISO date the grant expires.
grant_id: Option<String>GrantID is the grant number, unique within the company.
id: Option<String>ID is the option id.
issue_date: Option<String>IssueDate is the ISO date the grant was issued.
quantity: Option<i32>Quantity is how many shares the grant covers.
stakeholder_id: Option<String>StakeholderID is the grantee.
stakeholder_name: Option<String>StakeholderName is that grantee’s name.
status: Option<String>Status is the grant’s state, e.g. DRAFT, ACTIVE, EXERCISED, EXPIRED or CANCELLED. Only non-terminal grants dilute the cap table.
type: Option<String>Type is the grant kind, ISO or NSO.
vesting_years: Option<i32>VestingYears is the total vesting period in years.
Implementations§
Source§impl CaptableOption
impl CaptableOption
pub fn new() -> CaptableOption
Trait Implementations§
Source§impl Clone for CaptableOption
impl Clone for CaptableOption
Source§fn clone(&self) -> CaptableOption
fn clone(&self) -> CaptableOption
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 CaptableOption
impl Debug for CaptableOption
Source§impl Default for CaptableOption
impl Default for CaptableOption
Source§fn default() -> CaptableOption
fn default() -> CaptableOption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CaptableOption
impl<'de> Deserialize<'de> for CaptableOption
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 CaptableOption
impl PartialEq for CaptableOption
Source§impl Serialize for CaptableOption
impl Serialize for CaptableOption
impl StructuralPartialEq for CaptableOption
Auto Trait Implementations§
impl Freeze for CaptableOption
impl RefUnwindSafe for CaptableOption
impl Send for CaptableOption
impl Sync for CaptableOption
impl Unpin for CaptableOption
impl UnsafeUnpin for CaptableOption
impl UnwindSafe for CaptableOption
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