scryfall-client 0.1.0

an wrapper for the scryfall API
1
2
3
4
5
6
7
8
9
use crate::search_builder::SearchBuilderTrait;

pub struct IncludeExtras;

impl SearchBuilderTrait for IncludeExtras {
    fn stringify(&self) -> String {
        String::from("include:extras")
    }
}