pub struct SaveTransactionResponse {
pub transaction: Transaction,
pub transaction_ids: Vec<String>,
pub duplicate_import_ids: Option<Vec<String>>,
pub server_knowledge: ServerKnowledge,
}Expand description
Response from creating or single updating transactions.
Fields§
§transaction: Transaction§transaction_ids: Vec<String>§duplicate_import_ids: Option<Vec<String>>§server_knowledge: ServerKnowledgeTrait Implementations§
Source§impl Clone for SaveTransactionResponse
impl Clone for SaveTransactionResponse
Source§fn clone(&self) -> SaveTransactionResponse
fn clone(&self) -> SaveTransactionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SaveTransactionResponse
impl Debug for SaveTransactionResponse
Source§impl<'de> Deserialize<'de> for SaveTransactionResponse
impl<'de> Deserialize<'de> for SaveTransactionResponse
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 SaveTransactionResponse
impl PartialEq for SaveTransactionResponse
impl StructuralPartialEq for SaveTransactionResponse
Auto Trait Implementations§
impl Freeze for SaveTransactionResponse
impl RefUnwindSafe for SaveTransactionResponse
impl Send for SaveTransactionResponse
impl Sync for SaveTransactionResponse
impl Unpin for SaveTransactionResponse
impl UnsafeUnpin for SaveTransactionResponse
impl UnwindSafe for SaveTransactionResponse
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