Partial

object Partial
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Partial.type

Type members

Classlikes

final case class Specified[+T](value: T) extends Partial[T]
case object Unspecified extends Partial[Nothing]
object auto
object flat

Different options for encoding/decoding a Partial. You need to import one of these in order to have generic derivation of types containing a Partial[_].

Different options for encoding/decoding a Partial. You need to import one of these in order to have generic derivation of types containing a Partial[_].

The naming convention is: encoder / decoder, and x mean x / x.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Givens

Givens

given convertToSpecified[T]: Conversion[T, Specified[T]]