Trait gmime::StreamNullExt [−][src]
pub trait StreamNullExt {
fn get_count_newlines(&self) -> bool;
fn set_count_newlines(&self, count: bool);
}Required Methods
fn get_count_newlines(&self) -> bool
Gets whether or not the stream should keep track of the number of newlines encountered.
Returns
true if the stream should count the number of newlines or false otherwise.
fn set_count_newlines(&self, count: bool)
Sets whether or not the stream should keep track of the number of newlines encountered.
count
true if newlines should be counted or false otherwise
Implementors
impl<O: IsA<StreamNull>> StreamNullExt for O