Enum ini::LineSeparator
source · pub enum LineSeparator {
SystemDefault,
CR,
CRLF,
}
Expand description
Newline style
Variants§
SystemDefault
System-dependent line separator
On UNIX system, uses “\n” On Windows system, uses “\r\n”
CR
Uses “\n” as new line separator
CRLF
Uses “\r\n” as new line separator
Implementations§
Trait Implementations§
source§impl Clone for LineSeparator
impl Clone for LineSeparator
source§fn clone(&self) -> LineSeparator
fn clone(&self) -> LineSeparator
Returns a copy 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 LineSeparator
impl Debug for LineSeparator
source§impl Display for LineSeparator
impl Display for LineSeparator
source§impl PartialEq for LineSeparator
impl PartialEq for LineSeparator
source§fn eq(&self, other: &LineSeparator) -> bool
fn eq(&self, other: &LineSeparator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LineSeparator
impl Eq for LineSeparator
impl StructuralEq for LineSeparator
impl StructuralPartialEq for LineSeparator
Auto Trait Implementations§
impl RefUnwindSafe for LineSeparator
impl Send for LineSeparator
impl Sync for LineSeparator
impl Unpin for LineSeparator
impl UnwindSafe for LineSeparator
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more