Struct botan::Version[][src]

pub struct Version {
    pub major: u32,
    pub minor: u32,
    pub patch: u32,
    pub release_date: u32,
    pub ffi_api: u32,
    pub string: String,
}

Information about the library version

Fields

The major version of the library

The minor version of the library

The patch version of the library

The release date of the library, as YYYYMMDD, for example 2.7.0 has value 20180702. Will be 0 for unreleased versions.

The version of the FFI API, as a YYYYMMDD field.

A free-form string describing the library version

Methods

impl Version
[src]

Read the version information

Return true if the specified API version is supported by this version of the library

Trait Implementations

impl Debug for Version
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Version

impl Sync for Version