Trait GeometrySource

Source
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§

Source

fn source_identity(&self) -> &SourceIdentity

Returns the configured identity scope.

Source

fn geometry_for(&self, local_id: &str) -> Option<&GeometryEvidence>

Looks up evidence by a source-local subject ID.

Implementors§