pub struct RecordInfo {
pub record: Record,
pub id: String,
pub prio: Option<String>,
pub notes: Option<String>,
}Expand description
Record info contains all the information that is attatched to the record such as id , your notes and record priority.
Fields§
§record: Record§id: String§prio: Option<String>§notes: Option<String>Trait Implementations§
Source§impl Debug for RecordInfo
impl Debug for RecordInfo
Source§impl<'de> Deserialize<'de> for RecordInfo
impl<'de> Deserialize<'de> for RecordInfo
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 RecordInfo
impl RefUnwindSafe for RecordInfo
impl Send for RecordInfo
impl Sync for RecordInfo
impl Unpin for RecordInfo
impl UnwindSafe for RecordInfo
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