[][src]Struct pyo3::types::PyByteArray

#[repr(transparent)]
pub struct PyByteArray(_, _);

Represents a Python bytearray.

Methods

impl PyByteArray[src]

pub 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].

pub fn from<'p, I>(py: Python<'p>, src: &'p I) -> PyResult<&'p PyByteArray> where
    I: AsPyPointer
[src]

Creates a new Python bytearray object from other PyObject, that implements the buffer protocol.

pub fn len(&self) -> usize[src]

Gets the length of the bytearray.

pub fn is_empty(&self) -> bool[src]

Check if bytearray is empty.

pub fn to_vec(&self) -> Vec<u8>[src]

Copies the contents of the bytearray to a rust vector

Example

let bytearray = PyByteArray::new(py, b"Hello World.");
let mut copied_message = bytearray.to_vec();
assert_eq!(b"Hello World.", copied_message.as_slice());

copied_message[11] = b'!';
assert_eq!(b"Hello World!", copied_message.as_slice());

let locals = [("bytearray", bytearray)].into_py_dict(py);
py.run("assert bytearray == b'Hello World.'", None, Some(locals)).unwrap();

pub fn resize(&self, len: usize) -> PyResult<()>[src]

Resize bytearray object to len.

Trait Implementations

impl AsPyPointer for PyByteArray[src]

fn as_ptr(&self) -> *mut PyObject[src]

Gets the underlying FFI pointer, returns a borrowed pointer.

impl AsRef<PyAny> for PyByteArray[src]

impl Debug for PyByteArray[src]

impl Display for PyByteArray[src]

impl<'a> From<&'a PyByteArray> for &'a PyAny[src]

impl PartialEq<PyByteArray> for PyByteArray[src]

impl PyNativeType for PyByteArray[src]

impl PyObjectAlloc for PyByteArray[src]

impl PyTypeInfo for PyByteArray[src]

type Type = ()

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

impl PyTypeObject for PyByteArray[src]

impl ToPyObject for PyByteArray[src]

Auto Trait Implementations

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> PyObjectAlloc for T where
    T: PyObjectWithFreeList
[src]

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.