samod-core 0.10.0

the core library for the samod automerge-repo implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::io::IoResult;

use super::{HubInput, io::HubIoResult};

#[derive(Debug, Clone)]
pub(crate) enum HubEventPayload {
    // Some IO has completed
    IoComplete(IoResult<HubIoResult>),
    // Some other non IO event which should be handled by the actor loop
    Input(HubInput),
}