pub struct LibInfo {
pub version: &'static str,
pub name: &'static str,
pub description: &'static str,
pub authors: &'static str,
pub enabled_features: Vec<&'static str>,
}
Expand description
Library detailed info
Fields§
§version: &'static str
Version
name: &'static str
Package name
description: &'static str
Description
Authors
enabled_features: Vec<&'static str>
Enabled features
Auto Trait Implementations§
impl Freeze for LibInfo
impl RefUnwindSafe for LibInfo
impl Send for LibInfo
impl Sync for LibInfo
impl Unpin for LibInfo
impl UnwindSafe for LibInfo
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