[][src]Struct serde_test::Readable

pub struct Readable<T: ?Sized>(_);

Trait Implementations

impl<T: Debug + ?Sized> Debug for Readable<T>[src]

impl<'de, T> Deserialize<'de> for Readable<T> where
    T: Deserialize<'de>, 
[src]

impl<'de, T> DeserializeSeed<'de> for Readable<T> where
    T: DeserializeSeed<'de>, 
[src]

type Value = T::Value

The type produced by using this seed.

impl<'de, D> Deserializer<'de> for Readable<D> where
    D: Deserializer<'de>, 
[src]

type Error = D::Error

The error type that can be returned if some error occurs during deserialization. Read more

impl<'de, D> EnumAccess<'de> for Readable<D> where
    D: EnumAccess<'de>, 
[src]

type Error = D::Error

The error type that can be returned if some error occurs during deserialization. Read more

type Variant = Readable<D::Variant>

The Visitor that will be used to deserialize the content of the enum variant. Read more

impl<T: Eq + ?Sized> Eq for Readable<T>[src]

impl<'de, D> MapAccess<'de> for Readable<D> where
    D: MapAccess<'de>, 
[src]

type Error = D::Error

The error type that can be returned if some error occurs during deserialization. Read more

impl<T: Ord + ?Sized> Ord for Readable<T>[src]

impl<T: PartialEq + ?Sized> PartialEq<Readable<T>> for Readable<T>[src]

impl<T: PartialOrd + ?Sized> PartialOrd<Readable<T>> for Readable<T>[src]

impl<'de, D> SeqAccess<'de> for Readable<D> where
    D: SeqAccess<'de>, 
[src]

type Error = D::Error

The error type that can be returned if some error occurs during deserialization. Read more

impl<T: ?Sized> Serialize for Readable<T> where
    T: Serialize
[src]

impl<S> SerializeMap for Readable<S> where
    S: SerializeMap
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeSeq for Readable<S> where
    S: SerializeSeq
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeStruct for Readable<S> where
    S: SerializeStruct
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeStructVariant for Readable<S> where
    S: SerializeStructVariant
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeTuple for Readable<S> where
    S: SerializeTuple
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeTupleStruct for Readable<S> where
    S: SerializeTupleStruct
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> SerializeTupleVariant for Readable<S> where
    S: SerializeTupleVariant
[src]

type Ok = S::Ok

Must match the Ok type of our Serializer.

type Error = S::Error

Must match the Error type of our Serializer.

impl<S> Serializer for Readable<S> where
    S: Serializer
[src]

type Ok = S::Ok

The output type produced by this Serializer during successful serialization. Most serializers that produce text or binary output should set Ok = () and serialize into an io::Write or buffer contained within the Serializer instance. Serializers that build in-memory data structures may be simplified by using Ok to propagate the data structure around. Read more

type Error = S::Error

The error type when some error occurs during serialization.

type SerializeSeq = Readable<S::SerializeSeq>

Type returned from serialize_seq for serializing the content of the sequence. Read more

type SerializeTuple = Readable<S::SerializeTuple>

Type returned from serialize_tuple for serializing the content of the tuple. Read more

type SerializeTupleStruct = Readable<S::SerializeTupleStruct>

Type returned from serialize_tuple_struct for serializing the content of the tuple struct. Read more

type SerializeTupleVariant = Readable<S::SerializeTupleVariant>

Type returned from serialize_tuple_variant for serializing the content of the tuple variant. Read more

type SerializeMap = Readable<S::SerializeMap>

Type returned from serialize_map for serializing the content of the map. Read more

type SerializeStruct = Readable<S::SerializeStruct>

Type returned from serialize_struct for serializing the content of the struct. Read more

type SerializeStructVariant = Readable<S::SerializeStructVariant>

Type returned from serialize_struct_variant for serializing the content of the struct variant. Read more

impl<T: ?Sized> StructuralEq for Readable<T>[src]

impl<T: ?Sized> StructuralPartialEq for Readable<T>[src]

impl<'de, D> VariantAccess<'de> for Readable<D> where
    D: VariantAccess<'de>, 
[src]

type Error = D::Error

The error type that can be returned if some error occurs during deserialization. Must match the error type of our EnumAccess. Read more

impl<'de, D> Visitor<'de> for Readable<D> where
    D: Visitor<'de>, 
[src]

type Value = D::Value

The value produced by this visitor.

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for Readable<T> where
    T: RefUnwindSafe
[src]

impl<T: ?Sized> Send for Readable<T> where
    T: Send
[src]

impl<T: ?Sized> Sync for Readable<T> where
    T: Sync
[src]

impl<T: ?Sized> Unpin for Readable<T> where
    T: Unpin
[src]

impl<T: ?Sized> UnwindSafe for Readable<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<'de, T> Expected for T where
    T: Visitor<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.