reddit-rs 0.1.1

A wrapper around the Reddit API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::models::{author::AuthorFlairTemplateId, link::LinkFlairTemplateId, private::Sealed};

pub trait TemplateId: Copy + Sealed {}

impl Sealed for AuthorFlairTemplateId {}

impl TemplateId for AuthorFlairTemplateId {}

impl Sealed for LinkFlairTemplateId {}

impl TemplateId for LinkFlairTemplateId {}