pub struct RuntimeRepositoryRecord {Show 15 fields
pub id: String,
pub tenant_id: String,
pub project_id: String,
pub template_id: String,
pub owners: Vec<OwnerRef>,
pub namespace: String,
pub gitlab_project_id: u64,
pub path_with_namespace: String,
pub repository_url: String,
pub default_branch: Option<String>,
pub status: RuntimeRepositoryStatus,
pub error_message: Option<String>,
pub version: i64,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§tenant_id: String§project_id: String§template_id: String§owners: Vec<OwnerRef>§namespace: String§gitlab_project_id: u64§path_with_namespace: String§repository_url: StringHTTPS clone URL derived from GitLab. Not an identity key; clients clone locally.
default_branch: Option<String>§status: RuntimeRepositoryStatus§error_message: Option<String>§version: i64§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for RuntimeRepositoryRecord
impl Clone for RuntimeRepositoryRecord
Source§fn clone(&self) -> RuntimeRepositoryRecord
fn clone(&self) -> RuntimeRepositoryRecord
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 RuntimeRepositoryRecord
impl Debug for RuntimeRepositoryRecord
Source§impl<'de> Deserialize<'de> for RuntimeRepositoryRecord
impl<'de> Deserialize<'de> for RuntimeRepositoryRecord
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 Eq for RuntimeRepositoryRecord
Source§impl PartialEq for RuntimeRepositoryRecord
impl PartialEq for RuntimeRepositoryRecord
Source§impl Serialize for RuntimeRepositoryRecord
impl Serialize for RuntimeRepositoryRecord
impl StructuralPartialEq for RuntimeRepositoryRecord
Auto Trait Implementations§
impl Freeze for RuntimeRepositoryRecord
impl RefUnwindSafe for RuntimeRepositoryRecord
impl Send for RuntimeRepositoryRecord
impl Sync for RuntimeRepositoryRecord
impl Unpin for RuntimeRepositoryRecord
impl UnsafeUnpin for RuntimeRepositoryRecord
impl UnwindSafe for RuntimeRepositoryRecord
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