pub struct TrustLineEntry {
pub account_id: AccountId,
pub asset: TrustLineAsset,
pub balance: Int64,
pub limit: Int64,
pub flags: Uint32,
pub ext: TrustLineEntryExt,
}Expand description
Autogenerated definition for type TrustLineEntry
Fields§
§account_id: AccountId§asset: TrustLineAsset§balance: Int64§limit: Int64§flags: Uint32§ext: TrustLineEntryExtTrait Implementations§
Source§impl Clone for TrustLineEntry
impl Clone for TrustLineEntry
Source§fn clone(&self) -> TrustLineEntry
fn clone(&self) -> TrustLineEntry
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 TrustLineEntry
impl Debug for TrustLineEntry
Source§impl PartialEq for TrustLineEntry
impl PartialEq for TrustLineEntry
Source§impl XdrCodec for TrustLineEntry
impl XdrCodec for TrustLineEntry
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 TrustLineEntry
impl StructuralPartialEq for TrustLineEntry
Auto Trait Implementations§
impl Freeze for TrustLineEntry
impl RefUnwindSafe for TrustLineEntry
impl Send for TrustLineEntry
impl Sync for TrustLineEntry
impl Unpin for TrustLineEntry
impl UnwindSafe for TrustLineEntry
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