View Source Lob.DecodedPacket (Lob v1.0.3)

A struct representing a decoded LOB packet

The following fields are available:

  • head_length: the length of the encoded HEAD
  • head: HEAD contents
  • json: the decoded HEAD object, if appropriate
  • body_length: the length of the encoded BODY
  • body: BODY contents
  • cloaked: the number of cloaking rounds unwrapped

Summary

Types

@type t() :: %Lob.DecodedPacket{
  body: term(),
  body_length: term(),
  cloaked: term(),
  head: term(),
  head_length: term(),
  json: term()
}