pub struct SourceData {
pub name: String,
pub headers: Vec<String>,
pub rows: Vec<HashMap<String, Value>>,
}Fields§
§name: String§headers: Vec<String>§rows: Vec<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for SourceData
impl Clone for SourceData
Source§fn clone(&self) -> SourceData
fn clone(&self) -> SourceData
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 moreAuto Trait Implementations§
impl Freeze for SourceData
impl RefUnwindSafe for SourceData
impl Send for SourceData
impl Sync for SourceData
impl Unpin for SourceData
impl UnsafeUnpin for SourceData
impl UnwindSafe for SourceData
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