#[repr(C)]pub struct svn_checksum_t {
pub digest: *const c_uchar,
pub kind: svn_checksum_kind_t,
}
Expand description
A generic checksum representation.
@since New in 1.6.
Fields§
§digest: *const c_uchar
The bytes of the checksum.
kind: svn_checksum_kind_t
The type of the checksum. This should never be changed by consumers of the APIs.
Trait Implementations§
Source§impl Clone for svn_checksum_t
impl Clone for svn_checksum_t
Source§fn clone(&self) -> svn_checksum_t
fn clone(&self) -> svn_checksum_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_checksum_t
impl Debug for svn_checksum_t
Source§impl Default for svn_checksum_t
impl Default for svn_checksum_t
impl Copy for svn_checksum_t
Auto Trait Implementations§
impl Freeze for svn_checksum_t
impl RefUnwindSafe for svn_checksum_t
impl !Send for svn_checksum_t
impl !Sync for svn_checksum_t
impl Unpin for svn_checksum_t
impl UnwindSafe for svn_checksum_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