object Report

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Report
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract class Module extends AnyRef

    Information about a module produced by the linker.

Value Members

  1. def deserialize(bytes: Array[Byte]): Option[Report]

    Tries to deserialize the given bytes as a Report.

    Tries to deserialize the given bytes as a Report.

    returns

    None If the provided bytes are not compatible with the current linker version, Some(<report>) otherwise.

    See also

    serialize about when this is guaranteed to return Some(<report>).

  2. def serialize(report: Report): Array[Byte]

    Serializes this Report to a byte array.

    Serializes this Report to a byte array.

    A report serialized with the exact same linker version is guaranteed to be deserializable using deserialize. If the linker version is different, no guarantee is given.