pub struct NativeOperatorArchiveInspection {
pub identity: NativeOperatorObjectIdentity,
pub members: Vec<NativeOperatorArchiveMember>,
pub defined_symbols: Vec<String>,
pub strong_defined_symbols: Vec<String>,
pub symbol_definition_counts: BTreeMap<String, usize>,
pub indexed_symbol_members: BTreeMap<String, Vec<String>>,
}Fields§
§identity: NativeOperatorObjectIdentity§members: Vec<NativeOperatorArchiveMember>§defined_symbols: Vec<String>§strong_defined_symbols: Vec<String>§symbol_definition_counts: BTreeMap<String, usize>§indexed_symbol_members: BTreeMap<String, Vec<String>>Implementations§
Trait Implementations§
Source§impl Clone for NativeOperatorArchiveInspection
impl Clone for NativeOperatorArchiveInspection
Source§fn clone(&self) -> NativeOperatorArchiveInspection
fn clone(&self) -> NativeOperatorArchiveInspection
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 moreimpl Eq for NativeOperatorArchiveInspection
impl StructuralPartialEq for NativeOperatorArchiveInspection
Auto Trait Implementations§
impl Freeze for NativeOperatorArchiveInspection
impl RefUnwindSafe for NativeOperatorArchiveInspection
impl Send for NativeOperatorArchiveInspection
impl Sync for NativeOperatorArchiveInspection
impl Unpin for NativeOperatorArchiveInspection
impl UnsafeUnpin for NativeOperatorArchiveInspection
impl UnwindSafe for NativeOperatorArchiveInspection
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