mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-05 04:08:51 +01:00
Merge branch 'unignore-feddest-doc-test' into 'next'
enable FedDest doc-test See merge request famedly/conduit!349
This commit is contained in:
commit
89eb54b7ff
1 changed files with 5 additions and 1 deletions
|
@ -79,12 +79,16 @@ use tracing::{debug, error, info, trace, warn};
|
|||
/// was no port specified to construct a SocketAddr with.
|
||||
///
|
||||
/// # Examples:
|
||||
/// ```rust,ignore
|
||||
/// ```rust
|
||||
/// # use conduit::server_server::FedDest;
|
||||
/// # fn main() -> Result<(), std::net::AddrParseError> {
|
||||
/// FedDest::Literal("198.51.100.3:8448".parse()?);
|
||||
/// FedDest::Literal("[2001:db8::4:5]:443".parse()?);
|
||||
/// FedDest::Named("matrix.example.org".to_owned(), "".to_owned());
|
||||
/// FedDest::Named("matrix.example.org".to_owned(), ":8448".to_owned());
|
||||
/// FedDest::Named("198.51.100.5".to_owned(), "".to_owned());
|
||||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
pub enum FedDest {
|
||||
|
|
Loading…
Reference in a new issue