//! # Result
//! This module contains the result alias and a module reimport for the error types.
pubusecrate::error::Error;/// Result is an alias for `core::result::Result<T, conntrack::error::Error>`
pubtypeResult<T>=core::result::Result<T, Error>;