[][src]Struct stratum_types::Response

pub struct Response<PP> where
    PP: PoolParams
{ pub id: ID, pub method: StratumMethod, pub result: Option<Results<PP>>, pub error: Option<StratumError>, }

Fields

id: IDmethod: StratumMethodresult: Option<Results<PP>>error: Option<StratumError>

Trait Implementations

impl<'de, PP> Deserialize<'de> for Response<PP> where
    PP: PoolParams,
    PP: Deserialize<'de>, 
[src]

impl<PP> Serialize for Response<PP> where
    PP: PoolParams,
    PP: Serialize
[src]

Auto Trait Implementations

impl<PP> RefUnwindSafe for Response<PP> where
    <PP as PoolParams>::AuthorizeResult: RefUnwindSafe,
    <PP as PoolParams>::SubscribeResult: RefUnwindSafe

impl<PP> Send for Response<PP> where
    <PP as PoolParams>::AuthorizeResult: Send,
    <PP as PoolParams>::SubscribeResult: Send

impl<PP> Sync for Response<PP> where
    <PP as PoolParams>::AuthorizeResult: Sync,
    <PP as PoolParams>::SubscribeResult: Sync

impl<PP> Unpin for Response<PP> where
    <PP as PoolParams>::AuthorizeResult: Unpin,
    <PP as PoolParams>::SubscribeResult: Unpin

impl<PP> UnwindSafe for Response<PP> where
    <PP as PoolParams>::AuthorizeResult: UnwindSafe,
    <PP as PoolParams>::SubscribeResult: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,