pub struct DocumentInput {
pub file_name: String,
pub content_type: String,
pub data: Vec<u8>,
}Expand description
One complete in-memory document.
Fields§
§file_name: StringCaller-supplied filename used for format detection and returned safely.
content_type: StringCaller-supplied media type used as a format-detection fallback.
data: Vec<u8>Complete document bytes.
Trait Implementations§
Source§impl Clone for DocumentInput
impl Clone for DocumentInput
Source§fn clone(&self) -> DocumentInput
fn clone(&self) -> DocumentInput
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 moreSource§impl Debug for DocumentInput
impl Debug for DocumentInput
impl Eq for DocumentInput
Source§impl PartialEq for DocumentInput
impl PartialEq for DocumentInput
impl StructuralPartialEq for DocumentInput
Auto Trait Implementations§
impl Freeze for DocumentInput
impl RefUnwindSafe for DocumentInput
impl Send for DocumentInput
impl Sync for DocumentInput
impl Unpin for DocumentInput
impl UnsafeUnpin for DocumentInput
impl UnwindSafe for DocumentInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.