pub trait Object: DeserializeOwned + Serialize { }
Expand description
Describes an object of any kind.
The Object type serves as the base type for most of the other kinds of objects defined in the
Activity Vocabulary, including other Core types such as Activity
, IntransitiveActivity
,
Collection
and OrderedCollection
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.