pub trait FetchCoverart<'a> {
    fn fetch_coverart() -> FetchCoverartQuery<Self>
    where
        Self: Sized + Path<'a>
, { ... } fn get_coverart(&self) -> FetchCoverartQuery<Self>
    where
        Self: Sized + Path<'a> + Clone
, { ... } }
Expand description

Implemented by all fetchable coverart entities (see FetchCoverartQuery)

Provided Methods§

Implementors§