module Protobuf::Message::Serialization::ClassMethods
def decode(bytes)
def decode(bytes) new.decode(bytes) end
def decode_from(stream)
def decode_from(stream) new.decode_from(stream) end
def encode(fields = {})
def encode(fields = {}) new(fields).encode end