pub struct GetPublicAppByCustomPath200Response {
pub id: i32,
pub workspace_id: String,
pub path: String,
pub summary: String,
pub versions: Vec<i32>,
pub created_by: String,
pub created_at: String,
pub value: Value,
pub policy: Box<Policy>,
pub execution_mode: ExecutionMode,
pub extra_perms: HashMap<String, bool>,
pub custom_path: Option<String>,
}
Fields§
§id: i32
§workspace_id: String
§path: String
§summary: String
§versions: Vec<i32>
§created_by: String
§created_at: String
§value: Value
§policy: Box<Policy>
§execution_mode: ExecutionMode
§extra_perms: HashMap<String, bool>
§custom_path: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for GetPublicAppByCustomPath200Response
impl Clone for GetPublicAppByCustomPath200Response
Source§fn clone(&self) -> GetPublicAppByCustomPath200Response
fn clone(&self) -> GetPublicAppByCustomPath200Response
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 Default for GetPublicAppByCustomPath200Response
impl Default for GetPublicAppByCustomPath200Response
Source§fn default() -> GetPublicAppByCustomPath200Response
fn default() -> GetPublicAppByCustomPath200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPublicAppByCustomPath200Response
impl<'de> Deserialize<'de> for GetPublicAppByCustomPath200Response
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 GetPublicAppByCustomPath200Response
impl PartialEq for GetPublicAppByCustomPath200Response
Source§fn eq(&self, other: &GetPublicAppByCustomPath200Response) -> bool
fn eq(&self, other: &GetPublicAppByCustomPath200Response) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetPublicAppByCustomPath200Response
Auto Trait Implementations§
impl Freeze for GetPublicAppByCustomPath200Response
impl RefUnwindSafe for GetPublicAppByCustomPath200Response
impl Send for GetPublicAppByCustomPath200Response
impl Sync for GetPublicAppByCustomPath200Response
impl Unpin for GetPublicAppByCustomPath200Response
impl UnwindSafe for GetPublicAppByCustomPath200Response
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