pub struct DeployRepo {
pub id: i64,
pub name: String,
pub repository: String,
pub root_path: String,
pub repo_kind: RepoKind,
pub runner: Runner,
pub deployment_method: DeploymentMethod,
pub frontend_apps: Option<Vec<FrontendApp>>,
}Fields§
§id: i64§name: String§repository: String§root_path: String§repo_kind: RepoKind§runner: Runner§deployment_method: DeploymentMethod§frontend_apps: Option<Vec<FrontendApp>>Embedded in the repo-create response. A single-app repo creates its app automatically server-side; this carries it back to the client.
Trait Implementations§
Source§impl Clone for DeployRepo
impl Clone for DeployRepo
Source§fn clone(&self) -> DeployRepo
fn clone(&self) -> DeployRepo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeployRepo
impl Debug for DeployRepo
Source§impl<'de> Deserialize<'de> for DeployRepo
impl<'de> Deserialize<'de> for DeployRepo
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 DeployRepo
impl RefUnwindSafe for DeployRepo
impl Send for DeployRepo
impl Sync for DeployRepo
impl Unpin for DeployRepo
impl UnsafeUnpin for DeployRepo
impl UnwindSafe for DeployRepo
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