pub trait ComponentHome {
// Required method
fn home_repository_id(&self) -> &str;
}Expand description
CCM home trait. End-user homes implement this plus the specific
create() operation.
Required Methods§
Sourcefn home_repository_id(&self) -> &str
fn home_repository_id(&self) -> &str
Returns the Repository ID of the home.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".