pub trait ComponentRepository: PropertyInstanceGetter + PropertyInstanceSetter {
// Provided methods
fn get_branch(&self) -> Option<String> { ... }
fn set_branch<S: Into<String>>(&self, v: S) { ... }
fn get_remote_name(&self) -> Option<String> { ... }
fn set_remote_name<S: Into<String>>(&self, v: S) { ... }
fn get_remote_branch(&self) -> Option<String> { ... }
fn set_remote_branch<S: Into<String>>(&self, v: S) { ... }
}
Provided Methods§
fn get_branch(&self) -> Option<String>
fn set_branch<S: Into<String>>(&self, v: S)
fn get_remote_name(&self) -> Option<String>
fn set_remote_name<S: Into<String>>(&self, v: S)
fn get_remote_branch(&self) -> Option<String>
fn set_remote_branch<S: Into<String>>(&self, v: S)
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.