pub struct NestedGitRepository {
pub id: Option<Uuid>,
pub object_type: Option<String>,
pub url: Option<String>,
}Expand description
NestedGitRepository : Git repositories defined as a data source.
Fields§
§id: Option<Uuid>§object_type: Option<String>§url: Option<String>Implementations§
Source§impl NestedGitRepository
impl NestedGitRepository
Sourcepub fn new() -> NestedGitRepository
pub fn new() -> NestedGitRepository
Git repositories defined as a data source.
Trait Implementations§
Source§impl Clone for NestedGitRepository
impl Clone for NestedGitRepository
Source§fn clone(&self) -> NestedGitRepository
fn clone(&self) -> NestedGitRepository
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 NestedGitRepository
impl Debug for NestedGitRepository
Source§impl Default for NestedGitRepository
impl Default for NestedGitRepository
Source§fn default() -> NestedGitRepository
fn default() -> NestedGitRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NestedGitRepository
impl<'de> Deserialize<'de> for NestedGitRepository
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 PartialEq for NestedGitRepository
impl PartialEq for NestedGitRepository
Source§impl Serialize for NestedGitRepository
impl Serialize for NestedGitRepository
impl StructuralPartialEq for NestedGitRepository
Auto Trait Implementations§
impl Freeze for NestedGitRepository
impl RefUnwindSafe for NestedGitRepository
impl Send for NestedGitRepository
impl Sync for NestedGitRepository
impl Unpin for NestedGitRepository
impl UnsafeUnpin for NestedGitRepository
impl UnwindSafe for NestedGitRepository
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