pub struct Bc5dManifest {
pub version: String,
pub generated: String,
pub tables: HashMap<String, TableEntry>,
}Expand description
Manifest describing available BC5D tables
Fields§
§version: StringManifest version
generated: StringWhen the manifest was generated
tables: HashMap<String, TableEntry>Map of caliber (as string like “308”) to table entry
Trait Implementations§
Source§impl Clone for Bc5dManifest
impl Clone for Bc5dManifest
Source§fn clone(&self) -> Bc5dManifest
fn clone(&self) -> Bc5dManifest
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 Bc5dManifest
impl RefUnwindSafe for Bc5dManifest
impl Send for Bc5dManifest
impl Sync for Bc5dManifest
impl Unpin for Bc5dManifest
impl UnwindSafe for Bc5dManifest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.