oby-core 0.1.0

Core types and Capturer trait for oby — the wire-format and plugin contract shared by oby-hook, oby-tee, and the oby wrapper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! oby-core: the trait + types that every oby crate depends on.

pub mod capturer;
pub mod entry;
pub mod hook;
pub mod wire;

pub use capturer::{Capturer, RewriteDecision};
pub use entry::{DiffHunk, DisplayEntry, DisplayEntryUpdate, EntryBody, EntryStatus};
pub use hook::{EffortLevel, HookContext, HookEvent};
pub use wire::{ControlMessage, HeaderLine};