Trait base::descriptor::AsRawDescriptors
source · 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§
sourcefn as_raw_descriptors(&self) -> Vec<RawDescriptor>
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.