pub struct AccountResource { /* private fields */ }
Expand description

A Rust representation of an Account resource. This is not how the Account is represented in the VM but it’s a convenient representation.

Implementations§

source§

impl AccountResource

source

pub fn new( sequence_number: u64, authentication_key: Vec<u8>, withdrawal_capability: Option<WithdrawCapabilityResource>, key_rotation_capability: Option<KeyRotationCapabilityResource>, sent_events: EventHandle, received_events: EventHandle ) -> Self

Constructs an Account resource.

source

pub fn sequence_number(&self) -> u64

Return the sequence_number field for the given AccountResource

source

pub fn has_delegated_withdrawal_capability(&self) -> bool

Returns if this account has delegated its withdrawal capability

source

pub fn has_delegated_key_rotation_capability(&self) -> bool

Returns if this account has delegated its key rotation capability

source

pub fn authentication_key(&self) -> &[u8]

Return the authentication_key field for the given AccountResource

source

pub fn sent_events(&self) -> &EventHandle

Return the sent_events handle for the given AccountResource

source

pub fn received_events(&self) -> &EventHandle

Return the received_events handle for the given AccountResource

Trait Implementations§

source§

impl Arbitrary for AccountResource

§

type Parameters = (<Vec<u8, Global> as Arbitrary>::Parameters, <Option<WithdrawCapabilityResource> as Arbitrary>::Parameters, <Option<KeyRotationCapabilityResource> as Arbitrary>::Parameters, <EventHandle as Arbitrary>::Parameters, <EventHandle as Arbitrary>::Parameters, <u64 as Arbitrary>::Parameters)

The type of parameters that arbitrary_with accepts for configuration of the generated Strategy. Parameters must implement Default.
§

type Strategy = Map<(<Vec<u8, Global> as Arbitrary>::Strategy, <Option<WithdrawCapabilityResource> as Arbitrary>::Strategy, <Option<KeyRotationCapabilityResource> as Arbitrary>::Strategy, <EventHandle as Arbitrary>::Strategy, <EventHandle as Arbitrary>::Strategy, <u64 as Arbitrary>::Strategy), fn(_: (Vec<u8, Global>, Option<WithdrawCapabilityResource>, Option<KeyRotationCapabilityResource>, EventHandle, EventHandle, u64)) -> AccountResource>

The type of Strategy used to generate values of type Self.
source§

fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more
§

fn arbitrary() -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). Read more
source§

impl Debug for AccountResource

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for AccountResource

source§

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 MoveResource for AccountResource

source§

impl MoveStructType for AccountResource

source§

const MODULE_NAME: &'static IdentStr = ACCOUNT_MODULE_IDENTIFIER

source§

const STRUCT_NAME: &'static IdentStr = ACCOUNT_MODULE_IDENTIFIER

§

fn module_identifier() -> Identifier

§

fn struct_identifier() -> Identifier

§

fn type_params() -> Vec<TypeTag, Global>

§

fn struct_tag() -> StructTag

source§

impl Serialize for AccountResource

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<&AccountStateBlob> for AccountResource

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(account_state_blob: &AccountStateBlob) -> Result<Self>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,

source§

fn test_only_hash(&self) -> HashValue

Generates a hash used only for tests.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,