pub struct StartTransactionResponse {
pub transaction_id: i64,
}Expand description
Response to a /start_transaction request.
JSON schema
{
"description": "Response to a `/start_transaction` request.",
"type": "object",
"required": [
"transaction_id"
],
"properties": {
"transaction_id": {
"type": "integer",
"format": "int64"
}
}
}Fields§
§transaction_id: i64Implementations§
Source§impl StartTransactionResponse
impl StartTransactionResponse
pub fn builder() -> StartTransactionResponse
Trait Implementations§
Source§impl Clone for StartTransactionResponse
impl Clone for StartTransactionResponse
Source§fn clone(&self) -> StartTransactionResponse
fn clone(&self) -> StartTransactionResponse
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 StartTransactionResponse
impl Debug for StartTransactionResponse
Source§impl<'de> Deserialize<'de> for StartTransactionResponse
impl<'de> Deserialize<'de> for StartTransactionResponse
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 From<&StartTransactionResponse> for StartTransactionResponse
impl From<&StartTransactionResponse> for StartTransactionResponse
Source§fn from(value: &StartTransactionResponse) -> Self
fn from(value: &StartTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl From<StartTransactionResponse> for StartTransactionResponse
impl From<StartTransactionResponse> for StartTransactionResponse
Source§fn from(value: StartTransactionResponse) -> Self
fn from(value: StartTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for StartTransactionResponse
impl Serialize for StartTransactionResponse
Source§impl TryFrom<StartTransactionResponse> for StartTransactionResponse
impl TryFrom<StartTransactionResponse> for StartTransactionResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: StartTransactionResponse) -> Result<Self, ConversionError>
fn try_from(value: StartTransactionResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for StartTransactionResponse
impl RefUnwindSafe for StartTransactionResponse
impl Send for StartTransactionResponse
impl Sync for StartTransactionResponse
impl Unpin for StartTransactionResponse
impl UnwindSafe for StartTransactionResponse
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