Skip to main content

Crate conduit_core

Crate conduit_core 

Source
Expand description

§conduit-core

Binary IPC core for Tauri v2. Provides a binary codec, synchronous dispatch table, and in-process ring buffer for the conduit:// custom protocol.

Re-exports§

pub use codec::Decode;
pub use codec::Encode;
pub use codec::FRAME_HEADER_SIZE;
pub use codec::FrameHeader;
pub use codec::MsgType;
pub use codec::PROTOCOL_VERSION;
pub use codec::frame_pack;
pub use codec::frame_unpack;
pub use error::Error;
pub use ringbuf::RingBuffer;
pub use router::Router;

Modules§

codec
Binary frame format and wire encoding traits for conduit.
error
Error types for the conduit IPC layer.
ringbuf
In-process ring buffer for high-frequency streaming.
router
Command dispatch table with synchronous handlers.