pub trait IntoSkeleton<T: ?Sized + Service> {
// Required method
fn into_skeleton(self) -> Skeleton;
}Expand description
Conversion into a Skeleton, from a smart pointer of a service object.
By attaching [remote_trait_object::service] on a trait, smart pointers of the trait will automatically implement this.
This is required if you want to create a Skeleton or ServiceToExport.