#unit #type #any #syntax-sugar

to_unit

ToUnit; Any type to () syntax sugar

3 stable releases

1.0.2 Apr 27, 2022

#1872 in Rust patterns

Download history 65/week @ 2024-01-04 21/week @ 2024-01-11 17/week @ 2024-01-18 4/week @ 2024-02-08 21/week @ 2024-02-15 53/week @ 2024-02-22 35/week @ 2024-02-29 27/week @ 2024-03-07 32/week @ 2024-03-14 32/week @ 2024-03-21 64/week @ 2024-03-28 32/week @ 2024-04-04 32/week @ 2024-04-11 23/week @ 2024-04-18

156 downloads per month
Used in actix-web-tonic

MIT license

5KB

githubcrates-iodocs-rs
Build Status

ToUnit; drop to the trash syntax sugar for any types.

Example

use to_unit::ToUnit;
// or, `use to_unit::ToUnit as __` for ultra lzay persons!

#[test]
fn match_arms_to_easily()
{
 use std::collections::HashMap;
 let mut x = HashMap::<String, i32>::new();
 x.insert("neko".to_string(), 123);
 match x.get_mut("neko")
 {
  Some(v) => *v = 222,
  None => x.insert("neko".to_string(), 222).to_unit() // <-- here!
 }
 // Ofcorse alternatively, you can write:
 //  eg. None => { x.insert("neko".to_string(), 222); }
 // But, it might be fix to a multi-line format by rust-fmt then...:
 //  eg. None => {
 //          x.insert("neko".to_string(), 222);
 //      }
 // I don't like the multi-line behaviors, so I made the __ lib.
 //
}

LICENSE

Author

No runtime deps