Enum rustc_serialize::base64::Newline
source · pub enum Newline {
LF,
CRLF,
}
Expand description
Available newline types
Variants§
LF
A linefeed (i.e. Unix-style newline)
CRLF
A carriage return and a linefeed (i.e. Windows-style newline)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Newline
impl Send for Newline
impl Sync for Newline
impl Unpin for Newline
impl UnwindSafe for Newline
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