Enum sentry_contrib_native::Consent[][src]

pub enum Consent {
    Unknown,
    Revoked,
    Given,
}

The state of user consent.

Variants

Unknown

Unknown.

Revoked

Revoked.

Given

Given.

Trait Implementations

impl Clone for Consent[src]

impl Copy for Consent[src]

impl Debug for Consent[src]

impl Eq for Consent[src]

impl Hash for Consent[src]

impl Ord for Consent[src]

impl PartialEq<Consent> for Consent[src]

impl PartialOrd<Consent> for Consent[src]

impl StructuralEq for Consent[src]

impl StructuralPartialEq for Consent[src]

Auto Trait Implementations

impl RefUnwindSafe for Consent

impl Send for Consent

impl Sync for Consent

impl Unpin for Consent

impl UnwindSafe for Consent

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.