implicit object ByteWrites extends Writes[Byte]
Ordering
- Alphabetic
- By Inheritance
Inherited
- ByteWrites
- Writes
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def contramap[B](f: (B) => Byte): Writes[B]
Returns a new instance that first converts a
B
value to aA
one, before converting thisA
value into a JsValue. - def narrow[B <: Byte]: Writes[B]
Narrows to any
B
super-type ofA
.Narrows to any
B
super-type ofA
.- Definition Classes
- Writes
- def transform(transformer: [JsValue]): Writes[Byte]
Transforms the resulting JsValue using a
Writes[JsValue]
. - def transform(transformer: () => JsValue): Writes[Byte]
Transforms the resulting JsValue using transformer function.
- def writes(o: Byte): JsNumber
Converts the
A
value into a JsValue.
Serializer for Byte types.