pub struct MiningResponse {
pub status: ApiResponseStatus,
pub job_id: String,
pub message: Option<String>,
}
Expand description
Response payload for job submission (/mine
) and cancellation (/cancel
).
Fields§
§status: ApiResponseStatus
§job_id: String
§message: Option<String>
Trait Implementations§
Source§impl Clone for MiningResponse
impl Clone for MiningResponse
Source§fn clone(&self) -> MiningResponse
fn clone(&self) -> MiningResponse
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 MiningResponse
impl Debug for MiningResponse
Source§impl<'de> Deserialize<'de> for MiningResponse
impl<'de> Deserialize<'de> for MiningResponse
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 MiningResponse
impl RefUnwindSafe for MiningResponse
impl Send for MiningResponse
impl Sync for MiningResponse
impl Unpin for MiningResponse
impl UnwindSafe for MiningResponse
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