alex/relish

Expand coverage of types with relish implementations

开放

#7 创建于 2025年12月26日

 (0 条评论) (0 个反应) (0 位负责人)Rust (2 个派生)github user discovery
good first issue

仓库指标

星标
 (14 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

Potential considerations:

std

  • String:
    • Box<str>
    • Arc<str>
    • Cow<'_, str>
  • Array:
    • [T; N]
    • Box<[T]>
    • Arc<[T]>
    • Rc<[T]>
    • Cow<'_, [T]>
    • std::collections::VecDeque<T>
    • std::collections::BTreeSet<T>
    • std::collections::HashSet<T, S>
  • Map:
    • std::collections::BTreeMap<K, V>
  • Integers:
    • NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128
    • NonZeroI8, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI128

3p

  • uuid
  • indexmap
  • jiff
  • smallvec

贡献者指南