Struct scryfall::util::uri::URI[][src]

pub struct URI<T>(_, _);

A URI that will fetch something of a defined type T.

Implementations

impl<T: DeserializeOwned> URI<T>[src]

pub fn fetch(&self) -> Result<T>[src]

Fetch the object of type T that this URL is pointing to.

Examples

use scryfall::{util::uri::URI, card::Card};
assert_eq!(
    URI::<Card>::from("https://api.scryfall.com/cards/arena/67330")
        .fetch()
        .unwrap()
        .name,
    Card::arena(67330).unwrap().name)

impl<T, I> URI<I> where
    T: DeserializeOwned + 'static,
    I: IntoIterator<Item = T>, 
[src]

pub fn iter(&self) -> Result<UriIter<T>>[src]

Fetch the objects of type T in the list that this URL is pointing to.

Trait Implementations

impl<T: DeserializeOwned> AsRef<str> for URI<T>[src]

impl<T: Clone> Clone for URI<T>[src]

impl<T: Debug> Debug for URI<T>[src]

impl<'de, T> Deserialize<'de> for URI<T>[src]

impl<T: Eq> Eq for URI<T>[src]

impl<T: DeserializeOwned> From<&'_ str> for URI<T>[src]

impl<T: DeserializeOwned> From<String> for URI<T>[src]

impl<T: Hash> Hash for URI<T>[src]

impl<T: Ord> Ord for URI<T>[src]

impl<T: PartialEq> PartialEq<URI<T>> for URI<T>[src]

impl<T: PartialOrd> PartialOrd<URI<T>> for URI<T>[src]

impl<T> Serialize for URI<T>[src]

impl<T> StructuralEq for URI<T>[src]

impl<T> StructuralPartialEq for URI<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for URI<T>[src]

impl<T> Send for URI<T>[src]

impl<T> Sync for URI<T>[src]

impl<T> Unpin for URI<T>[src]

impl<T> UnwindSafe for URI<T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.