[][src]Struct pca9956b_api::models::LedInfoArray

pub struct LedInfoArray(_);

Trait Implementations

impl Clone for LedInfoArray[src]

impl Debug for LedInfoArray[src]

impl Deref for LedInfoArray[src]

type Target = Vec<LedInfo>

The resulting type after dereferencing.

impl DerefMut for LedInfoArray[src]

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

impl From<LedInfoArray> for Vec<LedInfo>[src]

impl From<Vec<LedInfo>> for LedInfoArray[src]

impl FromIterator<LedInfo> for LedInfoArray[src]

impl FromStr for LedInfoArray[src]

Converts Query Parameters representation (style=form, explode=false) to a LedInfoArray value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer

type Err = <LedInfo as FromStr>::Err

The associated error which can be returned from parsing.

impl IntoIterator for LedInfoArray[src]

type Item = LedInfo

The type of the elements being iterated over.

type IntoIter = IntoIter<LedInfo>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a LedInfoArray[src]

type Item = &'a LedInfo

The type of the elements being iterated over.

type IntoIter = Iter<'a, LedInfo>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut LedInfoArray[src]

type Item = &'a mut LedInfo

The type of the elements being iterated over.

type IntoIter = IterMut<'a, LedInfo>

Which kind of iterator are we turning this into?

impl PartialEq<LedInfoArray> for LedInfoArray[src]

impl Serialize for LedInfoArray[src]

impl StructuralPartialEq for LedInfoArray[src]

impl ToString for LedInfoArray[src]

Converts the LedInfoArray value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.