pub struct BasicAppData {
pub id: Option<String>,
pub name: Option<String>,
pub store_id: Option<String>,
pub created: Option<i32>,
pub app_type: Option<String>,
}Fields§
§id: Option<String>Id of the app
name: Option<String>Name given to the app when it was created
store_id: Option<String>Id of the store to which the app belongs
created: Option<i32>UNIX timestamp for when the app was created
app_type: Option<String>Type of the app which was created
Implementations§
Source§impl BasicAppData
impl BasicAppData
pub fn new() -> BasicAppData
Trait Implementations§
Source§impl Clone for BasicAppData
impl Clone for BasicAppData
Source§fn clone(&self) -> BasicAppData
fn clone(&self) -> BasicAppData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BasicAppData
impl Debug for BasicAppData
Source§impl Default for BasicAppData
impl Default for BasicAppData
Source§fn default() -> BasicAppData
fn default() -> BasicAppData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BasicAppData
impl<'de> Deserialize<'de> for BasicAppData
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
Source§impl PartialEq for BasicAppData
impl PartialEq for BasicAppData
Source§impl Serialize for BasicAppData
impl Serialize for BasicAppData
impl StructuralPartialEq for BasicAppData
Auto Trait Implementations§
impl Freeze for BasicAppData
impl RefUnwindSafe for BasicAppData
impl Send for BasicAppData
impl Sync for BasicAppData
impl Unpin for BasicAppData
impl UnwindSafe for BasicAppData
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