Struct cargo::sources::git::GitDatabase
source · pub struct GitDatabase {
remote: GitRemote,
path: PathBuf,
repo: Repository,
}
Expand description
A local clone of a remote repository’s database. Multiple GitCheckout
s
can be cloned from a single GitDatabase
.
Fields§
§remote: GitRemote
The remote repository where this database is fetched from.
path: PathBuf
Path to the root of the underlying Git repository on the local filesystem.
repo: Repository
Underlying Git repository instance for this database.
Implementations§
source§impl GitDatabase
impl GitDatabase
sourcepub fn copy_to(
&self,
rev: Oid,
dest: &Path,
gctx: &GlobalContext,
) -> CargoResult<GitCheckout<'_>>
pub fn copy_to( &self, rev: Oid, dest: &Path, gctx: &GlobalContext, ) -> CargoResult<GitCheckout<'_>>
Checkouts to a revision at dest
ination from this database.
sourcepub fn to_short_id(&self, revision: Oid) -> CargoResult<GitShortID>
pub fn to_short_id(&self, revision: Oid) -> CargoResult<GitShortID>
Get a short OID for a revision
, usually 7 chars or more if ambiguous.
sourcepub fn contains(&self, oid: Oid) -> bool
pub fn contains(&self, oid: Oid) -> bool
Checks if the database contains the object of this oid
..
sourcepub fn resolve(&self, r: &GitReference) -> CargoResult<Oid>
pub fn resolve(&self, r: &GitReference) -> CargoResult<Oid>
resolve_ref
s this reference with this database.
Auto Trait Implementations§
impl Freeze for GitDatabase
impl RefUnwindSafe for GitDatabase
impl Send for GitDatabase
impl !Sync for GitDatabase
impl Unpin for GitDatabase
impl UnwindSafe for GitDatabase
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 120 bytes