pub struct App {Show 17 fields
pub id: Option<i64>,
pub user_id: Option<i64>,
pub project_id: Option<i64>,
pub website: Option<Option<String>>,
pub name: Option<Option<String>>,
pub logo: Option<Option<String>>,
pub description: Option<Option<String>>,
pub tags: Option<Option<String>>,
pub app_key: Option<Option<String>>,
pub app_secret: Option<Option<String>>,
pub client_secret: Option<Option<String>>,
pub ssh_publickey: Option<Option<String>>,
pub share: Option<bool>,
pub create_date: Option<String>,
pub last_update: Option<String>,
pub show: Option<bool>,
pub show_index: Option<i64>,
}Expand description
App : 应用
Fields§
§id: Option<i64>唯一标识符
user_id: Option<i64>用户 ID
project_id: Option<i64>项目 ID
website: Option<Option<String>>网站默认域名
name: Option<Option<String>>名称
logo: Option<Option<String>>Logo
description: Option<Option<String>>描述
标签
app_key: Option<Option<String>>应用公钥
app_secret: Option<Option<String>>应用私密密钥
client_secret: Option<Option<String>>客户端密钥
ssh_publickey: Option<Option<String>>SSH公钥
是否共享
create_date: Option<String>创建时间
last_update: Option<String>最后更新时间
show: Option<bool>是否显示
show_index: Option<i64>显示索引
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for App
impl<'de> Deserialize<'de> for App
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 App
Auto Trait Implementations§
impl Freeze for App
impl RefUnwindSafe for App
impl Send for App
impl Sync for App
impl Unpin for App
impl UnwindSafe for App
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