pub struct ParseResultJson {
pub pages: Vec<JsonPage>,
}Expand description
Structured JSON output. Returned when output_format == Json.
Fields§
§pages: Vec<JsonPage>Trait Implementations§
Source§impl Clone for ParseResultJson
impl Clone for ParseResultJson
Source§fn clone(&self) -> ParseResultJson
fn clone(&self) -> ParseResultJson
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 moreSource§impl Debug for ParseResultJson
impl Debug for ParseResultJson
Source§impl<'de> Deserialize<'de> for ParseResultJson
impl<'de> Deserialize<'de> for ParseResultJson
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
Auto Trait Implementations§
impl Freeze for ParseResultJson
impl RefUnwindSafe for ParseResultJson
impl Send for ParseResultJson
impl Sync for ParseResultJson
impl Unpin for ParseResultJson
impl UnsafeUnpin for ParseResultJson
impl UnwindSafe for ParseResultJson
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