pub trait DescribeLocation {
// Required method
fn describe_location(location: &Location) -> Option<Vec<u8>>;
}
Expand description
Means of converting a location into a stable and unique descriptive identifier.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.