feat: add a new empty struct Handful

This commit is contained in:
2025-11-16 08:02:54 +01:00
parent 85824b87ff
commit 97a0fbb163
9 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -8,3 +8,4 @@ mod trt;
mod tst;
pub(crate) use crate::str::failed_to::E as FailedTo;
pub(crate) use crate::str::handful::O as Handful;

View File

@@ -0,0 +1 @@

View File

@@ -3,8 +3,7 @@ use crate::*;
// use std::str::FromStr;
#[derive(Debug, PartialEq, PartialOrd, Eq, Ord, Clone, Copy, Hash)]
pub enum E {
}
pub enum E {}
// impl Display for E {
// fn fmt(&self, f: &mut std::fmt::Formatter) -> std::result::Result<(), std::fmt::Error> {
@@ -38,7 +37,7 @@ pub enum E {
// }
// }
// }
//
//
// #[test]
// fn check_002() {
// for value in [E::NoValue] {

View File

@@ -0,0 +1,15 @@
use crate::*;
#[derive(Debug, Default, PartialEq, Clone)]
pub struct O {}
// impl std::fmt::Display for O {
// fn fmt(&self, _f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
// todo!();
// }
// }
// #[cfg(test)]
// mod unit_tests {
// use super::*;
// }

View File

@@ -1 +1,2 @@
pub mod failed_to;
pub mod handful;

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@