BinaryCodecs

zio.schema.codec.BinaryCodecs
See theBinaryCodecs companion object
trait BinaryCodecs[Types <: TypeList] extends Codecs[Chunk[Byte], Byte, Types]

Attributes

Companion
object
Graph
Supertypes
trait Codecs[Chunk[Byte], Byte, Types]
class Object
trait Matchable
class Any

Members list

Value members

Inherited methods

def decode[T](whole: Chunk[Byte])(implicit ev: IsElementOf[T, Types]): Either[DecodeError, T]

Attributes

Inherited from:
Codecs
def encode[T](value: T)(implicit ev: IsElementOf[T, Types]): Whole

Attributes

Inherited from:
Codecs
def streamDecoder[T](implicit ev: IsElementOf[T, Types]): ZPipeline[Any, DecodeError, Element, T]

Attributes

Inherited from:
Codecs
def streamEncoder[T](implicit ev: IsElementOf[T, Types]): ZPipeline[Any, Nothing, T, Element]

Attributes

Inherited from:
Codecs