openid-client 1.0.0-alpha.7

OpenID client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::Deserialize;

/// # WebFingerResponse
/// Represents the WebFingerResponse
#[derive(Debug, Deserialize)]
pub struct WebFingerResponse {
    pub links: Vec<Link>,
}

/// # Link
/// Represents the Link
#[derive(Debug, Deserialize)]
pub struct Link {
    pub rel: String,
    pub href: Option<String>,
}