Struct artichoke::prelude::ReleaseMetadata

source ·
pub struct ReleaseMetadata<'a> {
    pub copyright: &'a str,
    pub description: &'a str,
    pub engine: &'a str,
    pub engine_version: &'a str,
    pub patchlevel: &'a str,
    pub platform: &'a str,
    pub release_date: &'a str,
    pub revision: &'a str,
    pub ruby_version: &'a str,
    pub compiler_version: Option<&'a str>,
}
Expand description

Information about an Artichoke build.

This build information is injected into artichoke-backend by the artichoke crate at interpreter initialization time.

Fields§

§copyright: &'a str

Copyright information.

This value will populate the RUBY_COPYRIGHT constant.

§Examples

artichoke - Copyright (c) 2019-2020 Ryan Lopopolo \<rjl@hyperbo.la\>
§description: &'a str

A description of the current build.

This value will populate the RUBY_DESCRIPTION constant.

§Examples

artichoke 0.1.0-pre.0 (2021-01-12 revision 4009) [x86_64-apple-darwin]
§engine: &'a str

The engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE constant.

§Examples

artichoke-mruby
§engine_version: &'a str

The version of the engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE_VERSION constant.

§Examples

0.1.0-pre.0
§patchlevel: &'a str

The patch level the current build.

This value will populate the RUBY_PATCHLEVEL constant.

§Examples

0
§platform: &'a str

The target triple of the platform this build targets.

The platform will be a Rust or LLVM target triple.

This value will populate the RUBY_PLATFORM constant.

§Examples

x86_64-apple-darwin
§release_date: &'a str

The build date of this release.

This value will populate the RUBY_RELEASE_DATE constant.

§Examples

2021-01-12
§revision: &'a str

The target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples

3.1.2
§ruby_version: &'a str

The target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples

3.1.2
§compiler_version: Option<&'a str>

A description of the compiler used to build Artichoke.

This value will populate the ARTICHOKE_COMPILER_VERSION constant.

§Examples

rustc 1.49.0 (e1884a8e3 2020-12-29) on x86_64-apple-darwin

Implementations§

source§

impl<'a> ReleaseMetadata<'a>

source

pub const fn new() -> ReleaseMetadata<'a>

Set copyright information.

This value will populate the RUBY_COPYRIGHT constant.

§Examples
artichoke - Copyright (c) 2019-2020 Ryan Lopopolo \<rjl@hyperbo.la\>
source

