pub struct Catalog {
pub board: Board,
pub board_name: String,
pub comment: String,
pub email: String,
pub op: bool,
pub posts_count: i32,
pub files_count: i32,
pub files: Vec<File>,
pub timestamp: i64,
}Fields§
§board: Board§board_name: String§comment: String§email: String§op: bool§posts_count: i32§files_count: i32§files: Vec<File>§timestamp: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Catalog
impl RefUnwindSafe for Catalog
impl Send for Catalog
impl Sync for Catalog
impl Unpin for Catalog
impl UnwindSafe for Catalog
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