summaryrefslogtreecommitdiffstats
path: root/third_party/rust/uniffi_bindgen/src/bindings/python/templates/Float64Helper.py
blob: 772f5080e978702dc90d7ea9cd671c6e5d12e94b (plain)
1
2
3
4
5
6
7
8
class _UniffiConverterDouble(_UniffiConverterPrimitiveFloat):
    @staticmethod
    def read(buf):
        return buf.read_double()

    @staticmethod
    def write_unchecked(value, buf):
        buf.write_double(value)