pub struct CreateAppResponse {
pub app_id: String,
pub app_name: String,
pub app_token: String,
pub default_database: String,
pub allowed_databases: Vec<String>,
pub max_users: u32,
pub status: String,
pub created_at: String,
}Fields§
§app_id: String§app_name: String§app_token: String§default_database: String§allowed_databases: Vec<String>§max_users: u32§status: String§created_at: StringTrait Implementations§
Source§impl Debug for CreateAppResponse
impl Debug for CreateAppResponse
Source§impl<'de> Deserialize<'de> for CreateAppResponse
impl<'de> Deserialize<'de> for CreateAppResponse
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
Auto Trait Implementations§
impl Freeze for CreateAppResponse
impl RefUnwindSafe for CreateAppResponse
impl Send for CreateAppResponse
impl Sync for CreateAppResponse
impl Unpin for CreateAppResponse
impl UnsafeUnpin for CreateAppResponse
impl UnwindSafe for CreateAppResponse
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