[][src]Struct xpx_supercontracts_sdk::transactions_type::DriveFsTransaction

pub struct DriveFsTransaction {
    pub id: TransactionID,
    pub transaction_type: TransactionType,
    pub signer: PubKey,
    pub signature: Signature,
    pub drive_id: Hash,
    pub add_actions: Option<Vec<Action>>,
    pub remove_actions: Option<Vec<Action>>,
}

Fields

id: TransactionIDtransaction_type: TransactionTypesigner: PubKeysignature: Signaturedrive_id: Hashadd_actions: Option<Vec<Action>>remove_actions: Option<Vec<Action>>

Methods

impl DriveFsTransaction[src]

pub fn drive_id(&self) -> Hash[src]

pub fn add_actions(&self) -> Option<Vec<Action>>[src]

pub fn remove_actions(&self) -> Option<Vec<Action>>[src]

Trait Implementations

impl Clone for DriveFsTransaction[src]

impl Debug for DriveFsTransaction[src]

impl<'de> Deserialize<'de> for DriveFsTransaction[src]

impl Serialize for DriveFsTransaction[src]

impl SignedTransaction for DriveFsTransaction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.