module Avro::LogicalTypes::Identity

Public Class Methods

decode(datum) click to toggle source
    # File lib/avro/logical_types.rb
248 def self.decode(datum)
249   datum
250 end
encode(datum) click to toggle source
    # File lib/avro/logical_types.rb
244 def self.encode(datum)
245   datum
246 end