pub enum ParsedInput {
Json(Value),
Yaml(Value),
Toml(Value),
Hcl(Body),
}Expand description
Wrapper for the different crates’ parsed input e.g. serde_json::Value gets wrapped by Json
Variants§
Trait Implementations§
Source§impl Debug for ParsedInput
impl Debug for ParsedInput
Source§impl FromStr for ParsedInput
impl FromStr for ParsedInput
Auto Trait Implementations§
impl Freeze for ParsedInput
impl RefUnwindSafe for ParsedInput
impl Send for ParsedInput
impl Sync for ParsedInput
impl Unpin for ParsedInput
impl UnwindSafe for ParsedInput
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