pub struct EmptySlot(());
Tuple Fields§
§0: ()
Trait Implementations§
Source§impl PyClassBorrowChecker for EmptySlot
impl PyClassBorrowChecker for EmptySlot
Source§fn try_borrow(&self) -> Result<(), PyBorrowError>
fn try_borrow(&self) -> Result<(), PyBorrowError>
Increments immutable borrow count, if possible
Source§fn release_borrow(&self)
fn release_borrow(&self)
Decrements immutable borrow count
Source§fn try_borrow_mut(&self) -> Result<(), PyBorrowMutError>
fn try_borrow_mut(&self) -> Result<(), PyBorrowMutError>
Increments mutable borrow count, if possible
Source§fn release_borrow_mut(&self)
fn release_borrow_mut(&self)
Decremements mutable borrow count
Auto Trait Implementations§
impl Freeze for EmptySlot
impl RefUnwindSafe for EmptySlot
impl Send for EmptySlot
impl Sync for EmptySlot
impl Unpin for EmptySlot
impl UnwindSafe for EmptySlot
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> 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