[]Struct ackorelic::nr_init::NR_APP

pub struct NR_APP { /* fields omitted */ }

Methods from Deref<Target = App>

pub fn web_transaction(&self, name: &str) -> Result<Transaction>[src]

Begin a new web transaction in New Relic with the given name.

This function will return an Err if the name contains a NUL byte.

pub fn non_web_transaction(&self, name: &str) -> Result<Transaction>[src]

Begin a new non-web transaction in New Relic with the given name.

This function will return an Err if the name contains a NUL byte.

Trait Implementations

impl Deref for NR_APP

type Target = App

The resulting type after dereferencing.

impl LazyStatic for NR_APP

Auto Trait Implementations

impl Unpin for NR_APP

impl Sync for NR_APP

impl Send for NR_APP

impl UnwindSafe for NR_APP

impl RefUnwindSafe for NR_APP

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