uv
is an extremely fast Python package and project manager for Python. Highly recommend that you use uv
.
winget install -e --id astral-sh.uv
winget install -e --id Git.Git
use core::fmt::Debug; | |
use std::marker::PhantomData; | |
#[derive(Debug)] | |
pub enum Mode { | |
Uncompressed, | |
Compressed, | |
} | |
pub trait VersionedPacket: Debug { |
mod thing { | |
pub(super) struct Thing { | |
pub(super) name: String, | |
pub(super) indicator: usize, | |
} | |
// ---8<--- ... impl Thing here | |
static THANGS: [Thing; 3] = [ | |
Thing::new(1, 'Thing 1'), |