Struct git2::Object[][src]

pub struct Object<'repo> { /* fields omitted */ }
Expand description

A structure to represent a git object

Implementations

Get the id (SHA1) of a repository object

Get the object type of an object.

If the type is unknown, then None is returned.

Recursively peel an object until an object of the specified type is met.

If you pass Any as the target type, then the object will be peeled until the type changes (e.g. a tag will be chased until the referenced object is no longer a tag).

Recursively peel an object until a blob is found

Recursively peel an object until a commit is found

Recursively peel an object until a tag is found

Recursively peel an object until a tree is found

Get a short abbreviated OID string for the object

This starts at the “core.abbrev” length (default 7 characters) and iteratively extends to a longer string if that length is ambiguous. The result will be unambiguous (at least until new objects are added to the repository).

Attempt to view this object as a commit.

Returns None if the object is not actually a commit.

Attempt to consume this object and return a commit.

Returns Err(self) if this object is not actually a commit.

Attempt to view this object as a tag.

Returns None if the object is not actually a tag.

Attempt to consume this object and return a tag.

Returns Err(self) if this object is not actually a tag.

Attempt to view this object as a tree.

Returns None if the object is not actually a tree.

Attempt to consume this object and return a tree.

Returns Err(self) if this object is not actually a tree.

Attempt to view this object as a blob.

Returns None if the object is not actually a blob.

Attempt to consume this object and return a blob.

Returns Err(self) if this object is not actually a blob.

Describes a commit

Performs a describe operation on this commitish object.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.