pub trait Resolve {
type Output;
// Required method
fn resolve(self) -> Option<Self::Output>;
}Expand description
Trait for turning a reference in a STIX collection into a data-carrying node.
pub trait Resolve {
type Output;
// Required method
fn resolve(self) -> Option<Self::Output>;
}Trait for turning a reference in a STIX collection into a data-carrying node.