Struct pyo3::ffi::PySequenceMethods
source · #[repr(C)]pub struct PySequenceMethods {
pub sq_length: Option<unsafe extern "C" fn(_: *mut PyObject) -> isize>,
pub sq_concat: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject>,
pub sq_repeat: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>,
pub sq_item: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>,
pub was_sq_slice: *mut c_void,
pub sq_ass_item: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize, _: *mut PyObject) -> i32>,
pub was_sq_ass_slice: *mut c_void,
pub sq_contains: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> i32>,
pub sq_inplace_concat: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject>,
pub sq_inplace_repeat: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>,
}
Fields§
§sq_length: Option<unsafe extern "C" fn(_: *mut PyObject) -> isize>
§sq_concat: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject>
§sq_repeat: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>
§sq_item: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>
§was_sq_slice: *mut c_void
§sq_ass_item: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize, _: *mut PyObject) -> i32>
§was_sq_ass_slice: *mut c_void
§sq_contains: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> i32>
§sq_inplace_concat: Option<unsafe extern "C" fn(_: *mut PyObject, _: *mut PyObject) -> *mut PyObject>
§sq_inplace_repeat: Option<unsafe extern "C" fn(_: *mut PyObject, _: isize) -> *mut PyObject>
Trait Implementations§
source§impl Clone for PySequenceMethods
impl Clone for PySequenceMethods
source§fn clone(&self) -> PySequenceMethods
fn clone(&self) -> PySequenceMethods
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for PySequenceMethods
impl !Send for PySequenceMethods
impl !Sync for PySequenceMethods
impl Unpin for PySequenceMethods
impl UnwindSafe for PySequenceMethods
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more