pub struct ExtractedBuffers {
pub markdown: String,
pub images: Vec<ImageBuffer>,
}Expand description
Result of extracting base64 images to memory buffers.
Fields§
§markdown: String§images: Vec<ImageBuffer>Trait Implementations§
Source§impl Clone for ExtractedBuffers
impl Clone for ExtractedBuffers
Source§fn clone(&self) -> ExtractedBuffers
fn clone(&self) -> ExtractedBuffers
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 ExtractedBuffers
impl RefUnwindSafe for ExtractedBuffers
impl Send for ExtractedBuffers
impl Sync for ExtractedBuffers
impl Unpin for ExtractedBuffers
impl UnsafeUnpin for ExtractedBuffers
impl UnwindSafe for ExtractedBuffers
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