Struct pyo3::PyByteArray
[−]
[src]
pub struct PyByteArray(_);
Represents a Python bytearray.
Methods
impl PyByteArray[src]
fn new<'p>(py: Python<'p>, src: &[u8]) -> &'p PyByteArray[src]
Creates a new Python bytearray object.
The byte string is initialized by copying the data from the &[u8].
Panics if out of memory.
fn from<I>(py: Python, src: I) -> PyResult<&PyByteArray> where
I: ToPyPointer, [src]
I: ToPyPointer,
Creates a new Python bytearray object from other PyObject, that implements the buffer protocol.
fn len(&self) -> usize[src]
Gets the length of the bytearray.
fn data(&self) -> &mut [u8][src]
Gets the Python bytearray data as byte slice.
fn resize(&self, len: usize) -> PyResult<()>[src]
Resize bytearray object.
Trait Implementations
impl AsRef<PyObjectRef> for PyByteArray[src]
fn as_ref(&self) -> &PyObjectRef[src]
Performs the conversion.
impl PyObjectWithToken for PyByteArray[src]
impl ToPyPointer for PyByteArray[src]
impl PartialEq for PyByteArray[src]
fn eq(&self, o: &PyByteArray) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PyTypeInfo for PyByteArray[src]
type Type = ()
Type of objects to store in PyObject struct
type BaseType = PyObjectRef
Base class
const NAME: &'static str
NAME: &'static str = "PyByteArray"
Class name
const SIZE: usize
SIZE: usize = ::std::mem::size_of::<::ffi::PyObject>()
Size of the rust PyObject structure (PyObject + rust structure)
const OFFSET: isize
OFFSET: isize = 0
Type instance offset inside PyObject structure
unsafe fn type_object() -> &'static mut PyTypeObject[src]
PyTypeObject instance for this type
fn is_instance(ptr: *mut PyObject) -> bool[src]
Check if *mut ffi::PyObject is instance of this type
const DESCRIPTION: &'static str
DESCRIPTION: &'static str = "\u{0}"
Class doc string
const FLAGS: usize
FLAGS: usize = 0
Type flags (ie PY_TYPE_FLAG_GC, PY_TYPE_FLAG_WEAKREF)
fn is_exact_instance(ptr: *mut PyObject) -> bool[src]
Check if *mut ffi::PyObject is exact instance of this type
impl PyTypeObject for PyByteArray[src]
fn init_type()[src]
Initialize type object
fn type_object() -> Py<PyType>[src]
Retrieves the type object for this Python object type.
fn create(py: Python) -> PyResult<PyRawObject> where
Self: Sized + PyObjectAlloc<Self> + PyTypeInfo, [src]
Self: Sized + PyObjectAlloc<Self> + PyTypeInfo,
Create PyRawObject which can be initialized with rust value
impl ToPyObject for PyByteArray[src]
impl ToBorrowedObject for PyByteArray[src]
fn with_borrowed_ptr<F, R>(&self, _py: Python, f: F) -> R where
F: FnOnce(*mut PyObject) -> R, [src]
F: FnOnce(*mut PyObject) -> R,
Converts self into a Python object and calls the specified closure on the native FFI pointer underlying the Python object. Read more
impl Debug for PyByteArray[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Display for PyByteArray[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl<'a> FromPyObject<'a> for &'a PyByteArray[src]
fn extract(ob: &'a PyObjectRef) -> PyResult<Self>[src]
Extracts Self from the source PyObject.