no_std
This Library is Created without std crates.
Auto delegate allows you that automatic impl of traits and delegate their handling to children.
Give 'delegate' attribute to the trait which to be delegated, and give 'Delegate' to the structure requesting delegation
```rust use auto_delegate::{Delegate, delegate};
trait Calc { fn calc(&self, x1: usize, x2: usize) -> usize; }
struct CalcAdd;
impl Calc for CalcAdd { fn calc(&self, x1: usize, x2: usize) -> usize { x1 + x2 } }
struct Parent { #[to(Calc)] child: CalcAdd }
fn main() { let parent = Parent::default();
assert_eq!(parent.calc(2, 3), 5);
} ```
It is possible to use generic type for member types
```rust
struct Parent
fn main() {
let parent = Parent::
assert_eq!(parent.calc(3, 2), 5);
} ```
```rust use auto_delegate::*;
trait Calc { fn calc(&self, x1: usize, x2: usize) -> usize; }
struct CalcAdd;
impl Calc for CalcAdd { fn calc(&self, x1: usize, x2: usize) -> usize { x1 + x2 } }
trait Movable { fn move_to(&mut self, pos: (usize, usize));
fn pos(&self) -> (usize, usize);
}
trait Resizable { fn resize(&mut self, width: usize, height: usize);
fn size(&self) -> (usize, usize);
}
struct Transform2D { pos: (usize, usize), width: usize, height: usize }
impl Movable for Transform2D { fn move_to(&mut self, pos: (usize, usize)) { self.pos = pos; }
fn pos(&self) -> (usize, usize) {
self.pos
}
}
impl Resizable for Transform2D { fn resize(&mut self, width: usize, height: usize) { self.width = width; self.height = height; }
fn size(&self) -> (usize, usize) {
(self.width, self.height)
}
}
struct Parent
#[to(Calc)]
calculator: T
}
fn main() {
let mut parent = Parent::
assert_eq!(parent.calc(3, 2), 5);
parent.move_to((10, 11));
assert_eq!(parent.pos(), (10, 11));
parent.resize(100, 120);
assert_eq!(parent.size(), (100, 120));
} ```
```rust use auto_delegate::{delegate, Delegate};
trait Calc { fn calc(&self, x1: usize, x2: usize) -> usize; }
struct CalcAdd;
impl Calc for CalcAdd { fn calc(&self, x1: usize, x2: usize) -> usize { x1 + x2 } }
struct Parent
fn main() {
let parent = Parent::
```rust use asynctrait::asynctrait;
use auto_delegate::{delegate, Delegate};
pub struct EmailAddress(String);
impl EmailAddress { #[allow(unused)] pub fn raw(&self) -> &str { self.0.as_str() } }
impl Default for EmailAddress { fn default() -> Self { Self(String::from("rust@gmail.com")) } }
pub trait EmailReadable { async fn read_email<'a>(&'a self) -> &'a EmailAddress; }
pub struct EmailReader { email: EmailAddress, }
impl EmailReadable for EmailReader { async fn read_email<'a>(&'a self) -> &'a EmailAddress { &self.email } }
struct Parent { #[to(EmailReadable)] child: EmailReader, }
async fn main() { let parent = Parent::default();
assert_eq!(parent.read_email().await.raw(), "rust@gmail.com");
} ```
```rust use auto_delegate::{delegate, Delegate};
trait Calc { fn calc(&self, x1: usize, x2: usize) -> usize; }
trait Increment: Calc { fn increment(&mut self) -> usize; }
struct Child { num: usize, }
impl Increment for Child { fn increment(&mut self) -> usize { self.num += 1; self.num } }
impl Calc for Child { fn calc(&self, x1: usize, x2: usize) -> usize { x1 + x2 } }
struct Parent { #[to(Calc, Increment)] child: Child, }
fn main() { let mut parent = Parent::default(); asserteq!(parent.increment(), 1); asserteq!(parent.increment(), 2); assert_eq!(parent.calc(3, 2), 5); } ```
Like Struct, Enum can be delegated using Delegate.
```rust use auto_delegate::{delegate, Delegate};
trait Calc { fn calc(&self, x1: usize, x2: usize) -> usize; }
struct CalcAdd;
impl Calc for CalcAdd { fn calc(&self, x1: usize, x2: usize) -> usize { x1 + x2 } }
struct CalcSub;
impl Calc for CalcSub { fn calc(&self, x1: usize, x2: usize) -> usize { x1 - x2 } }
enum EnumCalc { Add(CalcAdd), Sub(CalcSub), }
fn main() { let c = EnumCalc::Add(CalcAdd::default()); assert_eq!(c.calc(3, 5), 8);
let c = EnumCalc::Sub(CalcSub::default());
assert_eq!(c.calc(3, 2), 1);
} ```