pub trait GeometrySource {
// Required methods
fn source_identity(&self) -> &SourceIdentity;
fn geometry_for(&self, local_id: &str) -> Option<&GeometryEvidence>;
}Expand description
Read-only geometry evidence lookup.
Required Methods§
Sourcefn source_identity(&self) -> &SourceIdentity
fn source_identity(&self) -> &SourceIdentity
Returns the configured identity scope.
Sourcefn geometry_for(&self, local_id: &str) -> Option<&GeometryEvidence>
fn geometry_for(&self, local_id: &str) -> Option<&GeometryEvidence>
Looks up evidence by a source-local subject ID.