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§

§

impl AccountResource

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

Constructs an Account resource.

pub fn sequence_number(&self) -> u64

Return the sequence_number field for the given AccountResource

pub fn has_delegated_withdrawal_capability(&self) -> bool

Returns if this account has delegated its withdrawal capability

pub fn has_delegated_key_rotation_capability(&self) -> bool

Returns if this account has delegated its key rotation capability

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

Return the authentication_key field for the given AccountResource

pub fn sent_events(&self) -> &EventHandle

Return the sent_events handle for the given AccountResource

pub fn received_events(&self) -> &EventHandle

Return the received_events handle for the given AccountResource

Trait Implementations§

§

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.
§

fn arbitrary_with( _top: <AccountResource as Arbitrary>::Parameters ) -> <AccountResource as Arbitrary>::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
§

impl Debug for AccountResource

§

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

Formats the value using the given formatter. Read more
§

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

§

fn deserialize<__D>( __deserializer: __D ) -> Result<AccountResource, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl MoveResource for AccountResource

§

impl MoveStructType for AccountResource

§

const MODULE_NAME: &'static IdentStr = ACCOUNT_MODULE_IDENTIFIER

§

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

§

impl Serialize for AccountResource

§

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 TryFrom<&AccountStateBlob> for AccountResource

§

type Error = Error

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

fn try_from( account_state_blob: &AccountStateBlob ) -> Result<AccountResource, Error>

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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
§

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

§

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> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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