pub struct LibraryInfo {
pub version: &'static str,
pub author: &'static str,
pub features: Vec<&'static str>,
}
Expand description
Information about the library build and features
Fields§
§version: &'static str
§features: Vec<&'static str>
Trait Implementations§
Source§impl Clone for LibraryInfo
impl Clone for LibraryInfo
Source§fn clone(&self) -> LibraryInfo
fn clone(&self) -> LibraryInfo
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 LibraryInfo
impl RefUnwindSafe for LibraryInfo
impl Send for LibraryInfo
impl Sync for LibraryInfo
impl Unpin for LibraryInfo
impl UnwindSafe for LibraryInfo
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