Struct git2::Tag [] [src]

pub struct Tag<'repo> { /* fields omitted */ }

A structure to represent a git tag

Methods

impl<'repo> Tag<'repo>
[src]

Get the id (SHA1) of a repository tag

Get the message of a tag

Returns None if there is no message or if it is not valid utf8

Get the message of a tag

Returns None if there is no message

Get the name of a tag

Returns None if it is not valid utf8

Get the name of a tag

Recursively peel a tag until a non tag git_object is found

Get the tagger (author) of a tag

If the author is unspecified, then None is returned.

Get the tagged object of a tag

This method performs a repository lookup for the given object and returns it

Get the OID of the tagged object of a tag

Get the OID of the tagged object of a tag

Casts this Tag to be usable as an Object

Consumes Tag to be returned as an Object

Trait Implementations

impl<'repo> Drop for Tag<'repo>
[src]

A method called when the value goes out of scope. Read more