All checks were successful
CI / Check / Test (push) Successful in 1h7m53s
31 lines
665 B
Rust
31 lines
665 B
Rust
#[derive(Debug, Clone)]
|
|
pub struct RemoteActorInfo {
|
|
pub url: String,
|
|
pub handle: String,
|
|
pub display_name: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct PendingFollowerInfo {
|
|
pub url: String,
|
|
pub handle: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar_url: Option<String>,
|
|
}
|
|
|
|
pub struct FederationFlags {
|
|
pub goals: bool,
|
|
pub reviews: bool,
|
|
pub watchlist: bool,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct FederatedProfile {
|
|
pub actor_url: String,
|
|
pub handle: String,
|
|
pub display_name: Option<String>,
|
|
pub bio: Option<String>,
|
|
pub avatar_url: Option<String>,
|
|
pub banner_url: Option<String>,
|
|
}
|