1
 2
 3
 4
 5
 6
 7
 8
 9
10
#[derive(Default, Eq, PartialEq, Debug, Clone)]
pub struct SmtpInvalidCommand {
    line: Vec<u8>,
}

impl SmtpInvalidCommand {
    pub fn new(line: Vec<u8>) -> Self {
        Self { line }
    }
}