pub struct BulkTransactions {
pub transactions: Vec<SaveTransactionWithOptionalFields>,
}
Fields§
§transactions: Vec<SaveTransactionWithOptionalFields>
Implementations§
Source§impl BulkTransactions
impl BulkTransactions
pub fn new( transactions: Vec<SaveTransactionWithOptionalFields>, ) -> BulkTransactions
Trait Implementations§
Source§impl Clone for BulkTransactions
impl Clone for BulkTransactions
Source§fn clone(&self) -> BulkTransactions
fn clone(&self) -> BulkTransactions
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 BulkTransactions
impl Debug for BulkTransactions
Source§impl<'de> Deserialize<'de> for BulkTransactions
impl<'de> Deserialize<'de> for BulkTransactions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BulkTransactions
impl PartialEq for BulkTransactions
Source§impl Serialize for BulkTransactions
impl Serialize for BulkTransactions
impl StructuralPartialEq for BulkTransactions
Auto Trait Implementations§
impl Freeze for BulkTransactions
impl RefUnwindSafe for BulkTransactions
impl Send for BulkTransactions
impl Sync for BulkTransactions
impl Unpin for BulkTransactions
impl UnwindSafe for BulkTransactions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more