Struct sentry_contrib_native::Parts[][src]

pub struct Parts {
    pub auth: String,
    pub url: String,
}
This is supported on crate feature transport-custom only.

Parts aquired from Dsn::into_parts.

Fields

auth: String

The auth header value

url: String

The full URL to send envelopes to

Trait Implementations

impl Clone for Parts[src]

impl Debug for Parts[src]

impl Eq for Parts[src]

impl Hash for Parts[src]

impl Ord for Parts[src]

impl PartialEq<Parts> for Parts[src]

impl PartialOrd<Parts> for Parts[src]

impl StructuralEq for Parts[src]

impl StructuralPartialEq for Parts[src]

Auto Trait Implementations

impl RefUnwindSafe for Parts

impl Send for Parts

impl Sync for Parts

impl Unpin for Parts

impl UnwindSafe for Parts

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.