Trait sentry_core::IntoDsn
source · pub trait IntoDsn {
// Required method
fn into_dsn(self) -> Result<Option<Dsn>, ParseDsnError>;
}
Expand description
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.