Struct pyo3::PyBytes
[−]
[src]
pub struct PyBytes(_);
Represents a Python byte string.
Methods
impl PyBytes[src]
fn new(_py: Python, s: &[u8]) -> Py<PyBytes>[src]
Creates a new Python byte string object.
The byte string is initialized by copying the data from the &[u8].
Panics if out of memory.
unsafe fn from_ptr(_py: Python, ptr: *const u8, len: usize) -> Py<PyBytes>[src]
Creates a new Python byte string object from raw pointer.
Panics if out of memory.
fn data(&self) -> &[u8][src]
Gets the Python string data as byte slice.
Trait Implementations
impl AsRef<PyObjectRef> for PyBytes[src]
fn as_ref(&self) -> &PyObjectRef[src]
Performs the conversion.
impl PyObjectWithToken for PyBytes[src]
impl ToPyPointer for PyBytes[src]
impl PartialEq for PyBytes[src]
fn eq(&self, o: &PyBytes) -> 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 PyBytes[src]
type Type = ()
Type of objects to store in PyObject struct
type BaseType = PyObjectRef
Base class
const NAME: &'static str
NAME: &'static str = "PyBytes"
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 PyBytes[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 PyBytes[src]
impl ToBorrowedObject for PyBytes[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 PyBytes[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Display for PyBytes[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 PyBytes[src]
fn extract(ob: &'a PyObjectRef) -> PyResult<Self>[src]
Extracts Self from the source PyObject.