pub struct Recall {
pub subject: Option<String>,
pub tag: Option<String>,
pub since: Option<i64>,
pub limit: Option<usize>,
}Expand description
What to recall.
Fields§
§subject: Option<String>Case-insensitive substring of subject.
tag: Option<String>§since: Option<i64>Only records at or after this unix second.
limit: Option<usize>Most recent first; None for all.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Recall
impl RefUnwindSafe for Recall
impl Send for Recall
impl Sync for Recall
impl Unpin for Recall
impl UnsafeUnpin for Recall
impl UnwindSafe for Recall
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