pub struct PluginRegistryReport {Show 14 fields
pub total: usize,
pub loaded: usize,
pub failed: usize,
pub decoder_supported: usize,
pub decoder_unsupported: usize,
pub frame_processor_supported: usize,
pub frame_processor_unsupported: usize,
pub source_normalizer_supported: usize,
pub source_normalizer_unsupported: usize,
pub unsupported_kind: usize,
pub best_supported_decoder_name: Option<String>,
pub best_supported_frame_processor_name: Option<String>,
pub best_supported_source_normalizer_name: Option<String>,
pub diagnostic_notes: Vec<String>,
}Expand description
Aggregated loader-side report for inspected dynamic plugin paths.
Fields§
§total: usize§loaded: usize§failed: usize§decoder_supported: usize§decoder_unsupported: usize§frame_processor_supported: usize§frame_processor_unsupported: usize§source_normalizer_supported: usize§source_normalizer_unsupported: usize§unsupported_kind: usize§best_supported_decoder_name: Option<String>§best_supported_frame_processor_name: Option<String>§best_supported_source_normalizer_name: Option<String>§diagnostic_notes: Vec<String>Trait Implementations§
Source§impl Clone for PluginRegistryReport
impl Clone for PluginRegistryReport
Source§fn clone(&self) -> PluginRegistryReport
fn clone(&self) -> PluginRegistryReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PluginRegistryReport
impl Debug for PluginRegistryReport
Source§impl Default for PluginRegistryReport
impl Default for PluginRegistryReport
Source§fn default() -> PluginRegistryReport
fn default() -> PluginRegistryReport
Returns the “default value” for a type. Read more
impl Eq for PluginRegistryReport
Source§impl PartialEq for PluginRegistryReport
impl PartialEq for PluginRegistryReport
impl StructuralPartialEq for PluginRegistryReport
Auto Trait Implementations§
impl Freeze for PluginRegistryReport
impl RefUnwindSafe for PluginRegistryReport
impl Send for PluginRegistryReport
impl Sync for PluginRegistryReport
impl Unpin for PluginRegistryReport
impl UnsafeUnpin for PluginRegistryReport
impl UnwindSafe for PluginRegistryReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.