You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't remember why I used the current set of derives e.g,
/// Models the result of JSON-RPC method `getbestblockhash`.#[derive(Clone,Debug,PartialEq,Deserialize,Serialize)]pubstructGetBestBlockHash(pubBlockHash);
And
/// Models the result of JSON-RPC method `getblock` with verbosity set to 0.#[derive(Clone,Debug,PartialEq,Eq,Deserialize,Serialize)]pubstructGetBlockVerbosityZero(pubBlock);
Why no Ord/PartialOrd, is Eq correct?
The text was updated successfully, but these errors were encountered:
I can't remember why I used the current set of derives e.g,
And
Why no
Ord
/PartialOrd
, isEq
correct?The text was updated successfully, but these errors were encountered: