Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for encoder_instance (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/encoders.py

            if type(obj) in custom_encoder:
                return custom_encoder[type(obj)](obj)
            else:
                for encoder_type, encoder_instance in custom_encoder.items():
                    if isinstance(obj, encoder_type):
                        return encoder_instance(obj)
        if include is not None and not isinstance(include, (set, dict)):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 10.9K bytes
    - Click Count (0)
Back to Top