pub struct InferredSchema {
pub fields: Vec<(String, String)>,
}Expand description
Inferred schema: ordered (field name, OL type string) pairs.
Fields§
§fields: Vec<(String, String)>Trait Implementations§
Source§impl Clone for InferredSchema
impl Clone for InferredSchema
Source§fn clone(&self) -> InferredSchema
fn clone(&self) -> InferredSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InferredSchema
impl Debug for InferredSchema
Source§impl Default for InferredSchema
impl Default for InferredSchema
Source§fn default() -> InferredSchema
fn default() -> InferredSchema
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InferredSchema
impl RefUnwindSafe for InferredSchema
impl Send for InferredSchema
impl Sync for InferredSchema
impl Unpin for InferredSchema
impl UnsafeUnpin for InferredSchema
impl UnwindSafe for InferredSchema
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