pub struct DbApp {
pub app_id: String,
pub name: String,
pub install_instructions: Option<String>,
}Expand description
Database record representing the apps table row.
Fields§
§app_id: String§name: String§install_instructions: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DbApp
impl<'de> Deserialize<'de> for DbApp
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 Eq for DbApp
impl StructuralPartialEq for DbApp
Auto Trait Implementations§
impl Freeze for DbApp
impl RefUnwindSafe for DbApp
impl Send for DbApp
impl Sync for DbApp
impl Unpin for DbApp
impl UnsafeUnpin for DbApp
impl UnwindSafe for DbApp
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