pub enum IniParsingError {
MissingEquals {
line_number: usize,
},
ExpectedSectionTitle {
line_number: usize,
},
BrokenSectionTitle {
line_number: usize,
},
DuplicateSection {
line_number: usize,
section: String,
},
DuplicateSectionKey {
line_number: usize,
section: String,
key: String,
},
}Expand description
An error generated by the ini parser.
Variants§
Trait Implementations§
Source§impl Clone for IniParsingError
impl Clone for IniParsingError
Source§fn clone(&self) -> IniParsingError
fn clone(&self) -> IniParsingError
Returns a duplicate of the value. Read more
1.0.0 · 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 IniParsingError
impl Debug for IniParsingError
Source§impl Display for IniParsingError
impl Display for IniParsingError
Source§impl PartialEq for IniParsingError
impl PartialEq for IniParsingError
impl StructuralPartialEq for IniParsingError
Auto Trait Implementations§
impl Freeze for IniParsingError
impl RefUnwindSafe for IniParsingError
impl Send for IniParsingError
impl Sync for IniParsingError
impl Unpin for IniParsingError
impl UnwindSafe for IniParsingError
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