#[repr(C)]pub struct svn_client_proplist_item_t {
pub node_name: *mut svn_stringbuf_t,
pub prop_hash: *mut apr_hash_t,
}Expand description
This is a structure which stores a filename and a hash of property names and values.
@deprecated Provided for backward compatibility with the 1.4 API.
Fields§
§node_name: *mut svn_stringbuf_tThe name of the node on which these properties are set.
prop_hash: *mut apr_hash_tA hash of (const char *) property names, and (svn_string_t *) property values.
Trait Implementations§
Source§impl Clone for svn_client_proplist_item_t
impl Clone for svn_client_proplist_item_t
Source§fn clone(&self) -> svn_client_proplist_item_t
fn clone(&self) -> svn_client_proplist_item_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_proplist_item_t
impl Debug for svn_client_proplist_item_t
Source§impl Default for svn_client_proplist_item_t
impl Default for svn_client_proplist_item_t
impl Copy for svn_client_proplist_item_t
Auto Trait Implementations§
impl Freeze for svn_client_proplist_item_t
impl RefUnwindSafe for svn_client_proplist_item_t
impl !Send for svn_client_proplist_item_t
impl !Sync for svn_client_proplist_item_t
impl Unpin for svn_client_proplist_item_t
impl UnsafeUnpin for svn_client_proplist_item_t
impl UnwindSafe for svn_client_proplist_item_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