pub struct ActivityIds {
pub current: u64,
pub parent: Option<u64>,
}Expand description
Current activity id plus its optional parent id.
Fields§
§current: u64§parent: Option<u64>Trait Implementations§
Source§impl Clone for ActivityIds
impl Clone for ActivityIds
Source§fn clone(&self) -> ActivityIds
fn clone(&self) -> ActivityIds
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 ActivityIds
impl Debug for ActivityIds
Source§impl PartialEq for ActivityIds
impl PartialEq for ActivityIds
Source§fn eq(&self, other: &ActivityIds) -> bool
fn eq(&self, other: &ActivityIds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ActivityIds
impl Eq for ActivityIds
impl StructuralPartialEq for ActivityIds
Auto Trait Implementations§
impl Freeze for ActivityIds
impl RefUnwindSafe for ActivityIds
impl Send for ActivityIds
impl Sync for ActivityIds
impl Unpin for ActivityIds
impl UnsafeUnpin for ActivityIds
impl UnwindSafe for ActivityIds
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