#[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 Freeze for PySequenceMethods
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> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more