obstruct 0.1.0

An experimental implementation of anonymous structs and named function arguments
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use obstruct_macros::{call, destruct, instruct};

pub trait Field<T> {
    const NAME: &'static str;
    fn take(self) -> T;
}


#[doc = include_str!("../../../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;