[−][src]Trait sentry::internals::IntoDsn
Helper trait to convert a string into an Option<Dsn>
.
This converts a value into a DSN by parsing. The empty string or null values result in no DSN being parsed.
Required methods
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError>
Converts the value into a Result<Option<Dsn>, E>
.
Implementations on Foreign Types
impl<'a> IntoDsn for &'a str
[src]
impl IntoDsn for String
[src]
impl IntoDsn for OsString
[src]
impl<'a> IntoDsn for &'a OsStr
[src]
impl<'a> IntoDsn for Cow<'a, str>
[src]
impl<I> IntoDsn for Option<I> where
I: IntoDsn,
[src]
I: IntoDsn,