musket 0.23.0

Musket is a command line interface to send a URL to several destinations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug)]
pub enum SourceError {
    Instapaper { message: String },
}

impl std::fmt::Display for SourceError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        use SourceError::Instapaper;
        let output = match self {
            Instapaper { message: m } => m,
        };
        write!(f, "{output}")
    }
}