#[repr(C)]pub struct svn_version_ext_loaded_lib_t {
pub name: *const c_char,
pub version: *const c_char,
}
Expand description
Loaded shared library information. Describes the name and, where available, version of the shared libraries loaded by the running program.
@since New in 1.8.
Fields§
§name: *const c_char
< Library name
version: *const c_char
< Library version (optional)
Trait Implementations§
Source§impl Clone for svn_version_ext_loaded_lib_t
impl Clone for svn_version_ext_loaded_lib_t
Source§fn clone(&self) -> svn_version_ext_loaded_lib_t
fn clone(&self) -> svn_version_ext_loaded_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_loaded_lib_t
impl Debug for svn_version_ext_loaded_lib_t
impl Copy for svn_version_ext_loaded_lib_t
Auto Trait Implementations§
impl Freeze for svn_version_ext_loaded_lib_t
impl RefUnwindSafe for svn_version_ext_loaded_lib_t
impl !Send for svn_version_ext_loaded_lib_t
impl !Sync for svn_version_ext_loaded_lib_t
impl Unpin for svn_version_ext_loaded_lib_t
impl UnwindSafe for svn_version_ext_loaded_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