toto

Crates.iototo
lib.rstoto
version1.0.0
sourcesrc
created_at2023-04-10 07:40:35.149911
updated_at2024-01-15 02:42:31.232632
descriptionThis crate provides a simple conversion method between basic numerical types
homepagehttps://github.com/zredb/toto
repositoryhttps://github.com/zredb/toto
max_upload_size
id834913
size42,976
zredb (zredb)

documentation

README

这个库提供一个在数值类型之间转换的方法, 在rust中,如果需要把基本的数值类型转换到另一种类型, 我们需要使用as 关键字,比如:

1u8 as u16

本库提供两种转换方法可以提供同样的功能:

  1. 以全局函数的形式:
let v_u16=u8tou16(1u8)
  1. 以方法的形式:
let v_u16=1u8.tou16()
Commit count: 3

cargo fmt