pub struct UpdateBalancePayload {
pub authority: Pubkey,
pub transaction: Transaction,
pub hash: Hash,
}Fields§
The authority of the member account sending the payload.
transaction: TransactionThe transaction containing the attribute instruction signed by the client as fee payer.
hash: HashThe hash used to signed the transaction on the client.
Trait Implementations§
Source§impl Debug for UpdateBalancePayload
impl Debug for UpdateBalancePayload
Source§impl<'de> Deserialize<'de> for UpdateBalancePayload
impl<'de> Deserialize<'de> for UpdateBalancePayload
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
Auto Trait Implementations§
impl Freeze for UpdateBalancePayload
impl RefUnwindSafe for UpdateBalancePayload
impl Send for UpdateBalancePayload
impl Sync for UpdateBalancePayload
impl Unpin for UpdateBalancePayload
impl UnwindSafe for UpdateBalancePayload
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more