use Display;
use PathBuf;
/// MAVLink connection address for a file input
///
/// # Example
///
/// ```ignore
/// use mavlink::{Connectable, FileConfig};
/// use std::path::PathBuf;
///
/// let config = FileConfig::new(PathBuf::from("/some/path"));
/// config
/// .connect::<mavlink::ardupilotmega::MavMessage>()
/// .unwrap();
/// ```