[][src]Struct pai_gst_sequencer::PAISequencer

pub struct PAISequencer { /* fields omitted */ }

Periscopai sequence pipeline

Arguments

Implementations

impl PAISequencer[src]

pub const CREATED: u8[src]

pub const ERROR: u8[src]

pub const RUNNING: u8[src]

pub const STOPPED: u8[src]

pub fn new(input: &str) -> PAISequencer[src]

pub fn start(&mut self) -> u8[src]

starts the sequencer and sets the state to RUNNING

Returns:PAISequencerState::RUNNING

Note that the reference to self is set as mutable as we want to be able to change the state.

pub fn stop(&mut self) -> u8[src]

pub fn state(&self) -> u8[src]

pub fn input(&self) -> &String[src]

Trait Implementations

impl<'a> ExtractExt<'a> for &'a PAISequencer[src]

impl<'a> ExtractExt<'a> for &'a mut PAISequencer[src]

impl HasMethodsInventory for PAISequencer[src]

type Methods = Pyo3MethodsInventoryForPAISequencer

impl HasProtoRegistry for PAISequencer[src]

impl IntoPy<Py<PyAny>> for PAISequencer[src]

impl PyClass for PAISequencer[src]

type Dict = PyClassDummySlot

Specify this class has #[pyclass(dict)] or not.

type WeakRef = PyClassDummySlot

Specify this class has #[pyclass(weakref)] or not.

type BaseNativeType = PyAny

The closest native ancestor. This is PyAny by default, and when you declare #[pyclass(extends=PyDict)], it's PyDict. Read more

impl PyClassAlloc for PAISequencer[src]

impl PyClassSend for PAISequencer[src]

type ThreadChecker = ThreadCheckerStub<PAISequencer>

impl PyTypeInfo for PAISequencer[src]

type Type = PAISequencer

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

type Layout = PyCell<Self>

Layout

type BaseLayout = PyCellBase<PyAny>

Layout of Basetype.

type Initializer = PyClassInitializer<Self>

Initializer for layout

type AsRefTarget = PyCell<Self>

Utility type to make Py::as_ref work

Auto Trait Implementations

impl RefUnwindSafe for PAISequencer

impl Send for PAISequencer

impl Sync for PAISequencer

impl Unpin for PAISequencer

impl UnwindSafe for PAISequencer

Blanket Implementations

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

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

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

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

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

impl<T> PyErrArguments for T where
    T: IntoPy<Py<PyAny>> + Send + Sync
[src]

impl<T> PyProtoMethods for T where
    T: HasProtoRegistry, 
[src]

impl<T> PyTypeObject for T where
    T: PyTypeInfo
[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.