pub enum AccountRoleView {
ChildVASP {
parent_vasp_address: AccountAddress,
},
ParentVASP {
human_name: String,
base_url: String,
expiration_time: u64,
compliance_key: BytesView,
num_children: u64,
compliance_key_rotation_events_key: EventKey,
base_url_rotation_events_key: EventKey,
vasp_domains: Option<Vec<DiemIdVaspDomainIdentifier, Global>>,
},
DesignatedDealer {
human_name: String,
base_url: String,
expiration_time: u64,
compliance_key: BytesView,
preburn_balances: Vec<AmountView, Global>,
received_mint_events_key: EventKey,
compliance_key_rotation_events_key: EventKey,
base_url_rotation_events_key: EventKey,
preburn_queues: Option<Vec<PreburnQueueView, Global>>,
},
TreasuryCompliance {
vasp_domain_events_key: Option<EventKey>,
},
Unknown,
}
Variants§
ChildVASP
Fields
§
parent_vasp_address: AccountAddress
ParentVASP
DesignatedDealer
Fields
§
preburn_balances: Vec<AmountView, Global>
§
received_mint_events_key: EventKey
§
compliance_key_rotation_events_key: EventKey
§
base_url_rotation_events_key: EventKey
§
preburn_queues: Option<Vec<PreburnQueueView, Global>>
TreasuryCompliance
Unknown
The Unknown variant is deserialized by the client if it sees a variant that it doesn’t know about
Trait Implementations§
§impl Clone for AccountRoleView
impl Clone for AccountRoleView
§fn clone(&self) -> AccountRoleView
fn clone(&self) -> AccountRoleView
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AccountRoleView
impl Debug for AccountRoleView
§impl<'de> Deserialize<'de> for AccountRoleView
impl<'de> Deserialize<'de> for AccountRoleView
§fn deserialize<__D>(
__deserializer: __D
) -> Result<AccountRoleView, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<AccountRoleView, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<AccountRole> for AccountRoleView
impl From<AccountRole> for AccountRoleView
§fn from(role: AccountRole) -> AccountRoleView
fn from(role: AccountRole) -> AccountRoleView
Converts to this type from the input type.
§impl PartialEq<AccountRoleView> for AccountRoleView
impl PartialEq<AccountRoleView> for AccountRoleView
§fn eq(&self, other: &AccountRoleView) -> bool
fn eq(&self, other: &AccountRoleView) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for AccountRoleView
impl Serialize for AccountRoleView
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AccountRoleView
impl StructuralEq for AccountRoleView
impl StructuralPartialEq for AccountRoleView
Auto Trait Implementations§
impl RefUnwindSafe for AccountRoleView
impl Send for AccountRoleView
impl Sync for AccountRoleView
impl Unpin for AccountRoleView
impl UnwindSafe for AccountRoleView
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.