pub struct DeployRepo {
pub id: i64,
pub name: String,
pub repository: String,
pub root_path: String,
pub repo_kind: Option<String>,
pub runner: Option<String>,
pub deployment_method: Option<String>,
}Expand description
A deployable frontend application on the smbCloud platform.
A FrontendApp is the unit that actually ships.
Projectis the umbrella workspaceDeployRepois the git repository or monorepo rootFrontendAppis the deployable app inside that repo
A FrontendApp belongs to a Tenant, is associated with an owner workspace,
and may optionally point at a DeployRepo plus a repo-relative source_path
for monorepo deployments.
Fields§
§id: i64§name: String§repository: String§root_path: String§repo_kind: Option<String>§runner: Option<String>§deployment_method: Option<String>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