pub struct VersionInfo {
pub version: &'static str,
pub crate_name: &'static str,
pub authors: &'static str,
pub description: &'static str,
pub repository: &'static str,
}Expand description
Detailed version information for the rill-core crate.
Fields§
§version: &'static strCrate version string (from CARGO_PKG_VERSION).
crate_name: &'static strCrate name (from CARGO_PKG_NAME).
Author list (from CARGO_PKG_AUTHORS).
description: &'static strCrate description (from CARGO_PKG_DESCRIPTION).
repository: &'static strRepository URL (from CARGO_PKG_REPOSITORY).
Trait Implementations§
Source§impl Clone for VersionInfo
impl Clone for VersionInfo
Source§fn clone(&self) -> VersionInfo
fn clone(&self) -> VersionInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VersionInfo
impl RefUnwindSafe for VersionInfo
impl Send for VersionInfo
impl Sync for VersionInfo
impl Unpin for VersionInfo
impl UnsafeUnpin for VersionInfo
impl UnwindSafe for VersionInfo
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