pub struct InboxItem {
pub id: String,
pub item_type: String,
pub title: String,
pub status: Option<String>,
pub priority: Option<String>,
pub action: String,
pub action_hint: String,
pub project_id: Option<String>,
pub tags: Vec<String>,
pub updated_at: Option<String>,
pub metadata: Option<Value>,
}Fields§
§id: String§item_type: String§title: String§status: Option<String>§priority: Option<String>§action: String§action_hint: String§project_id: Option<String>§updated_at: Option<String>§metadata: Option<Value>Trait Implementations§
Auto Trait Implementations§
impl Freeze for InboxItem
impl RefUnwindSafe for InboxItem
impl Send for InboxItem
impl Sync for InboxItem
impl Unpin for InboxItem
impl UnsafeUnpin for InboxItem
impl UnwindSafe for InboxItem
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