pub struct RepoInfo {Show 15 fields
pub id: Option<i32>,
pub provider: Option<String>,
pub deploy_key_id: Option<String>,
pub repo_path: Option<String>,
pub repo_branch: Option<String>,
pub dir: Option<String>,
pub functions_dir: Option<String>,
pub cmd: Option<String>,
pub allowed_branches: Option<Vec<String>>,
pub public_repo: Option<bool>,
pub private_logs: Option<bool>,
pub repo_url: Option<String>,
pub env: Option<HashMap<String, String>>,
pub installation_id: Option<i32>,
pub stop_builds: Option<bool>,
}
Fields§
§id: Option<i32>
§provider: Option<String>
§deploy_key_id: Option<String>
§repo_path: Option<String>
§repo_branch: Option<String>
§dir: Option<String>
§functions_dir: Option<String>
§cmd: Option<String>
§allowed_branches: Option<Vec<String>>
§public_repo: Option<bool>
§private_logs: Option<bool>
§repo_url: Option<String>
§env: Option<HashMap<String, String>>
§installation_id: Option<i32>
§stop_builds: Option<bool>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RepoInfo
impl<'de> Deserialize<'de> for RepoInfo
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
impl StructuralPartialEq for RepoInfo
Auto Trait Implementations§
impl Freeze for RepoInfo
impl RefUnwindSafe for RepoInfo
impl Send for RepoInfo
impl Sync for RepoInfo
impl Unpin for RepoInfo
impl UnwindSafe for RepoInfo
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