[][src]Struct logdna_client::request::RequestTemplate

pub struct RequestTemplate {
    pub method: Method,
    pub charset: HeaderValue,
    pub content: HeaderValue,
    pub encoding: Encoding,
    pub schema: Schema,
    pub host: String,
    pub endpoint: String,
    pub params: Params,
    pub api_key: String,
}

A reusable template to generate requests from

Fields

method: Method

HTTP method, default is POST

charset: HeaderValue

Content charset, default is utf8

content: HeaderValue

Content type, default is application/json

encoding: Encoding

Content encoding, default is gzip

schema: Schema

Http schema, default is https

host: String

Host / domain, default is logs.logdna.com

endpoint: String

Ingest endpoint, default is /logs/ingest

params: Params

Query parameters appended to the url

api_key: String

LogDNA ingestion key

Methods

impl RequestTemplate[src]

pub fn builder() -> TemplateBuilder[src]

Constructs a new TemplateBuilder

pub fn new_request<T: AsRef<IngestBody> + Send + 'static>(
    &self,
    body: T
) -> IngestRequest
[src]

Uses the template to create a new request

Trait Implementations

impl Debug for RequestTemplate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T