pub struct AgendaItem {
pub file_path: String,
pub heading: String,
pub level: usize,
pub todo_state: Option<String>,
pub priority: Option<String>,
pub scheduled: Option<String>,
pub deadline: Option<String>,
pub tags: Vec<String>,
pub position: Option<Position>,
}Fields§
§file_path: String§heading: String§level: usize§todo_state: Option<String>§priority: Option<String>§scheduled: Option<String>§deadline: Option<String>§position: Option<Position>Trait Implementations§
Source§impl Clone for AgendaItem
impl Clone for AgendaItem
Source§fn clone(&self) -> AgendaItem
fn clone(&self) -> AgendaItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgendaItem
impl Debug for AgendaItem
Source§impl<'de> Deserialize<'de> for AgendaItem
impl<'de> Deserialize<'de> for AgendaItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AgendaItem
impl RefUnwindSafe for AgendaItem
impl Send for AgendaItem
impl Sync for AgendaItem
impl Unpin for AgendaItem
impl UnwindSafe for AgendaItem
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