[][src]Struct git2::Branch

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

A structure to represent a git branch

A branch is currently just a wrapper to an underlying Reference. The reference can be accessed through the get and unwrap methods.

Methods

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

pub fn wrap(reference: Reference) -> Branch
[src]

Creates Branch type from a Reference

pub fn get(&self) -> &Reference<'repo>
[src]

Gain access to the reference that is this branch

pub fn into_reference(self) -> Reference<'repo>
[src]

Take ownership of the underlying reference.

pub fn delete(&mut self) -> Result<(), Error>
[src]

Delete an existing branch reference.

pub fn is_head(&self) -> bool
[src]

Determine if the current local branch is pointed at by HEAD.

pub fn rename(
    &mut self,
    new_branch_name: &str,
    force: bool
) -> Result<Branch<'repo>, Error>
[src]

Move/rename an existing local branch reference.

pub fn name(&self) -> Result<Option<&str>, Error>
[src]

Return the name of the given local or remote branch.

May return Ok(None) if the name is not valid utf-8.

pub fn name_bytes(&self) -> Result<&[u8], Error>
[src]

Return the name of the given local or remote branch.

pub fn upstream<'a>(&'a self) -> Result<Branch<'a>, Error>
[src]

Return the reference supporting the remote tracking branch, given a local branch reference.

pub fn set_upstream(&mut self, upstream_name: Option<&str>) -> Result<(), Error>
[src]

Set the upstream configuration for a given local branch.

If None is specified, then the upstream branch is unset. The name provided is the name of the branch to set as upstream.

Auto Trait Implementations

impl<'repo> !Send for Branch<'repo>

impl<'repo> !Sync for Branch<'repo>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]