pub struct ListableApp {
pub id: i32,
pub workspace_id: String,
pub path: String,
pub summary: String,
pub version: i32,
pub extra_perms: HashMap<String, bool>,
pub starred: Option<bool>,
pub edited_at: String,
pub execution_mode: ExecutionMode,
pub raw_app: Option<bool>,
}
Fields§
§id: i32
§workspace_id: String
§path: String
§summary: String
§version: i32
§extra_perms: HashMap<String, bool>
§starred: Option<bool>
§edited_at: String
§execution_mode: ExecutionMode
§raw_app: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for ListableApp
impl Clone for ListableApp
Source§fn clone(&self) -> ListableApp
fn clone(&self) -> ListableApp
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 ListableApp
impl Debug for ListableApp
Source§impl Default for ListableApp
impl Default for ListableApp
Source§fn default() -> ListableApp
fn default() -> ListableApp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListableApp
impl<'de> Deserialize<'de> for ListableApp
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 ListableApp
impl PartialEq for ListableApp
Source§impl Serialize for ListableApp
impl Serialize for ListableApp
impl StructuralPartialEq for ListableApp
Auto Trait Implementations§
impl Freeze for ListableApp
impl RefUnwindSafe for ListableApp
impl Send for ListableApp
impl Sync for ListableApp
impl Unpin for ListableApp
impl UnwindSafe for ListableApp
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