Struct julia::version::Version [] [src]

pub struct Version<'a> {
    pub name: &'a str,
    pub major: u32,
    pub minor: u32,
    pub patch: u32,
    pub release: bool,
    pub branch: Option<&'a str>,
    pub commit: Option<&'a str>,
}

Primitive for comparing and displaying the version of both Julia and julia-rs.

Fields

Methods

impl<'a> Version<'a>
[src]

[src]

Returns a shortened version, i.e. without the branch and commit.

Trait Implementations

impl<'a> Clone for Version<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Version<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> Display for Version<'a>
[src]

[src]

Formats the value using the given formatter. Read more