Trait sentry::IntoClientConfig [] [src]

pub trait IntoClientConfig {
    fn into_client_config(self) -> (Option<Dsn>, Option<ClientOptions>);
}

Helper trait to convert an object into a client config for create.

Required Methods

Converts the object into a client config tuple of DSN and options.

This can panic in cases where the conversion cannot be performed due to an error.

Implementations on Foreign Types

impl IntoClientConfig for ()
[src]

impl<C: IntoClientConfig> IntoClientConfig for Option<C>
[src]

impl<'a> IntoClientConfig for &'a str
[src]

impl<'a> IntoClientConfig for &'a OsStr
[src]

impl IntoClientConfig for OsString
[src]

impl IntoClientConfig for String
[src]

impl<C: IntoClientConfig> IntoClientConfig for (C, ClientOptions)
[src]

Implementors