pub struct FrontendAppCreate {
pub name: String,
pub project_id: i32,
pub app_type: AppType,
pub runner: Runner,
pub deployment_method: DeploymentMethod,
pub repository: Option<String>,
pub description: Option<String>,
}Expand description
Payload for creating a new FrontendApp via the API.
Fields§
§name: String§project_id: i32§app_type: AppType§runner: Runner§deployment_method: DeploymentMethod§repository: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for FrontendAppCreate
impl Clone for FrontendAppCreate
Source§fn clone(&self) -> FrontendAppCreate
fn clone(&self) -> FrontendAppCreate
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 FrontendAppCreate
impl Debug for FrontendAppCreate
Source§impl<'de> Deserialize<'de> for FrontendAppCreate
impl<'de> Deserialize<'de> for FrontendAppCreate
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 FrontendAppCreate
impl RefUnwindSafe for FrontendAppCreate
impl Send for FrontendAppCreate
impl Sync for FrontendAppCreate
impl Unpin for FrontendAppCreate
impl UnsafeUnpin for FrontendAppCreate
impl UnwindSafe for FrontendAppCreate
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