#[repr(C)]pub struct svn_commit_info_t {
pub revision: svn_revnum_t,
pub date: *const c_char,
pub author: *const c_char,
pub post_commit_err: *const c_char,
pub repos_root: *const c_char,
}
Expand description
All information about a commit.
@note Objects of this type should always be created using the svn_create_commit_info() function.
@since New in 1.3.
Fields§
§revision: svn_revnum_t
just-committed revision.
date: *const c_char
server-side date of the commit.
author of the commit.
post_commit_err: *const c_char
error message from post-commit hook, or NULL.
repos_root: *const c_char
repository root, may be @c NULL if unknown. @since New in 1.7.
Trait Implementations§
Source§impl Clone for svn_commit_info_t
impl Clone for svn_commit_info_t
Source§fn clone(&self) -> svn_commit_info_t
fn clone(&self) -> svn_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_commit_info_t
impl Debug for svn_commit_info_t
Source§impl Default for svn_commit_info_t
impl Default for svn_commit_info_t
impl Copy for svn_commit_info_t
Auto Trait Implementations§
impl Freeze for svn_commit_info_t
impl RefUnwindSafe for svn_commit_info_t
impl !Send for svn_commit_info_t
impl !Sync for svn_commit_info_t
impl Unpin for svn_commit_info_t
impl UnwindSafe for svn_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