pub trait CandidType {
    fn _ty() -> Type;
    fn idl_serialize<S>(
        &self,
        serializer: S
    ) -> Result<(), <S as Serializer>::Error>
    where
        S: Serializer
; fn ty() -> Type { ... } fn id() -> TypeId { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors