pub struct Entry {
pub id: EntryId,
pub name: String,
pub content: String,
pub aliases: Vec<String>,
pub created_at: u64,
pub kind: EntryKind,
}Fields§
§id: EntryId§name: String§content: String§aliases: Vec<String>§created_at: u64§kind: EntryKindTrait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin for Entry
impl UnwindSafe for Entry
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