pub struct VersionInfo {
pub version: &'static str,
pub message_format: u32,
pub config_format: u32,
pub storage_schema: u32,
pub git_hash: Option<&'static str>,
pub build_time: Option<&'static str>,
}Fields§
§version: &'static str§message_format: u32§config_format: u32§storage_schema: u32§git_hash: Option<&'static str>§build_time: Option<&'static str>Implementations§
Source§impl VersionInfo
impl VersionInfo
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 · 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 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