Packages

object Producer

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Producer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class NameOptionValueProducer(element: (String, Option[BSONValue])) extends Producer[BSONElement] with Product with Serializable
  2. case class OptionValueProducer(element: Option[BSONValue]) extends Producer[BSONValue] with Product with Serializable

Value Members

  1. implicit def element2Producer[E](element: E)(implicit arg0: (E) => BSONElement): Producer[BSONElement]
  2. implicit def identityValueProducer[B <: BSONValue](value: B): Producer[BSONValue]
  3. implicit def nameOptionValue2Producer[T](element: (String, Option[T]))(implicit writer: BSONWriter[T, _ <: BSONValue]): Producer[BSONElement]
  4. implicit def noneOptionValue2Producer(element: (String, None.type)): Producer[BSONElement]
  5. implicit val noneOptionValueProducer: (None.type) => Producer[BSONValue]
  6. implicit def optionValueProducer[T](element: Option[T])(implicit writer: BSONWriter[T, _ <: BSONValue]): Producer[BSONValue]
  7. implicit def valueProducer[T](element: T)(implicit writer: BSONWriter[T, _ <: BSONValue]): Producer[BSONValue]