Kernel documentation. Still need to do thread.rs

This commit is contained in:
Rémi Rativel
2023-05-14 23:51:15 +02:00
parent 2f38edee70
commit e430a62c35
5 changed files with 44 additions and 7 deletions

View File

@ -1,3 +1,11 @@
//! # Error Code
//!
//! This module enumerate the possibles error code who could get in a function
//!
//! **Basic Usage:*
//!
//! Result<YourSuccessStruct, **ErrorCode**
#![allow(unused, clippy::missing_docs_in_private_items)]
/// Error enum, use it with Result<YourSucessStruct, **ErrorCode**>
pub enum ErrorCode {