Compare commits

...

3 commits

Author SHA1 Message Date
ef1e849d0e Fixed Doc comment (hopfully for the last time)
They are strange indeed.
2021-05-05 20:56:33 +02:00
ff40d7ea25 Update 'src/error.rs'
Doc comments are hard…
2021-05-05 20:55:07 +02:00
cbadc86144 Update 'src/lib.rs'
Doc comments are hard…
2021-05-05 20:54:14 +02:00
2 changed files with 6 additions and 4 deletions

View file

@ -15,6 +15,9 @@
* along with irc-stream. If not, see <https://www.gnu.org/licenses/>.
*/
//! Implements IrcStreamError, an error type
//! that wraps all possible error that are thrown by IrcStream.
use std::{
error::Error,
fmt,
@ -22,8 +25,6 @@ use std::{
str,
};
//! Implements IrcStreamError, an error type
//! that wraps all possible error that are thrown by IrcStream.
/// A custom error type that wraps all error that IrcStream will throw.
#[derive(Debug)]
pub enum IrcStreamError {

View file

@ -15,14 +15,15 @@
* along with irc-stream. If not, see <https://www.gnu.org/licenses/>.
*/
//! This crate provides the `IrcRead` and `IrcWrite` traits and
//! the IrcStream struct that implements them.
pub mod error;
pub use self::error::*;
use std::io::{Read, Write};
use irc_proto::message::Message;
//! This crate provides the `IrcRead` and `IrcWrite` traits and
//! the IrcStream struct that implements them.
/// A trait that mirrors std::io::Read;
/// It requires the `read()` method that returns an IRC Message.
/// The function may or may not block.