pub struct ObjectMetadata {
    pub module_path: String,
    pub name: String,
    pub imp: ObjectImpl,
}Fields§
§module_path: String§name: String§imp: ObjectImplImplementations§
Source§impl ObjectMetadata
 
impl ObjectMetadata
Sourcepub fn free_ffi_symbol_name(&self) -> String
 
pub fn free_ffi_symbol_name(&self) -> String
FFI symbol name for the free function for this object.
This function is used to free the memory used by this object.
Trait Implementations§
Source§impl Clone for ObjectMetadata
 
impl Clone for ObjectMetadata
Source§fn clone(&self) -> ObjectMetadata
 
fn clone(&self) -> ObjectMetadata
Returns a copy of the value. Read more
1.0.0 · 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 ObjectMetadata
 
impl Debug for ObjectMetadata
Source§impl From<ObjectMetadata> for Metadata
 
impl From<ObjectMetadata> for Metadata
Source§fn from(v: ObjectMetadata) -> Self
 
fn from(v: ObjectMetadata) -> Self
Converts to this type from the input type.
Source§impl Ord for ObjectMetadata
 
impl Ord for ObjectMetadata
Source§fn cmp(&self, other: &ObjectMetadata) -> Ordering
 
fn cmp(&self, other: &ObjectMetadata) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ObjectMetadata
 
impl PartialEq for ObjectMetadata
Source§impl PartialOrd for ObjectMetadata
 
impl PartialOrd for ObjectMetadata
impl Eq for ObjectMetadata
impl StructuralPartialEq for ObjectMetadata
Auto Trait Implementations§
impl Freeze for ObjectMetadata
impl RefUnwindSafe for ObjectMetadata
impl Send for ObjectMetadata
impl Sync for ObjectMetadata
impl Unpin for ObjectMetadata
impl UnwindSafe for ObjectMetadata
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