pub trait DropNotifyEofSignallable {
fn eof() -> Self;
fn is_eof(&self) -> bool;
}Expand description
Values that can signal EOF
Implemented for Option, which is usually what you want to use.
pub trait DropNotifyEofSignallable {
fn eof() -> Self;
fn is_eof(&self) -> bool;
}Values that can signal EOF
Implemented for Option, which is usually what you want to use.