6 个版本 (3 个稳定版)

2.0.0 2024 年 7 月 11 日
2.0.0-rc12024 年 7 月 10 日
1.0.1 2022 年 1 月 18 日
1.0.0 2021 年 10 月 23 日
0.1.0-rc22021 年 10 月 23 日

#394 in Rust 模式

Download history 17293/week @ 2024-04-25 15345/week @ 2024-05-02 17522/week @ 2024-05-09 20037/week @ 2024-05-16 21479/week @ 2024-05-23 22857/week @ 2024-05-30 17369/week @ 2024-06-06 16253/week @ 2024-06-13 22132/week @ 2024-06-20 23512/week @ 2024-06-27 15344/week @ 2024-07-04 14922/week @ 2024-07-11 13285/week @ 2024-07-18 14551/week @ 2024-07-25 11661/week @ 2024-08-01 10042/week @ 2024-08-08

51,797 每月下载量
46 个 crate 中使用 (3 个直接使用)

Zlib OR MIT OR Apache-2.0

11KB
59

::ext-trait

通过注解轻松定义 ad-hoc / 单次扩展特质。

Repository Latest version Documentation MSRV unsafe forbidden License CI

示例

  • 此外

    #[macro_use]
    extern crate ext_trait;
    
    #[extension(trait Also)]
    impl<T> T {
        fn also (mut self, f: impl FnOnce(&mut Self))
          -> Self
        {
            f(&mut self);
            self
        }
    }
    
    fn main ()
    {
        use ::std::{collections::HashMap, ops::Not};
    
        let /* immut */ map = HashMap::with_capacity(2).also(|m| {
            m.insert("foo", 42);
            m.insert("bar", 27);
        });
        assert!(map.contains_key("foo"));
        assert!(map.contains_key("bar"));
        assert!(map.contains_key("baz").not());
    }
    
  • 带路径

    #[macro_use]
    extern crate ext_trait;
    
    use ::std::{error::Error, path::{Path, PathBuf}};
    
    #[extension(trait WithPath)]
    impl PathBuf {
        fn with (mut self, segment: impl AsRef<Path>)
          -> PathBuf
        {
            self.push(segment);
            self
        }
    }
    
    fn main ()
      -> Result<(), Box<dyn Error>>
    {
        let some_dir = PathBuf::from(::std::env::var("MY_LIB_SOME_DIR")?);
        // Contrary to chaining `.join()`, this reuses the memory!
        let some_subdir = some_dir.with("some").with("sub").with("dir");
        //
        Ok(())
    }
    
  • 上下文

    #[macro_use]
    extern crate ext_trait;
    
    use ::std::{error::Error, fmt::Display};
    
    #[extension(trait Context)]
    impl<Ok, Err : Display> Result<Ok, Err> {
        fn context (self, prefix: impl Display)
          -> Result<Ok, String>
        {
            self.map_err(|err| format!("{}: {}", prefix, err))
        }
    }
    
    fn main ()
      -> Result<(), Box<dyn Error>>
    {
        let file_contents =
            ::std::fs::read_to_string("some/file")
                .context("Error when opening some/file")?
        ;
        //
        Ok(())
    }
    

类似于 https://docs.rs/extension-trait,但针对以下

功能

  • 支持泛型(见 Context

  • search/grep 'trait TraitName' 友好!

依赖

~1.5MB
~36K SLoC