comline/examples/codegen/simple_gen.rs

25 lines
329 B
Rust
Raw Normal View History

2023-06-15 07:10:20 -05:00
/*
2023-06-15 07:10:20 -05:00
trait Registry {
fn register(message: Credentials) -> RegisterStatus;
fn my_username() -> String;
fn tell_back(message: String) -> Result<String, TellBackError>;
}
#[derive(ValidatorStringBounds<[u8; 8]>)]
struct Credentials {
}
struct RegisterStatus {
}
struct TellBackError {
}
*/
fn main() { todo!() }
2023-06-15 07:10:20 -05:00