pub trait IntoRowWithContext<'a, A: 'a>: Sized {
    type Serializer: Serializer<'a, Self>;

    fn get_serializer(accessor: A) -> Self::Serializer;
}
Available on crate feature row only.
Expand description

Produce a Serializer to convert values of this type, which requires a context value, into rows of output.

This can be derived via the IntoRowWithPersianRug derive macro for the case of a persian-rug type.

Required Associated Types

Required Methods

accessor is some context value

Implementations on Foreign Types

Available on crate feature row only.
Available on crate feature row only.

Implementors