did_simple/methods/
mod.rs

1pub mod key;
2pub mod web;
3
4/// Dynamically typed did method.
5#[derive(Debug, Eq, PartialEq, Hash, Clone)]
6#[non_exhaustive]
7pub enum DidDyn {
8	Key(self::key::DidKey),
9	Web(self::web::DidWeb),
10}