pub struct Project {
pub id: Option<i64>,
pub user_id: Option<i64>,
pub name: Option<Option<String>>,
pub logo: Option<Option<String>>,
pub description: Option<Option<String>>,
pub show: Option<bool>,
pub show_index: Option<i64>,
pub create_date: Option<String>,
pub last_update: Option<String>,
}Expand description
Project : 项目
Fields§
§id: Option<i64>状态码
user_id: Option<i64>用户 ID
name: Option<Option<String>>名称
logo: Option<Option<String>>Logo
description: Option<Option<String>>描述
show: Option<bool>是否显示
show_index: Option<i64>显示索引
create_date: Option<String>创建时间
last_update: Option<String>最后更新时间
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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
impl StructuralPartialEq for Project
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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