#[repr(C)]pub struct svn_client_commit_info_t {
pub revision: svn_revnum_t,
pub date: *const c_char,
pub author: *const c_char,
}
Expand description
Information about commits passed back to client from this module.
@deprecated Provided for backward compatibility with the 1.2 API.
Fields§
§revision: svn_revnum_t
just-committed revision.
date: *const c_char
server-side date of the commit.
author of the commit.
Trait Implementations§
Source§impl Clone for svn_client_commit_info_t
impl Clone for svn_client_commit_info_t
Source§fn clone(&self) -> svn_client_commit_info_t
fn clone(&self) -> svn_client_commit_info_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_client_commit_info_t
impl Debug for svn_client_commit_info_t
Source§impl Default for svn_client_commit_info_t
impl Default for svn_client_commit_info_t
impl Copy for svn_client_commit_info_t
Auto Trait Implementations§
impl Freeze for svn_client_commit_info_t
impl RefUnwindSafe for svn_client_commit_info_t
impl !Send for svn_client_commit_info_t
impl !Sync for svn_client_commit_info_t
impl Unpin for svn_client_commit_info_t
impl UnwindSafe for svn_client_commit_info_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