pub struct OndeApp {
pub id: String,
pub name: String,
pub status: Option<String>,
pub app_secret: Option<String>,
pub current_model_id: Option<String>,
pub active_model: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Expand description
An app registered to the user’s account.
Fields§
§id: String§name: String§status: Option<String>§app_secret: Option<String>§current_model_id: Option<String>§active_model: Option<String>§created_at: Option<String>§updated_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for OndeApp
impl<'de> Deserialize<'de> for OndeApp
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 OndeApp
impl RefUnwindSafe for OndeApp
impl Send for OndeApp
impl Sync for OndeApp
impl Unpin for OndeApp
impl UnsafeUnpin for OndeApp
impl UnwindSafe for OndeApp
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