Skip to main content

svn_close_fn_t

Type Alias svn_close_fn_t 

Source
pub type svn_close_fn_t = Option<unsafe extern "C" fn(baton: *mut c_void) -> *mut svn_error_t>;
Expand description

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

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void) -> *mut svn_error_t)

Some value of type T.