pub struct ArchiveDocument {
pub id: String,
pub subject: String,
pub document_date: String,
pub amount: String,
pub folder: String,
pub contact_name: String,
pub file_name: String,
pub reference: String,
}Expand description
A document returned by the Yuki archive search.
Fields§
§id: String§subject: String§document_date: String§amount: String§folder: String§contact_name: String§file_name: String§reference: StringTrait Implementations§
Source§impl Clone for ArchiveDocument
impl Clone for ArchiveDocument
Source§fn clone(&self) -> ArchiveDocument
fn clone(&self) -> ArchiveDocument
Returns a duplicate of the value. Read more
1.0.0 · 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 ArchiveDocument
impl RefUnwindSafe for ArchiveDocument
impl Send for ArchiveDocument
impl Sync for ArchiveDocument
impl Unpin for ArchiveDocument
impl UnsafeUnpin for ArchiveDocument
impl UnwindSafe for ArchiveDocument
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