#[repr(C)]pub struct svn_ra_callbacks_t {
pub open_tmp_file: Option<unsafe extern "C" fn(fp: *mut *mut apr_file_t, callback_baton: *mut c_void, pool: *mut apr_pool_t) -> *mut svn_error_t>,
pub auth_baton: *mut svn_auth_baton_t,
pub get_wc_prop: svn_ra_get_wc_prop_func_t,
pub set_wc_prop: svn_ra_set_wc_prop_func_t,
pub push_wc_prop: svn_ra_push_wc_prop_func_t,
pub invalidate_wc_props: svn_ra_invalidate_wc_props_func_t,
}
Expand description
Similar to svn_ra_callbacks2_t, except that the progress notification function and baton is missing.
@deprecated Provided for backward compatibility with the 1.2 API.
Fields§
§open_tmp_file: Option<unsafe extern "C" fn(fp: *mut *mut apr_file_t, callback_baton: *mut c_void, pool: *mut apr_pool_t) -> *mut svn_error_t>
§auth_baton: *mut svn_auth_baton_t
§get_wc_prop: svn_ra_get_wc_prop_func_t
§set_wc_prop: svn_ra_set_wc_prop_func_t
§push_wc_prop: svn_ra_push_wc_prop_func_t
§invalidate_wc_props: svn_ra_invalidate_wc_props_func_t
Trait Implementations§
Source§impl Clone for svn_ra_callbacks_t
impl Clone for svn_ra_callbacks_t
Source§fn clone(&self) -> svn_ra_callbacks_t
fn clone(&self) -> svn_ra_callbacks_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for svn_ra_callbacks_t
impl Debug for svn_ra_callbacks_t
Source§impl Default for svn_ra_callbacks_t
impl Default for svn_ra_callbacks_t
impl Copy for svn_ra_callbacks_t
Auto Trait Implementations§
impl Freeze for svn_ra_callbacks_t
impl RefUnwindSafe for svn_ra_callbacks_t
impl !Send for svn_ra_callbacks_t
impl !Sync for svn_ra_callbacks_t
impl Unpin for svn_ra_callbacks_t
impl UnwindSafe for svn_ra_callbacks_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more