pub trait URLImage {
// Required method
fn url(&self) -> &str;
}Expand description
Types that can provide a URL string for CSS background-image.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".