pub trait Compound {
    type Error;

    fn serialize_element<T: ?Sized>(&mut self, v: &T) -> Result<(), Self::Error>
    where
        T: CandidType
; }

Required Associated Types

Required Methods

Implementors