pub struct NormalizedOutput {
pub json_body: String,
pub method: ExtractionMethod,
}Expand description
Result of a successful normalization.
Fields§
§json_body: StringThe extracted JSON body (trimmed, ready for serde_json::from_str).
method: ExtractionMethodHow the JSON was extracted.
Trait Implementations§
Source§impl Clone for NormalizedOutput
impl Clone for NormalizedOutput
Source§fn clone(&self) -> NormalizedOutput
fn clone(&self) -> NormalizedOutput
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 NormalizedOutput
impl RefUnwindSafe for NormalizedOutput
impl Send for NormalizedOutput
impl Sync for NormalizedOutput
impl Unpin for NormalizedOutput
impl UnsafeUnpin for NormalizedOutput
impl UnwindSafe for NormalizedOutput
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