Struct silver_platter::Forge

source ·
pub struct Forge(_);

Implementations§

source§

impl Forge

source

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

source

pub fn merge_proposal_description_format(&self) -> String

source

pub fn supports_merge_proposal_commit_message(&self) -> bool

source

pub fn supports_merge_proposal_title(&self) -> bool

source

pub fn get_proposer( &self, from_branch: &Branch, to_branch: &Branch ) -> Result<ProposalBuilder, PyErr>

source

pub fn get_derived_branch( &self, main_branch: &Branch, name: &str, owner: Option<&str>, preferred_schemes: Option<&[&str]> ) -> Result<Branch, PyErr>

source

pub fn iter_proposals( &self, source_branch: &Branch, target_branch: &Branch, status: MergeProposalStatus ) -> Result<impl Iterator<Item = MergeProposal>, PyErr>

source

pub fn publish_derived( &self, local_branch: &Branch, main_branch: &Branch, name: &str, overwrite_existing: Option<bool>, owner: Option<&str>, stop_revision: Option<&RevisionId>, tag_selector: Option<Box<dyn Fn(String) -> bool, Global>> ) -> Result<(Branch, Url), PyErr>

source

pub fn get_push_url(&self, branch: &Branch) -> Url

Trait Implementations§

source§

impl Clone for Forge

source§

fn clone(&self) -> Forge

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 Forge

source§

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

Extracts Self from the source PyObject.
source§

impl ToPyObject for Forge

source§

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

Converts self into a Python object.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Forge

§

impl Send for Forge

§

impl Sync for Forge

§

impl Unpin for Forge

§

impl UnwindSafe for Forge

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> 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,