pub trait FromClientPart<T> {
// Required method
fn get_part(&self) -> T;
}Expand description
Trait for extracting parts/dependencies from a Client.
Implemented by Client for each dependency type that can be extracted. Used internally by
#[derive(FromClient)] - users should derive FromClient rather than using this trait
directly.