pub enum ObjectRef<'a> {
    Tree(TreeRef<'a>),
    Blob(BlobRef<'a>),
    Commit(CommitRef<'a>),
    Tag(TagRef<'a>),
}
Expand description

Immutable objects are read-only structures referencing most data from a byte slice.

Immutable objects are expected to be deserialized from bytes that acts as backing store, and they cannot be mutated or serialized. Instead, one will convert them into their mutable counterparts which support mutation and serialization.

An ObjectRef is representing Trees, Blobs, Commits, or Tags.

Variants

Tree(TreeRef<'a>)

Blob(BlobRef<'a>)

Commit(CommitRef<'a>)

Tag(TagRef<'a>)

Implementations

Deserialize an object from a loose serialisation

Deserialize an object of kind from the given data.

Convert the immutable object into a mutable version, consuming the source in the process.

Note that this is an expensive operation.

Convert this immutable object into its mutable counterpart.

Note that this is an expensive operation.

Convenient access to contained objects.

Interpret this object as blob.

Interpret this object as blob, chainable.

Interpret this object as commit.

Interpret this object as commit, chainable.

Interpret this object as tree.

Interpret this object as tree, chainable

Interpret this object as tag.

Interpret this object as tag, chainable.

Return the kind of 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

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. 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.

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.

Serialization

Write the contained object to out in the git serialization format.

Returns the size of this object’s representation (the amount of data which would be written by write_to). Read more

Returns the type of this object.

Returns a loose object header based on the object’s data

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.