pub struct OwnedProcMapEntry {
pub start: u64,
pub end: u64,
pub perms: String,
pub offset: u64,
pub dev_major: u64,
pub dev_minor: u64,
pub inode: u64,
/* private fields */
}Fields§
§start: u64§end: u64§perms: String§offset: u64§dev_major: u64§dev_minor: u64§inode: u64Implementations§
Trait Implementations§
Source§impl Clone for OwnedProcMapEntry
impl Clone for OwnedProcMapEntry
Source§fn clone(&self) -> OwnedProcMapEntry
fn clone(&self) -> OwnedProcMapEntry
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 OwnedProcMapEntry
impl Debug for OwnedProcMapEntry
impl Eq for OwnedProcMapEntry
Source§impl From<ProcMapEntry<'_>> for OwnedProcMapEntry
impl From<ProcMapEntry<'_>> for OwnedProcMapEntry
Source§fn from(entry: ProcMapEntry<'_>) -> Self
fn from(entry: ProcMapEntry<'_>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OwnedProcMapEntry
impl PartialEq for OwnedProcMapEntry
impl StructuralPartialEq for OwnedProcMapEntry
Auto Trait Implementations§
impl Freeze for OwnedProcMapEntry
impl RefUnwindSafe for OwnedProcMapEntry
impl Send for OwnedProcMapEntry
impl Sync for OwnedProcMapEntry
impl Unpin for OwnedProcMapEntry
impl UnsafeUnpin for OwnedProcMapEntry
impl UnwindSafe for OwnedProcMapEntry
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.