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