Struct pyo3_ffi::PyBytesObject
source · #[repr(C)]pub struct PyBytesObject {
pub ob_base: PyVarObject,
pub ob_shash: Py_hash_t,
pub ob_sval: [c_char; 1],
}
Fields
ob_base: PyVarObject
ob_shash: Py_hash_t
ob_sval: [c_char; 1]
Trait Implementations
sourceimpl Clone for PyBytesObject
impl Clone for PyBytesObject
sourcefn clone(&self) -> PyBytesObject
fn clone(&self) -> PyBytesObject
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PyBytesObject
Auto Trait Implementations
impl RefUnwindSafe for PyBytesObject
impl !Send for PyBytesObject
impl !Sync for PyBytesObject
impl Unpin for PyBytesObject
impl UnwindSafe for PyBytesObject
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more