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