#[repr(C)]pub struct svn_version_ext_linked_lib_t {
pub name: *const c_char,
pub compiled_version: *const c_char,
pub runtime_version: *const c_char,
}
Expand description
Dependent library information. Describes the name and versions of known dependencies used by libsvn_subr.
@since New in 1.8.
Fields§
§name: *const c_char
< Library name
compiled_version: *const c_char
< Compile-time version string
runtime_version: *const c_char
< Run-time version string (optional)
Trait Implementations§
Source§impl Clone for svn_version_ext_linked_lib_t
impl Clone for svn_version_ext_linked_lib_t
Source§fn clone(&self) -> svn_version_ext_linked_lib_t
fn clone(&self) -> svn_version_ext_linked_lib_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_version_ext_linked_lib_t
impl Debug for svn_version_ext_linked_lib_t
impl Copy for svn_version_ext_linked_lib_t
Auto Trait Implementations§
impl Freeze for svn_version_ext_linked_lib_t
impl RefUnwindSafe for svn_version_ext_linked_lib_t
impl !Send for svn_version_ext_linked_lib_t
impl !Sync for svn_version_ext_linked_lib_t
impl Unpin for svn_version_ext_linked_lib_t
impl UnwindSafe for svn_version_ext_linked_lib_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