pub struct BatchJournalEntry {
pub to_account: String,
pub amount: String,
}Expand description
Batch journal entry.
Fields§
§to_account: StringTo account ID.
amount: StringAmount.
Trait Implementations§
Source§impl Clone for BatchJournalEntry
impl Clone for BatchJournalEntry
Source§fn clone(&self) -> BatchJournalEntry
fn clone(&self) -> BatchJournalEntry
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 BatchJournalEntry
impl Debug for BatchJournalEntry
Source§impl<'de> Deserialize<'de> for BatchJournalEntry
impl<'de> Deserialize<'de> for BatchJournalEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchJournalEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchJournalEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for BatchJournalEntry
impl Serialize for BatchJournalEntry
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 BatchJournalEntry
impl RefUnwindSafe for BatchJournalEntry
impl Send for BatchJournalEntry
impl Sync for BatchJournalEntry
impl Unpin for BatchJournalEntry
impl UnwindSafe for BatchJournalEntry
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