pub struct ObjectInfo {
pub lifetime: LifetimeType,
pub backing: BackingType,
pub kuid: ObjID,
pub nonce: u128,
pub def_prot: Protections,
}
Fields§
§lifetime: LifetimeType
§backing: BackingType
§kuid: ObjID
§nonce: u128
§def_prot: Protections
Implementations§
Source§impl ObjectInfo
impl ObjectInfo
pub fn new( lifetime: LifetimeType, backing: BackingType, kuid: ObjID, nonce: u128, def_prot: Protections, ) -> Self
Trait Implementations§
Source§impl Clone for ObjectInfo
impl Clone for ObjectInfo
Source§fn clone(&self) -> ObjectInfo
fn clone(&self) -> ObjectInfo
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 ObjectInfo
impl Debug for ObjectInfo
Source§impl Ord for ObjectInfo
impl Ord for ObjectInfo
Source§fn cmp(&self, other: &ObjectInfo) -> Ordering
fn cmp(&self, other: &ObjectInfo) -> 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 ObjectInfo
impl PartialEq for ObjectInfo
Source§impl PartialOrd for ObjectInfo
impl PartialOrd for ObjectInfo
impl Copy for ObjectInfo
impl Eq for ObjectInfo
impl StructuralPartialEq for ObjectInfo
Auto Trait Implementations§
impl Freeze for ObjectInfo
impl ObjSafe for ObjectInfo
impl RefUnwindSafe for ObjectInfo
impl Send for ObjectInfo
impl Sync for ObjectInfo
impl Unpin for ObjectInfo
impl UnwindSafe for ObjectInfo
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