pub trait FetchImage {
    fn id(&self) -> Uuid;
    fn url(&self) -> &str;
    fn kind(&self) -> ImageKind;
}

Required Methods

Implementors