It's a bridge!
Brug allows you to transform function calls for a implementation to be turned into RPC like enum's, and offers both generation of facade traits and performer traits
An example speaks louder than 2 words:
```rust use brug::{Performer, tokio::OneShot};
struct MyStruct;
impl MyStruct { fn add(a: usize, b: usize) -> usize { a + b } }
async fn main() { let (s, r) = OneShot::pair(); let command = MyStructCommand::Add(1, 2, s); let mut my = MyStruct;
my.perform(command).await; assert_eq!(r.receive().await.expect("command got dropped before processed"), 3); }
// The attribute on MyStruct expands to the following:
pub enum MyStructCommand
impl ::brug::Performer
pub trait MyStructFacade
async fn handle(&self, command: MyStructCommand
pub trait MyStructFacadeMut
async fn handle(&mut self, command: MyStructCommand
impl
The Command enum allows you to use an RPC pattern for a given struct, and the Facade's allow you to create an object that functions like the given struct, but is actually using said RPC pattern