#[non_exhaustive]pub struct LinkableGitRepository {
pub clone_uri: String,
/* private fields */
}Expand description
LinkableGitRepository represents a git repository that can be linked to a connection.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.clone_uri: StringThe clone uri of the repository.
Implementations§
Trait Implementations§
Source§impl Clone for LinkableGitRepository
impl Clone for LinkableGitRepository
Source§fn clone(&self) -> LinkableGitRepository
fn clone(&self) -> LinkableGitRepository
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 LinkableGitRepository
impl Debug for LinkableGitRepository
Source§impl Default for LinkableGitRepository
impl Default for LinkableGitRepository
Source§fn default() -> LinkableGitRepository
fn default() -> LinkableGitRepository
Returns the “default value” for a type. Read more
Source§impl Message for LinkableGitRepository
impl Message for LinkableGitRepository
Source§impl PartialEq for LinkableGitRepository
impl PartialEq for LinkableGitRepository
impl StructuralPartialEq for LinkableGitRepository
Auto Trait Implementations§
impl Freeze for LinkableGitRepository
impl RefUnwindSafe for LinkableGitRepository
impl Send for LinkableGitRepository
impl Sync for LinkableGitRepository
impl Unpin for LinkableGitRepository
impl UnwindSafe for LinkableGitRepository
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