A more dynamic Hash and Hashable trait for Rust
```rust
pub struct MyStruct {
pub id: u32,
pub name: String,
#[digestible(skip)]
pub password: String,
}
fn digesttobytes(){
let test = MyStruct{
id: 0,
name: "Test".tostring(),
password: "Test".tostring(),
};
let mut hasher = sha2::Sha256::new();
let result = hasher.digest(&test); // This will be the type of sha2 Output
}
fn digesttobase64(){
let test = MyStruct{
id: 0,
name: "Test".tostring(),
password: "Test".tostring(),
};
let hasher = sha2::Sha256::new().into_base64();
let result = hasher.digest(&test); // This is a base64 encoded string
}
``
Then you can select any hasher that implements Digester.
When you enable the
digest` feature all hashes that implement digezst::Digest such as SHA2 will be available.