#[repr(C)]pub struct svn_prop_inherited_item_t {
pub path_or_url: *const c_char,
pub prop_hash: *mut apr_hash_t,
}
Expand description
A structure to represent inherited properties.
@since New in 1.8.
Fields§
§path_or_url: *const c_char
The absolute working copy path, relative filesystem path, or URL from which the properties in @a prop_hash are inherited. (For details about which path specification format is in use for a particular instance of this structure, consult the documentation for the API which produced it.)
prop_hash: *mut apr_hash_t
A hash of (const char *) inherited property names, and (svn_string_t *) property values.
Trait Implementations§
Source§impl Clone for svn_prop_inherited_item_t
impl Clone for svn_prop_inherited_item_t
Source§fn clone(&self) -> svn_prop_inherited_item_t
fn clone(&self) -> svn_prop_inherited_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_prop_inherited_item_t
impl Debug for svn_prop_inherited_item_t
Source§impl Default for svn_prop_inherited_item_t
impl Default for svn_prop_inherited_item_t
impl Copy for svn_prop_inherited_item_t
Auto Trait Implementations§
impl Freeze for svn_prop_inherited_item_t
impl RefUnwindSafe for svn_prop_inherited_item_t
impl !Send for svn_prop_inherited_item_t
impl !Sync for svn_prop_inherited_item_t
impl Unpin for svn_prop_inherited_item_t
impl UnwindSafe for svn_prop_inherited_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