pub enum InputKind {
Json(Vec<u8>),
Jsonl(Vec<u8>),
Yaml(Vec<u8>),
Text {
bytes: Vec<u8>,
mode: TextMode,
},
Fileset(Vec<FilesetInput>),
}Variants§
Auto Trait Implementations§
impl Freeze for InputKind
impl RefUnwindSafe for InputKind
impl Send for InputKind
impl Sync for InputKind
impl Unpin for InputKind
impl UnwindSafe for InputKind
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