pub enum LinuxTestKernelVersion {
Linux6_1,
}Expand description
Which Linux test kernel version to fetch from the openvmm-deps GitHub release.
The openvmm-deps release currently only ships the 6.1 kernel; additional
kernel lines (e.g. 6.6, 6.12) are intended to be added as purely additive
follow-ups, both upstream and as new variants of this enum.
Variants§
Linux6_1
Implementations§
Source§impl LinuxTestKernelVersion
impl LinuxTestKernelVersion
Sourcepub fn artifact_tag(self) -> &'static str
pub fn artifact_tag(self) -> &'static str
The version string used in the openvmm-deps GitHub release artifact
filename (e.g. "6.1" for openvmm-test-linux-6.1.<arch>.<ver>.tar.gz).
Trait Implementations§
Source§impl Clone for LinuxTestKernelVersion
impl Clone for LinuxTestKernelVersion
Source§fn clone(&self) -> LinuxTestKernelVersion
fn clone(&self) -> LinuxTestKernelVersion
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 LinuxTestKernelVersion
impl Debug for LinuxTestKernelVersion
Source§impl<'de> Deserialize<'de> for LinuxTestKernelVersion
impl<'de> Deserialize<'de> for LinuxTestKernelVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for LinuxTestKernelVersion
impl Ord for LinuxTestKernelVersion
Source§fn cmp(&self, other: &LinuxTestKernelVersion) -> Ordering
fn cmp(&self, other: &LinuxTestKernelVersion) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LinuxTestKernelVersion
impl PartialEq for LinuxTestKernelVersion
Source§impl PartialOrd for LinuxTestKernelVersion
impl PartialOrd for LinuxTestKernelVersion
Source§impl Serialize for LinuxTestKernelVersion
impl Serialize for LinuxTestKernelVersion
impl Copy for LinuxTestKernelVersion
impl Eq for LinuxTestKernelVersion
impl StructuralPartialEq for LinuxTestKernelVersion
Auto Trait Implementations§
impl Freeze for LinuxTestKernelVersion
impl RefUnwindSafe for LinuxTestKernelVersion
impl Send for LinuxTestKernelVersion
impl Sync for LinuxTestKernelVersion
impl Unpin for LinuxTestKernelVersion
impl UnsafeUnpin for LinuxTestKernelVersion
impl UnwindSafe for LinuxTestKernelVersion
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.