Struct silver_platter::Branch

source ·
pub struct Branch(pub Py<PyAny>);

Tuple Fields§

§0: Py<PyAny>

Implementations§

source§

impl Branch

source

pub fn new(obj: Py<PyAny>) -> Branch

source

pub fn format(&self) -> BranchFormat

source

pub fn lock_read(&self) -> Result<Lock, PyErr>

source

pub fn repository(&self) -> Repository

source

pub fn open(url: &Url) -> Result<Branch, BranchOpenError>

source

pub fn open_containing(url: &Url) -> Result<(Branch, String), BranchOpenError>

source

pub fn last_revision(&self) -> RevisionId

source

pub fn name(&self) -> Option<String>

source

pub fn get_user_url(&self) -> Url

source

pub fn controldir(&self) -> ControlDir

source

pub fn push( &self, remote_branch: &Branch, overwrite: bool, stop_revision: Option<&RevisionId>, tag_selector: Option<Box<dyn Fn(String) -> bool, Global>> ) -> Result<(), PyErr>

Trait Implementations§

source§

impl Clone for Branch

source§

fn clone(&self) -> Branch

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl FromPyObject<'_> for Branch

source§

fn extract(ob: &PyAny) -> Result<Branch, PyErr>

Extracts Self from the source PyObject.
source§

impl ToPyObject for Branch

source§

fn to_object(&self, py: Python<'_>) -> Py<PyAny>

Converts self into a Python object.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Branch

§

impl Send for Branch

§

impl Sync for Branch

§

impl Unpin for Branch

§

impl UnwindSafe for Branch

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToBorrowedObject for Twhere T: ToPyObject,

source§

fn with_borrowed_ptr<F, R>(&self, py: Python<'_>, f: F) -> Rwhere F: FnOnce(*mut PyObject) -> R,

👎Deprecated since 0.17.0: this trait is no longer used by PyO3, use ToPyObject or IntoPy<PyObject>
Converts self into a Python object and calls the specified closure on the native FFI pointer underlying the Python object. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> Ungil for Twhere T: Send,