pub struct AccountTable<M> { /* private fields */ }Implementations§
Source§impl<M> AccountTable<M>
impl<M> AccountTable<M>
pub fn pairs(&self) -> PairIterator<'_> ⓘ
pub fn lookup(&self, id: u64) -> Result<HashMap<String, Vec<NaiveDate>>, Error>
pub fn limited_lookup( &self, id: u64, earliest: NaiveDate, ) -> Result<HashMap<String, Vec<NaiveDate>>, Error>
pub fn get_date_counts(&self) -> Result<Vec<(NaiveDate, u64)>, Error>
pub fn get_most_screen_names( &self, k: usize, ) -> Result<Vec<(u64, Vec<String>)>, Error>
Source§impl<M: Mode> AccountTable<M>
impl<M: Mode> AccountTable<M>
Trait Implementations§
Source§impl<M> Table for AccountTable<M>
impl<M> Table for AccountTable<M>
Auto Trait Implementations§
impl<M> Freeze for AccountTable<M>
impl<M> RefUnwindSafe for AccountTable<M>where
M: RefUnwindSafe,
impl<M> Send for AccountTable<M>where
M: Send,
impl<M> Sync for AccountTable<M>where
M: Sync,
impl<M> Unpin for AccountTable<M>where
M: Unpin,
impl<M> UnwindSafe for AccountTable<M>where
M: UnwindSafe,
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