pub fn with_ruby_description(self, description: &'a str) -> ReleaseMetadata<'a>

Set a description of the current build.

This value will populate the RUBY_DESCRIPTION constant.

§Examples
artichoke 0.1.0-pre.0 (2021-01-12 revision 4009) [x86_64-apple-darwin]
source

pub fn with_ruby_engine(self, engine: &'a str) -> ReleaseMetadata<'a>

Set the engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE constant.

§Examples
artichoke-mruby
source

pub fn with_ruby_engine_version( self, engine_version: &'a str ) -> ReleaseMetadata<'a>

Set the version of the engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE_VERSION constant.

§Examples
0.1.0-pre.0
source

pub fn with_ruby_patchlevel(self, patchlevel: &'a str) -> ReleaseMetadata<'a>

Set the patch level the current build.

This value will populate the RUBY_PATCHLEVEL constant.

§Examples
0
source

pub fn with_ruby_platform(self, platform: &'a str) -> ReleaseMetadata<'a>

Set the target triple of the platform this build targets.

The platform will be a Rust or LLVM target triple.

This value will populate the RUBY_PLATFORM constant.

§Examples
x86_64-apple-darwin
source

pub fn with_ruby_release_date( self, release_date: &'a str ) -> ReleaseMetadata<'a>

Set the build date of this release.

This value will populate the RUBY_RELEASE_DATE constant.

§Examples
2021-01-12
source

pub fn with_ruby_revision(self, revision: &'a str) -> ReleaseMetadata<'a>

Set the target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples
3.1.2
source

pub fn with_ruby_version(self, ruby_version: &'a str) -> ReleaseMetadata<'a>

Set the target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples
3.1.2
source

pub fn with_artichoke_compiler_version( self, compiler_version: Option<&'a str> ) -> ReleaseMetadata<'a>

Set a description of the compiler used to build Artichoke.

This value will populate the ARTICHOKE_COMPILER_VERSION constant.

§Examples
rustc 1.49.0 (e1884a8e3 2020-12-29) on x86_64-apple-darwin

Copyright information.

This value will populate the RUBY_COPYRIGHT constant.

§Examples
artichoke - Copyright (c) 2019-2020 Ryan Lopopolo \<rjl@hyperbo.la\>
source

pub const fn ruby_description(&self) -> &str

A description of the current build.

This value will populate the RUBY_DESCRIPTION constant.

§Examples
artichoke 0.1.0-pre.0 (2021-01-12 revision 4009) [x86_64-apple-darwin]
source

pub const fn ruby_engine(&self) -> &str

The engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE constant.

§Examples
artichoke-mruby
source

pub const fn ruby_engine_version(&self) -> &str

The version of the engine, or VM, used in the current build.

This value will populate the RUBY_ENGINE_VERSION constant.

§Examples
0.1.0-pre.0
source

pub const fn ruby_patchlevel(&self) -> &str

The patch level the current build.

This value will populate the RUBY_PATCHLEVEL constant.

§Examples
0
source

pub const fn ruby_platform(&self) -> &str

The target triple of the platform this build targets.

The platform will be a Rust or LLVM target triple.

This value will populate the RUBY_PLATFORM constant.

§Examples
x86_64-apple-darwin
source

pub const fn ruby_release_date(&self) -> &str

The build date of this release.

This value will populate the RUBY_RELEASE_DATE constant.

§Examples
2021-01-12
source

pub const fn ruby_revision(&self) -> &str

The target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples
3.1.2
source

pub const fn ruby_version(&self) -> &str

The target MRI Ruby version for this build.

This value will populate the RUBY_VERSION constant.

§Examples
3.1.2
source

pub const fn artichoke_compiler_version(&self) -> Option<&str>

A description of the compiler used to build Artichoke.

This value will populate the ARTICHOKE_COMPILER_VERSION constant.

§Examples
rustc 1.49.0 (e1884a8e3 2020-12-29) on x86_64-apple-darwin

Trait Implementations§

source§

impl<'a> Clone for ReleaseMetadata<'a>

source§

fn clone(&self) -> ReleaseMetadata<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for ReleaseMetadata<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> Default for ReleaseMetadata<'a>

source§

fn default() -> ReleaseMetadata<'a>

Returns the “default value” for a type. Read more
source§

impl<'a> Hash for ReleaseMetadata<'a>

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> Ord for ReleaseMetadata<'a>

source§

fn cmp(&self, other: &ReleaseMetadata<'a>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<'a> PartialEq for ReleaseMetadata<'a>

source§

fn eq(&self, other: &ReleaseMetadata<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialOrd for ReleaseMetadata<'a>

source§

fn partial_cmp(&self, other: &ReleaseMetadata<'a>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a> ReleaseMetadata for ReleaseMetadata<'a>

Copyright information. Read more
source§

fn ruby_description(&self) -> &str

A description of the current build. Read more
source§

fn ruby_engine(&self) -> &str

The engine, or VM, used in the current build. Read more
source§

fn ruby_engine_version(&self) -> &str

The version of the engine, or VM, used in the current build. Read more
source§

fn ruby_patchlevel(&self) -> &str

The patch level the current build. Read more
source§

fn ruby_platform(&self) -> &str

The target triple of the platform this build targets. Read more
source§

fn ruby_release_date(&self) -> &str

The build date of this release. Read more
source§

fn ruby_revision(&self) -> &str

The revision count of the Artichoke git repository used for this build. Read more
source§

fn ruby_version(&self) -> &str

The target MRI Ruby version for this build. Read more
source§

fn artichoke_compiler_version(&self) -> Option<&str>

A description of the compiler used to build Artichoke. Read more
source§

impl<'a> Copy for ReleaseMetadata<'a>

source§

impl<'a> Eq for ReleaseMetadata<'a>

source§

impl<'a> StructuralPartialEq for ReleaseMetadata<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ReleaseMetadata<'a>

§

impl<'a> RefUnwindSafe for ReleaseMetadata<'a>

§

impl<'a> Send for ReleaseMetadata<'a>

§

impl<'a> Sync for ReleaseMetadata<'a>

§

impl<'a> Unpin for ReleaseMetadata<'a>

§

impl<'a> UnwindSafe for ReleaseMetadata<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.