pub type PipeSideBrokenCallback = Option<unsafe extern "C" fn(pipe: *mut PipeSide, context: *mut c_void)>;Expand description
Callback for when the opposite PipeSide is freed, making the pipe
broken.
§Arguments
[in]- pipe Pipe side that called the callback[inout]- context Custom context
Aliased Type§
pub enum PipeSideBrokenCallback {
None,
Some(unsafe extern "C" fn(*mut PipeSide, *mut c_void)),
}