[][src]Struct retworkx::PyDAG

pub struct PyDAG { /* fields omitted */ }

Methods

impl PyDAG[src]

pub fn edges(&self, py: Python) -> PyObject[src]

pub fn nodes(&self, py: Python) -> PyObject[src]

pub fn successors(&self, py: Python, node: usize) -> PyResult<PyObject>[src]

pub fn predecessors(&self, py: Python, node: usize) -> PyResult<PyObject>[src]

pub fn get_edge_data(&self, node_a: usize, node_b: usize) -> PyResult<&PyObject>[src]

pub fn remove_node(&mut self, node: usize) -> PyResult<()>[src]

pub fn add_edge(
    &mut self,
    parent: usize,
    child: usize,
    edge: PyObject
) -> PyResult<()>
[src]

pub fn remove_edge(&mut self, parent: usize, child: usize) -> PyResult<()>[src]

pub fn remove_edge_from_index(&mut self, edge: usize) -> PyResult<()>[src]

pub fn add_node(&mut self, obj: PyObject) -> usize[src]

pub fn add_child(
    &mut self,
    parent: usize,
    obj: PyObject,
    edge: PyObject
) -> usize
[src]

pub fn add_parent(
    &mut self,
    child: usize,
    obj: PyObject,
    edge: PyObject
) -> usize
[src]

pub fn adj(&mut self, py: Python, node: usize) -> PyResult<PyObject>[src]

pub fn adj_direction(
    &mut self,
    py: Python,
    node: usize,
    direction: bool
) -> PyResult<PyObject>
[src]

pub fn in_degree(&self, node: usize) -> usize[src]

Trait Implementations

impl IntoPyObject for PyDAG[src]

impl PyTypeInfo for PyDAG[src]

type Type = PyDAG

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

fn is_instance(object: &PyAny) -> bool[src]

Check if *mut ffi::PyObject is instance of this type

fn is_exact_instance(object: &PyAny) -> bool[src]

Check if *mut ffi::PyObject is exact instance of this type

impl PyMethodsInventoryDispatch for PyDAG[src]

type InventoryType = PyDAGGeneratedPyo3Inventory

This allows us to get the inventory type when only the pyclass is in scope

impl PyObjectAlloc for PyDAG[src]

unsafe fn alloc(_py: Python) -> *mut PyObject[src]

unsafe fn dealloc(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object and frees the memory (usually by calling ptr->ob_type->tp_free). This function is used as tp_dealloc implementation. Read more

unsafe fn drop(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object.

Auto Trait Implementations

impl Send for PyDAG

impl Sync for PyDAG

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> PyTypeObject for T where
    T: PyTypeInfo + PyMethodsProtocol + PyObjectAlloc
[src]

fn type_object() -> Py<PyType>[src]

Returns the safe abstraction over the type object from [PyTypeObject::init_type]

impl<T> PyMethodsProtocol for T where
    T: PyMethodsInventoryDispatch, 
[src]

impl<T> FromPy<T> for T[src]

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<'v, T> PyTryFrom<'v> for T where
    T: PyTypeInfo
[src]

impl<T> PyObjectAlloc for T where
    T: PyObjectWithFreeList
[src]

unsafe fn drop(py: Python, obj: *mut PyObject)[src]

Calls the rust destructor for the object.

impl<T> PyTypeCreate for T where
    T: PyObjectAlloc + PyTypeObject
[src]

#[must_use]
fn create(py: Python) -> Result<PyRawObject, PyErr>
[src]

Create PyRawObject which can be initialized with rust value