Easy delegation in Rust: the delegation pattern

Introduction In delegation, you delegate a certain request to an object to a second object, which we call the delegate. This is almost like a subclass sending a request to its parent class. In Rust we can achieve this by…














