metalssh 0.0.1

Experimental SSH implementation
1
2
3
4
5
6
7
8
9
10
//! Crate convenience types.

mod error;
mod vec;

pub use error::Error;
pub use vec::Vec;

/// Result wrapper for working with the `metalssh` [`Error`] type.
pub type Result<T> = core::result::Result<T, Error>;