[][src]Struct ackorelic::ExternalParamsBuilder

pub struct ExternalParamsBuilder<'a> { /* fields omitted */ }

Builder for parameters used to instrument external calls.

Methods

impl<'a> ExternalParamsBuilder<'a>[src]

pub fn new(uri: &'a str) -> Self[src]

Begin creating a new set of external parameters.

pub fn procedure(self, procedure: &'a str) -> Self[src]

Set the procedure of the external segment.

In HTTP contexts, this will usually be the request method (eg GET, POST, etc). For non-HTTP requests, or protocols that encode more specific semantics on top of HTTP like SOAP, you may wish to use a different value that more precisely encodes how the resource was requested.

pub fn library(self, library: &'a str) -> Self[src]

Set the library of the external segment.

pub fn build(self) -> Result<ExternalParams>[src]

Consume the builder, returning the set of external parameters.

This will fail if any of the the parameters contain null bytes.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more