pub trait Object { // Required method fn build(self) -> String; }
OpenGraph Object
Convert the Object to a string.
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".