Method delegation with less boilerplate

Build Status Crates.io

This crate removes some boilerplate for structs that simply delegate some of their methods to one or more of their fields.

It gives you the delegate! macro, which delegates method calls to selected expressions (usually inner fields).

Example:

A Stack data structure implemented using an inner Vec via delegation. ```rust use delegate::delegate;

[derive(Clone, Debug)]

struct Stack { inner: Vec, } impl Stack { pub fn new() -> Self { Self { inner: vec![] } }

delegate! {
    to self.inner {
        pub fn is_empty(&self) -> bool;
        pub fn push(&mut self, value: T);
        pub fn pop(&mut self) -> Option<T>;
        pub fn clear(&mut self);

        #[call(len)]
        pub fn size(&self) -> usize;

        #[call(last)]
        pub fn peek(&self) -> Option<&T>;

    }
}

} ```

Features:

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Conduct

Please follow the [Rust Code of Conduct]. For escalation or moderation issues please contact the crate author(s) listed in Cargo.toml.