#[repr(C)]
pub struct curl_version_info_data {
Show 26 fields pub age: u32, pub version: *const i8, pub version_num: u32, pub host: *const i8, pub features: i32, pub ssl_version: *const i8, pub ssl_version_num: i64, pub libz_version: *const i8, pub protocols: *const *const i8, pub ares: *const i8, pub ares_num: i32, pub libidn: *const i8, pub iconv_ver_num: i32, pub libssh_version: *const i8, pub brotli_ver_num: u32, pub brotli_version: *const i8, pub nghttp2_ver_num: u32, pub nghttp2_version: *const i8, pub quic_version: *const i8, pub cainfo: *const i8, pub capath: *const i8, pub zstd_ver_num: u32, pub zstd_version: *const i8, pub hyper_version: *const i8, pub gsasl_version: *const i8, pub feature_names: *const *const i8,
}

Fields§

§age: u32§version: *const i8§version_num: u32§host: *const i8§features: i32§ssl_version: *const i8§ssl_version_num: i64§libz_version: *const i8§protocols: *const *const i8§ares: *const i8§ares_num: i32§libidn: *const i8§iconv_ver_num: i32§libssh_version: *const i8§brotli_ver_num: u32§brotli_version: *const i8§nghttp2_ver_num: u32§nghttp2_version: *const i8§quic_version: *const i8§cainfo: *const i8§capath: *const i8§zstd_ver_num: u32§zstd_version: *const i8§hyper_version: *const i8§gsasl_version: *const i8§feature_names: *const *const i8

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.