pub trait AsRawDescriptors {
    // Required method
    fn as_raw_descriptors(&self) -> Vec<RawDescriptor>;
}
Expand description

A trait similar to AsRawDescriptor but supports an arbitrary number of descriptors.

Required Methods§

source

fn as_raw_descriptors(&self) -> Vec<RawDescriptor>

Returns the underlying raw descriptors.

Please refer to the documentation of AsRawDescriptor::as_raw_descriptor for limitations and recommended use.

Implementors§