pub trait DownloadLocation: Send + 'static {
// Required method
fn fmt_location(&self, f: &mut Formatter<'_>) -> Result;
}Expand description
Renders a transfer destination for log lines.
Implemented by location types used with Outcome, such as local paths
and S3 object locations.
Required Methods§
fn fmt_location(&self, f: &mut Formatter<'_>) -> Result
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".