pub struct OwnershipEvent {
pub object_id: u64,
pub from_owner: String,
pub to_owner: String,
pub timestamp: u64,
}Expand description
Records an ownership transfer event.
Fields§
§object_id: u64§from_owner: String§to_owner: String§timestamp: u64Trait Implementations§
Source§impl Clone for OwnershipEvent
impl Clone for OwnershipEvent
Source§fn clone(&self) -> OwnershipEvent
fn clone(&self) -> OwnershipEvent
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OwnershipEvent
impl RefUnwindSafe for OwnershipEvent
impl Send for OwnershipEvent
impl Sync for OwnershipEvent
impl Unpin for OwnershipEvent
impl UnsafeUnpin for OwnershipEvent
impl UnwindSafe for OwnershipEvent
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