diff --git a/src/actor.rs b/src/actor.rs index 00b8e35b..5fe90123 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -238,6 +238,7 @@ pub struct OpenOpts { /// Optionally subscribe to replica events. pub subscribe: Option>, } + impl OpenOpts { /// Set sync state to true. pub fn sync(mut self) -> Self { diff --git a/src/lib.rs b/src/lib.rs index 37893884..68d01448 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,7 +42,7 @@ mod ticket; pub mod engine; -mod actor; +pub mod actor; pub mod api; pub mod store; pub mod sync;