gpt4 book ai didi

rust - 整数类型的Rust特征范围

转载 作者:行者123 更新时间:2023-12-03 11:36:57 25 4
gpt4 key购买 nike

假设我有自己的类型作为元组结构

struct MyType(u8);
并希望以通用方式为其他整数类型实现 From特性,例如
impl From<T> for MyType {
fn from(num: T) -> Self {
MyType((num & 0xff) as u8)
}
}
Rust不允许这样做,因为通用类型 T没有 as运算符。如何将 T限制为整数类型,以便可以使用 as?类似于
impl From<T: Integral> for MyType {...}

最佳答案

您可以使用 num-traits 条板箱。
PrimInt 是相关的特征,它扩展了 NumCast ,允许在原始数字类型之间进行转换。
编辑:这是一个示例实现。这有点丑陋,因为许多相关的转换都返回Option,因为他们事先不知道这些值在范围内。

impl<T: PrimInt> From<T> for MyType {
fn from(num: T) -> Self {
let clamped = num & T::from(0xFFu8).unwrap();
Self(clamped.to_u8().unwrap())
}
}

关于rust - 整数类型的Rust特征范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64069317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com