#[repr(u16)]pub enum GovernanceActionType {
Show 17 variants
BoardResolutionApproved = 100,
BoardMeetingMinutes = 101,
BoardMemberAppointed = 102,
BoardMemberRemoved = 103,
ShareholderVoteApproved = 200,
AnnualMeetingHeld = 201,
SpecialMeetingHeld = 202,
WrittenConsentObtained = 203,
OfficerAppointment = 300,
OfficerRemoval = 301,
OfficerRoleChanged = 302,
SigningAuthorityGrant = 400,
SigningAuthorityRevoke = 401,
AuthorityScopeChanged = 402,
BylawsAmended = 500,
ArticlesAmended = 501,
RegisteredAgentChanged = 502,
}Expand description
Governance action types
Variants§
BoardResolutionApproved = 100
Board resolution approved
BoardMeetingMinutes = 101
Board meeting minutes recorded
BoardMemberAppointed = 102
Board member appointed
BoardMemberRemoved = 103
Board member removed
Shareholder vote approved
AnnualMeetingHeld = 201
Annual meeting held
SpecialMeetingHeld = 202
Special meeting held
WrittenConsentObtained = 203
Written consent obtained
OfficerAppointment = 300
Officer appointed
OfficerRemoval = 301
Officer removed
OfficerRoleChanged = 302
Officer role changed
SigningAuthorityGrant = 400
Signing authority granted
SigningAuthorityRevoke = 401
Signing authority revoked
AuthorityScopeChanged = 402
Authority scope changed
BylawsAmended = 500
Bylaws amended
ArticlesAmended = 501
Articles amended
RegisteredAgentChanged = 502
Registered agent changed
Implementations§
Trait Implementations§
Source§impl Clone for GovernanceActionType
impl Clone for GovernanceActionType
Source§fn clone(&self) -> GovernanceActionType
fn clone(&self) -> GovernanceActionType
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 GovernanceActionType
impl Debug for GovernanceActionType
Source§impl<'de> Deserialize<'de> for GovernanceActionType
impl<'de> Deserialize<'de> for GovernanceActionType
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 GovernanceActionType
impl Hash for GovernanceActionType
Source§impl PartialEq for GovernanceActionType
impl PartialEq for GovernanceActionType
Source§fn eq(&self, other: &GovernanceActionType) -> bool
fn eq(&self, other: &GovernanceActionType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GovernanceActionType
impl Serialize for GovernanceActionType
impl Copy for GovernanceActionType
impl Eq for GovernanceActionType
impl StructuralPartialEq for GovernanceActionType
Auto Trait Implementations§
impl Freeze for GovernanceActionType
impl RefUnwindSafe for GovernanceActionType
impl Send for GovernanceActionType
impl Sync for GovernanceActionType
impl Unpin for GovernanceActionType
impl UnsafeUnpin for GovernanceActionType
impl UnwindSafe for GovernanceActionType
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