module documentation

We perform uniqueness checks explicitly on the serializer class, rather the using Django's `.full_clean()`. This gives us better separation of concerns, allows us to use single-step object creation, and makes it possible to switch between using the implicit `ModelSerializer` class and an equivalent explicit `Serializer` class.

Class BaseUniqueForValidator No class docstring; 0/4 instance variable, 0/2 class variable, 2/6 methods documented
Class ProhibitSurrogateCharactersValidator Undocumented
Class UniqueForDateValidator Undocumented
Class UniqueForMonthValidator Undocumented
Class UniqueForYearValidator Undocumented
Class UniqueTogetherValidator Validator that corresponds to `unique_together = (...)` on a model class.
Class UniqueValidator Validator that corresponds to `unique=True` on a model field.
Function qs_exists Undocumented
Function qs_filter Undocumented
def qs_exists(queryset): (source)

Undocumented

def qs_filter(queryset, **kwargs): (source)

Undocumented