pub trait AttributeSliceExt {
    // Required method
    fn parse_uniffi_attr_args<T: UniffiAttributeArgs>(&self) -> Result<T>;

    // Provided method
    fn uniffi_attr_args_not_allowed_here(&self) -> Option<Error> { ... }
}

Required Methods§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl AttributeSliceExt for [Attribute]

Implementors§