module Avro::LogicalTypes::Identity

Public Class Methods

decode(datum) click to toggle source
   # File lib/avro/logical_types.rb
62 def self.decode(datum)
63   datum
64 end
encode(datum) click to toggle source
   # File lib/avro/logical_types.rb
58 def self.encode(datum)
59   datum
60 end