pub struct RetainedIdSet {
pub query_key: String,
pub ids: Arc<Vec<u64>>,
pub expires_at: SystemTime,
}Fields§
§query_key: String§ids: Arc<Vec<u64>>§expires_at: SystemTimeTrait Implementations§
Source§impl Clone for RetainedIdSet
impl Clone for RetainedIdSet
Source§fn clone(&self) -> RetainedIdSet
fn clone(&self) -> RetainedIdSet
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 moreAuto Trait Implementations§
impl Freeze for RetainedIdSet
impl RefUnwindSafe for RetainedIdSet
impl Send for RetainedIdSet
impl Sync for RetainedIdSet
impl Unpin for RetainedIdSet
impl UnsafeUnpin for RetainedIdSet
impl UnwindSafe for RetainedIdSet
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