pub struct ClaimableBalanceEntry {
pub balance_id: ClaimableBalanceId,
pub claimants: LimitedVarArray<Claimant, 10>,
pub asset: Asset,
pub amount: Int64,
pub ext: ClaimableBalanceEntryExt,
}Expand description
Autogenerated definition for type ClaimableBalanceEntry
Fields§
§balance_id: ClaimableBalanceId§claimants: LimitedVarArray<Claimant, 10>§asset: Asset§amount: Int64§ext: ClaimableBalanceEntryExtTrait Implementations§
Source§impl Clone for ClaimableBalanceEntry
impl Clone for ClaimableBalanceEntry
Source§fn clone(&self) -> ClaimableBalanceEntry
fn clone(&self) -> ClaimableBalanceEntry
Returns a duplicate 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 ClaimableBalanceEntry
impl Debug for ClaimableBalanceEntry
Source§impl PartialEq for ClaimableBalanceEntry
impl PartialEq for ClaimableBalanceEntry
Source§impl XdrCodec for ClaimableBalanceEntry
impl XdrCodec for ClaimableBalanceEntry
Source§fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
Encode the XDR to a write stream Read more
Source§fn from_xdr_buffered<T: AsRef<[u8]>>(
read_stream: &mut ReadStream<T>,
) -> Result<Self, DecodeError>
fn from_xdr_buffered<T: AsRef<[u8]>>( read_stream: &mut ReadStream<T>, ) -> Result<Self, DecodeError>
Decode the XDR from a read stream Read more
Source§fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode XDR provided as a reference to a byte vector Read more
Source§fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode this type from base64 encoded XDR Read more
impl Eq for ClaimableBalanceEntry
impl StructuralPartialEq for ClaimableBalanceEntry
Auto Trait Implementations§
impl Freeze for ClaimableBalanceEntry
impl RefUnwindSafe for ClaimableBalanceEntry
impl Send for ClaimableBalanceEntry
impl Sync for ClaimableBalanceEntry
impl Unpin for ClaimableBalanceEntry
impl UnwindSafe for ClaimableBalanceEntry
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