[][src]Struct nakadi_types::misc::AuthorizationAttribute

pub struct AuthorizationAttribute {
    pub data_type: AuthAttDataType,
    pub value: AuthAttValue,
}

An attribute for authorization.

This object includes a data type, which represents the type of the attribute attribute (which data types are allowed depends on which authorization plugin is deployed, and how it is configured), and a value. A wildcard can be represented with data type and value. It means that all authenticated users are allowed to perform an operation.

See also Nakadi Manual

Fields

data_type: AuthAttDataType

The type of attribute (e.g., ‘team’, or ‘permission’, depending on the Nakadi configuration)

value: AuthAttValue

The value of the attribute

Implementations

impl AuthorizationAttribute[src]

pub fn new<D: Into<AuthAttDataType>, V: Into<AuthAttValue>>(
    data_type: D,
    value: V
) -> Self
[src]

Trait Implementations

impl Clone for AuthorizationAttribute[src]

impl Debug for AuthorizationAttribute[src]

impl<'de> Deserialize<'de> for AuthorizationAttribute[src]

impl Display for AuthorizationAttribute[src]

impl Eq for AuthorizationAttribute[src]

impl<U, V> From<(U, V)> for AuthorizationAttribute where
    U: Into<AuthAttDataType>,
    V: Into<AuthAttValue>, 
[src]

impl FromStr for AuthorizationAttribute[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<AuthorizationAttribute> for AuthorizationAttribute[src]

impl Serialize for AuthorizationAttribute[src]

impl StructuralEq for AuthorizationAttribute[src]

impl StructuralPartialEq for AuthorizationAttribute[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,