pub struct Bookmark {
pub children: Vec<u32>,
pub title: String,
pub format: u32,
pub color: [f32; 3],
pub page: (u32, u16),
pub id: u32,
}
Fields§
§children: Vec<u32>
Children, Must be a Collection that allows for insertion of the same page ID.
title: String
§format: u32
0, 1 for italic, 2 for bold, 3 for italic bold
color: [f32; 3]
R,G,B
page: (u32, u16)
§id: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bookmark
impl RefUnwindSafe for Bookmark
impl Send for Bookmark
impl Sync for Bookmark
impl Unpin for Bookmark
impl UnwindSafe for Bookmark
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