pub struct TxOutEntry {
pub runes: Vec<RuneAmount>,
pub risky_runes: Vec<RuneAmount>,
pub value: u64,
pub spent: SpentStatus,
}Fields§
§runes: Vec<RuneAmount>§risky_runes: Vec<RuneAmount>§value: u64§spent: SpentStatusImplementations§
Trait Implementations§
Source§impl BorshDeserialize for TxOutEntry
impl BorshDeserialize for TxOutEntry
fn deserialize_reader<__R>(reader: &mut __R) -> Result<TxOutEntry, Error>where
__R: Read,
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl BorshSerialize for TxOutEntry
impl BorshSerialize for TxOutEntry
Source§impl Clone for TxOutEntry
impl Clone for TxOutEntry
Source§fn clone(&self) -> TxOutEntry
fn clone(&self) -> TxOutEntry
Returns a copy 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 TxOutEntry
impl Debug for TxOutEntry
Source§impl<'de> Deserialize<'de> for TxOutEntry
impl<'de> Deserialize<'de> for TxOutEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TxOutEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TxOutEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TxOutEntry
impl Serialize for TxOutEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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
Auto Trait Implementations§
impl Freeze for TxOutEntry
impl RefUnwindSafe for TxOutEntry
impl Send for TxOutEntry
impl Sync for TxOutEntry
impl Unpin for TxOutEntry
impl UnwindSafe for TxOutEntry
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