#[repr(u8)]pub enum EntityServiceType {
Mailbox = 0,
InvestorRelations = 1,
TransferAgent = 2,
CapTable = 3,
Governance = 4,
Website = 5,
Other = 255,
}Expand description
Entity service types
Variants§
Mailbox = 0
Corporate mailbox
InvestorRelations = 1
Investor relations
TransferAgent = 2
Transfer agent
CapTable = 3
Cap table management
Governance = 4
Governance portal
Website = 5
Website
Other = 255
Other
Trait Implementations§
Source§impl Clone for EntityServiceType
impl Clone for EntityServiceType
Source§fn clone(&self) -> EntityServiceType
fn clone(&self) -> EntityServiceType
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 EntityServiceType
impl Debug for EntityServiceType
Source§impl<'de> Deserialize<'de> for EntityServiceType
impl<'de> Deserialize<'de> for EntityServiceType
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 EntityServiceType
impl Hash for EntityServiceType
Source§impl PartialEq for EntityServiceType
impl PartialEq for EntityServiceType
Source§fn eq(&self, other: &EntityServiceType) -> bool
fn eq(&self, other: &EntityServiceType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntityServiceType
impl Serialize for EntityServiceType
impl Copy for EntityServiceType
impl Eq for EntityServiceType
impl StructuralPartialEq for EntityServiceType
Auto Trait Implementations§
impl Freeze for EntityServiceType
impl RefUnwindSafe for EntityServiceType
impl Send for EntityServiceType
impl Sync for EntityServiceType
impl Unpin for EntityServiceType
impl UnsafeUnpin for EntityServiceType
impl UnwindSafe for EntityServiceType
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