pub trait HasGet<'a>: KnowsGetType<'a>where
Self::GetType: KnowsPathSegment,{
// Required method
fn get<PathSegment>(self, segment: PathSegment) -> Option<Self::GetType>
where PathSegment: Into<<Self::GetType as KnowsPathSegment>::PathSegment>;
}
Required Methods§
Object Safety§
This trait is not object safe.