[][src]Struct nakadi_types::misc::AuthorizationAttributes

pub struct AuthorizationAttributes(_);

Implementations

impl AuthorizationAttributes[src]

pub fn new<T: Into<Vec<AuthorizationAttribute>>>(v: T) -> Self[src]

pub fn att<T: Into<AuthorizationAttribute>>(self, v: T) -> Self[src]

pub fn push<T: Into<AuthorizationAttribute>>(&mut self, v: T)[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn iter(&self) -> impl Iterator<Item = &AuthorizationAttribute>[src]

Trait Implementations

impl Clone for AuthorizationAttributes[src]

impl Debug for AuthorizationAttributes[src]

impl Default for AuthorizationAttributes[src]

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

impl Eq for AuthorizationAttributes[src]

impl<A, B, C> From<(A, B, C)> for AuthorizationAttributes where
    A: Into<AuthorizationAttribute>,
    B: Into<AuthorizationAttribute>,
    C: Into<AuthorizationAttribute>, 
[src]

impl<A> From<A> for AuthorizationAttributes where
    A: Into<AuthorizationAttribute>, 
[src]

impl IntoIterator for AuthorizationAttributes[src]

type Item = AuthorizationAttribute

The type of the elements being iterated over.

type IntoIter = IntoIter<AuthorizationAttribute>

Which kind of iterator are we turning this into?

impl PartialEq<AuthorizationAttributes> for AuthorizationAttributes[src]

impl Serialize for AuthorizationAttributes[src]

impl StructuralEq for AuthorizationAttributes[src]

impl StructuralPartialEq for AuthorizationAttributes[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, 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>,