1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
extern crate core;

use std::error::Error;
use std::fmt;
use ::StreamErrorKind::{OnStrError, End, StreamBad};


pub mod io;

#[derive(Debug)]
pub struct StreamError{
    err_type:StreamErrorKind
}


impl StreamError{

    pub fn new_bad() ->StreamError{
        StreamError{ err_type:StreamBad}
    }

    pub fn new_end() ->StreamError{
        StreamError{ err_type:End}
    }
    pub fn new_str(msg:&str) ->StreamError{
        StreamError{ err_type:OnStrError(msg.to_string())}
    }
    pub fn from_str(msg:&str) ->Result<(),StreamError>{
        Err(StreamError{ err_type:OnStrError(msg.to_string())})
    }

    pub fn end() ->Result<(),StreamError>{
        Err(StreamError{ err_type:End})
    }
}


impl fmt::Display for StreamError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.err_type.fmt(f)
    }
}


impl Error for StreamError{
    fn description(&self) -> &str {
        self.err_type.description()
    }

    fn cause(&self) -> Option<&Error> {
        Some(&self.err_type)
    }
}

#[derive(Debug)]
pub enum StreamErrorKind{
    OnStrError(String),
    End,
    StreamBad
}

impl fmt::Display for StreamErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match &self {
            StreamErrorKind::OnStrError(msg)=> write!(f,"{}", msg),
            StreamErrorKind::End=>write!(f,"stream postion is end"),
            StreamErrorKind::StreamBad=>write!(f,"stream is bad")
        }
    }
}

impl Error for StreamErrorKind{
    fn description(&self) -> &str {
        match &self {
            StreamErrorKind::OnStrError(msg)=> msg,
            StreamErrorKind::End=>"stream postion is end",
            StreamErrorKind::StreamBad=>"stream is bad"
        }
    }
}