webfinger-rs 0.0.23

A WebFinger client and library written in Rust.
Documentation
use nutype::nutype;

/// Link relation type
///
/// <https://www.rfc-editor.org/rfc/rfc7033.html#section-4.4.4.1>
#[nutype(derive(
    Debug,
    Display,
    Clone,
    From,
    Into,
    FromStr,
    Display,
    Serialize,
    Deserialize,
    AsRef,
    Deref,
    PartialEq,
    Eq,
))]
pub struct Rel(String);