BinaryCodec

trait BinaryCodec extends Codec[Chunk[Byte], Byte]
Companion:
object
trait Codec[Chunk[Byte], Byte]
class Object
trait Matchable
class Any

Value members

Inherited methods

final def decode[A](schema: Schema[A]): Chunk[Byte] => Either[DecodeError, A]
Inherited from:
Codec
final def decoder[A](schema: Schema[A]): ZPipeline[Any, DecodeError, Byte, A]
Inherited from:
Codec
def decoderFor[A](schema: Schema[A]): Decoder[Chunk[Byte], Byte, A]
Inherited from:
Codec
final def encode[A](schema: Schema[A]): A => Chunk[Byte]
Inherited from:
Codec
final def encoder[A](schema: Schema[A]): ZPipeline[Any, Nothing, A, Byte]
Inherited from:
Codec
def encoderFor[A](schema: Schema[A]): Encoder[Chunk[Byte], Byte, A]
Inherited from:
Codec