pub enum Separator {
Whitespace,
Comma,
Tab,
Pipe,
Semicolon,
}Expand description
Delimiter used to split columns in EOP data files.
Passed as the separator argument to:
EopData::data_from_readerEopData::data_from_text_fileEopData::from_text_fileEopData::data_from_strEopData::from_strEopData::data_from_bytesEopData::from_bytes
It controls how each line is tokenized before the parser extracts the MJD, offset, and polar-motion values.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Separator
impl RefUnwindSafe for Separator
impl Send for Separator
impl Sync for Separator
impl Unpin for Separator
impl UnsafeUnpin for Separator
impl UnwindSafe for Separator
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