pub struct HiveResponse {
pub jsonrpc: String,
pub id: u16,
pub result: Option<HiveResponseResult>,
}
Fields§
§jsonrpc: String
§id: u16
§result: Option<HiveResponseResult>
Trait Implementations§
Source§impl Clone for HiveResponse
impl Clone for HiveResponse
Source§fn clone(&self) -> HiveResponse
fn clone(&self) -> HiveResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HiveResponse
impl Debug for HiveResponse
Source§impl<'de> Deserialize<'de> for HiveResponse
impl<'de> Deserialize<'de> for HiveResponse
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
Auto Trait Implementations§
impl Freeze for HiveResponse
impl RefUnwindSafe for HiveResponse
impl Send for HiveResponse
impl Sync for HiveResponse
impl Unpin for HiveResponse
impl UnwindSafe for HiveResponse
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