pub enum InputSourceType<'a> {
File(&'a str),
String(&'a str),
Json(Value),
JsonString(&'a str),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for InputSourceType<'a>
impl<'a> RefUnwindSafe for InputSourceType<'a>
impl<'a> Send for InputSourceType<'a>
impl<'a> Sync for InputSourceType<'a>
impl<'a> Unpin for InputSourceType<'a>
impl<'a> UnwindSafe for InputSourceType<'a>
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