jsonInputConversion

given jsonInputConversion[T](using val converter: JsonInput[T]): Conversion[JsonValue, T]

Applies conversion using JsonInput.

Value members

Concrete methods

def apply(value: JsonValue): T

Convert value x of type T to type U

Convert value x of type T to type U

Inherited methods

@unspecialized
def andThen[A](g: T => A): JsonValue => A
Inherited from
Function1
@unspecialized
def compose[A](g: A => JsonValue): A => T
Inherited from
Function1
override
def toString(): String
Definition Classes
Function1 -> Any
Inherited from
Function1

Concrete fields

protected

Extensions

Inherited extensions

extension (x: T)
def convert: T

x.convert converts a value x of type T to type U

x.convert converts a value x of type T to type U

Inherited from
Conversion