did_simple/methods/
web.rs

1//! An implementation of the [did:web] method.
2//!
3//! [did:web]: https://w3c-ccg.github.io/did-method-web
4
5/// An implementation of the `did:web` method. See the [module](self) docs for more
6/// info.
7#[derive(Debug, Eq, PartialEq, Hash, Clone)]
8pub struct DidWeb;