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>>,
},
DesignatedDealer {
human_name: String,
base_url: String,
expiration_time: u64,
compliance_key: BytesView,
preburn_balances: Vec<AmountView>,
received_mint_events_key: EventKey,
compliance_key_rotation_events_key: EventKey,
base_url_rotation_events_key: EventKey,
preburn_queues: Option<Vec<PreburnQueueView>>,
},
TreasuryCompliance {
vasp_domain_events_key: Option<EventKey>,
},
Unknown,
}
Variants§
ChildVASP
Fields
§
parent_vasp_address: AccountAddress
ParentVASP
DesignatedDealer
Fields
§
preburn_balances: Vec<AmountView>
§
received_mint_events_key: EventKey
§
compliance_key_rotation_events_key: EventKey
§
base_url_rotation_events_key: EventKey
§
preburn_queues: Option<Vec<PreburnQueueView>>
TreasuryCompliance
Unknown
The Unknown variant is deserialized by the client if it sees a variant that it doesn’t know about
Trait Implementations§
source§impl Clone for AccountRoleView
impl Clone for AccountRoleView
source§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 moresource§impl Debug for AccountRoleView
impl Debug for AccountRoleView
source§impl<'de> Deserialize<'de> for AccountRoleView
impl<'de> Deserialize<'de> for AccountRoleView
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 From<AccountRole> for AccountRoleView
impl From<AccountRole> for AccountRoleView
source§impl PartialEq<AccountRoleView> for AccountRoleView
impl PartialEq<AccountRoleView> for AccountRoleView
source§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 ==
.source§impl Serialize for AccountRoleView
impl Serialize for AccountRoleView
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.§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.