pub struct BswapLiquidityAddResponse {
pub operation_id: i64,
}
Expand description
BswapLiquidityAddResponse
JSON schema
{
"type": "object",
"required": [
"operationId"
],
"properties": {
"operationId": {
"examples": [
12341
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§operation_id: i64
Trait Implementations§
Source§impl Clone for BswapLiquidityAddResponse
impl Clone for BswapLiquidityAddResponse
Source§fn clone(&self) -> BswapLiquidityAddResponse
fn clone(&self) -> BswapLiquidityAddResponse
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 BswapLiquidityAddResponse
impl Debug for BswapLiquidityAddResponse
Source§impl<'de> Deserialize<'de> for BswapLiquidityAddResponse
impl<'de> Deserialize<'de> for BswapLiquidityAddResponse
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<&BswapLiquidityAddResponse> for BswapLiquidityAddResponse
impl From<&BswapLiquidityAddResponse> for BswapLiquidityAddResponse
Source§fn from(value: &BswapLiquidityAddResponse) -> Self
fn from(value: &BswapLiquidityAddResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BswapLiquidityAddResponse
impl RefUnwindSafe for BswapLiquidityAddResponse
impl Send for BswapLiquidityAddResponse
impl Sync for BswapLiquidityAddResponse
impl Unpin for BswapLiquidityAddResponse
impl UnwindSafe for BswapLiquidityAddResponse
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