Struct rustbus::signature::StructTypes[][src]

pub struct StructTypes(_);

Wraps the types a struct contains. Must contain at least one type, empty structs are not allowed in the spec

Implementations

impl StructTypes[src]

pub fn new(types: Vec<Type>) -> Result<Self, Error>[src]

Create a new StructTypes. Returns error if types is empty. Empty structs are not allow in the spec

Trait Implementations

impl AsRef<[Type]> for StructTypes[src]

impl Clone for StructTypes[src]

impl Debug for StructTypes[src]

impl PartialEq<StructTypes> for StructTypes[src]

impl Eq for StructTypes[src]

impl StructuralEq for StructTypes[src]

impl StructuralPartialEq for StructTypes[src]

Auto Trait Implementations

impl RefUnwindSafe for StructTypes

impl Send for StructTypes

impl Sync for StructTypes

impl Unpin for StructTypes

impl UnwindSafe for StructTypes

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.