AttributePart

class AttributePart[T](key: AttributeKey, decoder: ConfigDecoder[T], isInherited: Boolean, requiredMsg: => String) extends DirectivePart[T]
class DirectivePart[T]
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(context: DirectiveContext): Result[T]
def as[U](implicit decoder: ConfigDecoder[U]): AttributePart[U]
def hasBody: Boolean
def needsCursor: Boolean
def optional: DirectivePart[Option[T]]
def separators: Set[String]

Inherited methods

@unspecialized
def andThen[A](g: Result[T] => A): DirectiveContext => A
Inherited from:
Function1
@unspecialized
def compose[A](g: A => DirectiveContext): A => Result[T]
Inherited from:
Function1
def evalMap[B](f: T => Either[String, B]): DirectivePart[B]
Inherited from:
DirectivePart
def map[B](f: T => B): DirectivePart[B]
Inherited from:
DirectivePart
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1