Skip to main content

Crate filebase

Crate filebase 

Source
Expand description

Filebase: a window over a directory of Slipcase containers.

Everything here is what the window needs to know and none of it draws. query runs a query on a thread of its own and streams rows back, detail is what one container says about itself, and policy is the rule that the flyleaf tree is read and not written. src/main.rs is the drawing.

Nothing in this crate parses a container or a query: every row comes from slipql in excelano/slipql and every container fact from slpc in excelano/slpc-rust. Behaviour either of them lacks goes into that library rather than in here.

Re-exports§

pub use detail::Detail;
pub use policy::ReadOnly;
pub use query::Run;
pub use query::Update;

Modules§

detail
What one container says about itself.
i18n
The language the window draws in.
policy
The rule the flyleaf tree is drawn under here: read, never written.
query
Running a query without stopping the window.