object AsRaw extends FallbackAsRaw

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsRaw
  2. FallbackAsRaw
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[Raw, Real](implicit asRaw: AsRaw[Raw, Real]): AsRaw[Raw, Real]
  2. def create[Raw, Real](asRawFun: (Real) ⇒ Raw): AsRaw[Raw, Real]
  3. implicit def forTry[Raw, Real](implicit asRaw: AsRaw[Raw, Real]): AsRaw[commons.Try[Raw], commons.Try[Real]]
  4. implicit def fromFallback[Raw, Real](implicit fallback: Fallback[AsRaw[Raw, Real]]): AsRaw[Raw, Real]
    Definition Classes
    FallbackAsRaw
  5. def fromTransparentWrapping[Wrapped, Raw, Real](implicit tw: TransparentWrapping[Wrapped, Real], forWrapped: AsRaw[Raw, Wrapped]): AsRaw[Raw, Real]
  6. implicit def identity[A]: AsRaw[A, A]
  7. macro def materialize[Raw, Real]: AsRaw[Raw, Real]
  8. macro def materializeForApi[Raw, Real]: AsRaw[Raw, Real]

    Like materialize but for arbitrary real type instead of RPC trait.

    Like materialize but for arbitrary real type instead of RPC trait. Scans all public methods of the real type (instead of abstract methods for RPC trait).

  9. implicit def notFoundForTry[Raw, Real](implicit forPlain: ImplicitNotFound[AsRaw[Raw, Real]]): ImplicitNotFound[AsRaw[commons.Try[Raw], commons.Try[Real]]]
    Annotations
    @implicitNotFound( "#{forPlain}" )