pub struct TabularShapeConfig {
pub has_header: Option<bool>,
pub header_line: Option<usize>,
pub skip_lines: Option<usize>,
}Fields§
§has_header: Option<bool>§header_line: Option<usize>§skip_lines: Option<usize>Implementations§
Source§impl TabularShapeConfig
impl TabularShapeConfig
pub fn apply_to_parse_config(&self, parse: &mut TabularParseConfig)
Trait Implementations§
Source§impl Clone for TabularShapeConfig
impl Clone for TabularShapeConfig
Source§fn clone(&self) -> TabularShapeConfig
fn clone(&self) -> TabularShapeConfig
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 TabularShapeConfig
impl Debug for TabularShapeConfig
Source§impl Default for TabularShapeConfig
impl Default for TabularShapeConfig
Source§fn default() -> TabularShapeConfig
fn default() -> TabularShapeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TabularShapeConfig
impl<'de> Deserialize<'de> for TabularShapeConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TabularShapeConfig
impl RefUnwindSafe for TabularShapeConfig
impl Send for TabularShapeConfig
impl Sync for TabularShapeConfig
impl Unpin for TabularShapeConfig
impl UnsafeUnpin for TabularShapeConfig
impl UnwindSafe for TabularShapeConfig
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