Skip to main content

PtyFactory

Type Alias PtyFactory 

Source
pub type PtyFactory = Box<dyn Fn(&str, u16, u16) -> Result<PtySpawnResult> + Send + Sync>;
Expand description

Factory function type for creating PTY backends. Allows injection of MockPty in tests.

Aliased Typeยง

pub struct PtyFactory(/* private fields */);