pub struct NewItem {
pub sources: Vec<Source>,
pub title: Option<String>,
pub description: Option<String>,
pub priority: Option<u8>,
pub metadata: Value,
pub blocked_by: Vec<String>,
}Fields§
§sources: Vec<Source>§title: Option<String>§description: Option<String>§priority: Option<u8>§metadata: Value§blocked_by: Vec<String>Auto Trait Implementations§
impl Freeze for NewItem
impl RefUnwindSafe for NewItem
impl Send for NewItem
impl Sync for NewItem
impl Unpin for NewItem
impl UnsafeUnpin for NewItem
impl UnwindSafe for NewItem
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