pub struct PendingRemoteImage {
pub url: String,
pub filename: String,
}Expand description
A remote image whose reference was rewritten to a local path by
ImageMode::Extract but whose bytes still need to be downloaded.
Fields§
§url: StringOriginal remote URL.
filename: StringLocal filename (relative to the images subdirectory).
Trait Implementations§
Source§impl Clone for PendingRemoteImage
impl Clone for PendingRemoteImage
Source§fn clone(&self) -> PendingRemoteImage
fn clone(&self) -> PendingRemoteImage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PendingRemoteImage
impl RefUnwindSafe for PendingRemoteImage
impl Send for PendingRemoteImage
impl Sync for PendingRemoteImage
impl Unpin for PendingRemoteImage
impl UnsafeUnpin for PendingRemoteImage
impl UnwindSafe for PendingRemoteImage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more