pub struct GitLabConnectedRepository {
pub parent: Option<String>,
pub repo: Option<GitLabRepositoryId>,
pub status: Option<Status>,
}Expand description
GitLabConnectedRepository represents a GitLab connected repository request response.
This type is not used in any activity, and only used as part of another schema.
Fields§
§parent: Option<String>The name of the GitLabConfig that added connected repository. Format: projects/{project}/locations/{location}/gitLabConfigs/{config}
repo: Option<GitLabRepositoryId>The GitLab repositories to connect.
status: Option<Status>Output only. The status of the repo connection request.
Trait Implementations§
Source§impl Clone for GitLabConnectedRepository
impl Clone for GitLabConnectedRepository
Source§fn clone(&self) -> GitLabConnectedRepository
fn clone(&self) -> GitLabConnectedRepository
Returns a duplicate of the value. Read more
1.0.0 · 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 GitLabConnectedRepository
impl Debug for GitLabConnectedRepository
Source§impl Default for GitLabConnectedRepository
impl Default for GitLabConnectedRepository
Source§fn default() -> GitLabConnectedRepository
fn default() -> GitLabConnectedRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitLabConnectedRepository
impl<'de> Deserialize<'de> for GitLabConnectedRepository
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 Part for GitLabConnectedRepository
Auto Trait Implementations§
impl Freeze for GitLabConnectedRepository
impl RefUnwindSafe for GitLabConnectedRepository
impl Send for GitLabConnectedRepository
impl Sync for GitLabConnectedRepository
impl Unpin for GitLabConnectedRepository
impl UnwindSafe for GitLabConnectedRepository
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