pub struct LocalizeResult {
pub markdown: String,
pub downloaded: usize,
pub total: usize,
pub replacements: Vec<ImageReplacement>,
pub metadata: Vec<ImageMetadata>,
}Expand description
Result of localizing images.
Fields§
§markdown: String§downloaded: usize§total: usize§replacements: Vec<ImageReplacement>§metadata: Vec<ImageMetadata>Trait Implementations§
Source§impl Clone for LocalizeResult
impl Clone for LocalizeResult
Source§fn clone(&self) -> LocalizeResult
fn clone(&self) -> LocalizeResult
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 LocalizeResult
impl RefUnwindSafe for LocalizeResult
impl Send for LocalizeResult
impl Sync for LocalizeResult
impl Unpin for LocalizeResult
impl UnsafeUnpin for LocalizeResult
impl UnwindSafe for LocalizeResult
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