pub struct ScanDraft {
pub balanced: Option<bool>,
pub category: Option<String>,
pub confidence: Option<String>,
pub extracted: Option<Box<Extracted>>,
pub questions: Option<Vec<Question>>,
pub scan_id: Option<String>,
pub vendor: Option<String>,
pub voucher: Option<Box<Voucher>>,
}Fields§
§balanced: Option<bool>§category: Option<String>§confidence: Option<String>§extracted: Option<Box<Extracted>>§questions: Option<Vec<Question>>§scan_id: Option<String>§vendor: Option<String>§voucher: Option<Box<Voucher>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScanDraft
impl<'de> Deserialize<'de> for ScanDraft
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ScanDraft
Auto Trait Implementations§
impl Freeze for ScanDraft
impl RefUnwindSafe for ScanDraft
impl Send for ScanDraft
impl Sync for ScanDraft
impl Unpin for ScanDraft
impl UnsafeUnpin for ScanDraft
impl UnwindSafe for ScanDraft
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