pub trait LinkedDataSubject<I: Interpretation = ()> {
// Required method
fn visit_subject<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: SubjectVisitor<I>;
}Expand description
Serialize a Linked-Data node.
Required Methods§
Sourcefn visit_subject<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: SubjectVisitor<I>,
fn visit_subject<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: SubjectVisitor<I>,
Visits the properties of the subject represented by this value.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".