svn_write_fn_t

Type Alias svn_write_fn_t 

Source
pub type svn_write_fn_t = Option<unsafe extern "C" fn(baton: *mut c_void, data: *const c_char, len: *mut apr_size_t) -> *mut svn_error_t>;
Expand description

Write handler function for a generic stream. @see svn_stream_t.

Aliased Type§

pub enum svn_write_fn_t {
    None,
    Some(unsafe extern "C" fn(*mut c_void, *const i8, *mut usize) -> *mut svn_error_t),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void, *const i8, *mut usize) -> *mut svn_error_t)

Some value of type T.