#[repr(C)]pub struct BookmarkList {
pub itemcount: c_int,
pub items: [BookmarkItem; 1],
}
Fields§
§itemcount: c_int
§items: [BookmarkItem; 1]
Should be 0 but compiler complains (the C compiler, not the rust compiler)
Auto Trait Implementations§
impl Freeze for BookmarkList
impl RefUnwindSafe for BookmarkList
impl !Send for BookmarkList
impl !Sync for BookmarkList
impl Unpin for BookmarkList
impl UnwindSafe for BookmarkList
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