pub type NodeSyncResult = Result<(), i32>;
enum NodeSyncResult { Ok(()), Err(i32), }
Contains the success value
Contains the error value