pub struct GitSourceRepository {
pub developer_connect: Option<String>,
pub url: Option<String>,
}Expand description
A repository for a git source.
This type is not used in any activity, and only used as part of another schema.
Fields§
§developer_connect: Option<String>The Developer Connect Git repository link formatted as projects/*/locations/*/connections/*/gitRepositoryLink/*
url: Option<String>Location of the Git repository.
Trait Implementations§
Source§impl Clone for GitSourceRepository
impl Clone for GitSourceRepository
Source§fn clone(&self) -> GitSourceRepository
fn clone(&self) -> GitSourceRepository
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 GitSourceRepository
impl Debug for GitSourceRepository
Source§impl Default for GitSourceRepository
impl Default for GitSourceRepository
Source§fn default() -> GitSourceRepository
fn default() -> GitSourceRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitSourceRepository
impl<'de> Deserialize<'de> for GitSourceRepository
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
Source§impl Serialize for GitSourceRepository
impl Serialize for GitSourceRepository
impl Part for GitSourceRepository
Auto Trait Implementations§
impl Freeze for GitSourceRepository
impl RefUnwindSafe for GitSourceRepository
impl Send for GitSourceRepository
impl Sync for GitSourceRepository
impl Unpin for GitSourceRepository
impl UnwindSafe for GitSourceRepository
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