pub struct BundleEntry<'a, 'b> {
pub signature_message_length: usize,
pub address: &'a str,
pub value: i64,
pub tag: &'b str,
pub timestamp: i64,
}
Expand description
Represent a entry to add to bundle
Fields§
§signature_message_length: usize
Number of siganure or message transaction needed for its length
address: &'a str
Transaction address
value: i64
Transaction value
tag: &'b str
Transaction Tag
timestamp: i64
Unix epoch: Seconds since Jan 1, 1970
Trait Implementations§
Source§impl<'a, 'b> Clone for BundleEntry<'a, 'b>
impl<'a, 'b> Clone for BundleEntry<'a, 'b>
Source§fn clone(&self) -> BundleEntry<'a, 'b>
fn clone(&self) -> BundleEntry<'a, 'b>
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<'a, 'b> Debug for BundleEntry<'a, 'b>
impl<'a, 'b> Debug for BundleEntry<'a, 'b>
Source§impl<'a, 'b> Default for BundleEntry<'a, 'b>
impl<'a, 'b> Default for BundleEntry<'a, 'b>
Source§fn default() -> BundleEntry<'a, 'b>
fn default() -> BundleEntry<'a, 'b>
Returns the “default value” for a type. Read more
Source§impl<'a, 'b> PartialEq for BundleEntry<'a, 'b>
impl<'a, 'b> PartialEq for BundleEntry<'a, 'b>
impl<'a, 'b> StructuralPartialEq for BundleEntry<'a, 'b>
Auto Trait Implementations§
impl<'a, 'b> Freeze for BundleEntry<'a, 'b>
impl<'a, 'b> RefUnwindSafe for BundleEntry<'a, 'b>
impl<'a, 'b> Send for BundleEntry<'a, 'b>
impl<'a, 'b> Sync for BundleEntry<'a, 'b>
impl<'a, 'b> Unpin for BundleEntry<'a, 'b>
impl<'a, 'b> UnwindSafe for BundleEntry<'a, 'b>
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