pub struct RuntimeRepository {
pub 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>,
}Fields§
§project_id: u64§path_with_namespace: String§repository_url: String§default_branch: Option<String>§status: RuntimeRepositoryStatus§error_message: Option<String>Trait Implementations§
Source§impl Clone for RuntimeRepository
impl Clone for RuntimeRepository
Source§fn clone(&self) -> RuntimeRepository
fn clone(&self) -> RuntimeRepository
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 RuntimeRepository
impl Debug for RuntimeRepository
Source§impl<'de> Deserialize<'de> for RuntimeRepository
impl<'de> Deserialize<'de> for RuntimeRepository
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 RuntimeRepository
Source§impl PartialEq for RuntimeRepository
impl PartialEq for RuntimeRepository
Source§impl Serialize for RuntimeRepository
impl Serialize for RuntimeRepository
impl StructuralPartialEq for RuntimeRepository
Auto Trait Implementations§
impl Freeze for RuntimeRepository
impl RefUnwindSafe for RuntimeRepository
impl Send for RuntimeRepository
impl Sync for RuntimeRepository
impl Unpin for RuntimeRepository
impl UnsafeUnpin for RuntimeRepository
impl UnwindSafe for RuntimeRepository
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