mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
derive clone, eq for StepperOutcome
This commit is contained in:
parent
0bf13fcdc6
commit
71497738a0
@ -22,14 +22,14 @@ use crate::AquamarineVMError;
|
||||
use std::convert::TryFrom;
|
||||
use std::error::Error;
|
||||
|
||||
#[derive(Debug)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub(crate) struct RawStepperOutcome {
|
||||
pub ret_code: i32,
|
||||
pub data: String,
|
||||
pub next_peer_pks: Vec<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct StepperOutcome {
|
||||
pub data: String,
|
||||
pub next_peer_pks: Vec<String>,
|
||||
|
Loading…
Reference in New Issue
Block a user