pub struct ApiVersion {
pub major: u32,
pub minor: u32,
pub patch: u32,
}Expand description
Version information for API compatibility.
Fields§
§major: u32Major version
minor: u32Minor version
patch: u32Patch version
Implementations§
Source§impl ApiVersion
impl ApiVersion
Sourcepub const CURRENT: ApiVersion
pub const CURRENT: ApiVersion
Current API version.
Sourcepub fn supports(&self, feature: ApiFeature) -> bool
pub fn supports(&self, feature: ApiFeature) -> bool
Check if this version supports a feature.
Trait Implementations§
Source§impl Clone for ApiVersion
impl Clone for ApiVersion
Source§fn clone(&self) -> ApiVersion
fn clone(&self) -> ApiVersion
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 moreSource§impl Debug for ApiVersion
impl Debug for ApiVersion
Source§impl PartialEq for ApiVersion
impl PartialEq for ApiVersion
impl Copy for ApiVersion
impl Eq for ApiVersion
impl StructuralPartialEq for ApiVersion
Auto Trait Implementations§
impl Freeze for ApiVersion
impl RefUnwindSafe for ApiVersion
impl Send for ApiVersion
impl Sync for ApiVersion
impl Unpin for ApiVersion
impl UnwindSafe for ApiVersion
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