zhttp.http.headers.HeaderExtension.scala Maven / Gradle / Ivy
package zhttp.http.headers
/**
* A trait that provides a ton of powerful operators when extended. Any type
* that extends HeaderExtension needs to implement the two methods viz.
* `getHeaders` and `updateHeaders`. All other operators are built on top these
* two methods.
*/
private[zhttp] trait HeaderExtension[+A] extends HeaderModifier[A] with HeaderGetters[A] with HeaderChecks[A] {
self: A =>
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy