pub struct PyProperty { /* private fields */ }Available on crate feature
python only.Trait Implementations§
Source§impl Clone for PyProperty
impl Clone for PyProperty
Source§fn clone(&self) -> PyProperty
fn clone(&self) -> PyProperty
Returns a duplicate 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 moreSource§impl Debug for PyProperty
impl Debug for PyProperty
Source§impl<'de> Deserialize<'de> for PyProperty
impl<'de> Deserialize<'de> for PyProperty
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&PublicProperty> for PyProperty
impl From<&PublicProperty> for PyProperty
Source§fn from(llr_prop: &PublicProperty) -> Self
fn from(llr_prop: &PublicProperty) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PyProperty
impl PartialEq for PyProperty
Source§impl Serialize for PyProperty
impl Serialize for PyProperty
impl StructuralPartialEq for PyProperty
Auto Trait Implementations§
impl Freeze for PyProperty
impl RefUnwindSafe for PyProperty
impl Send for PyProperty
impl Sync for PyProperty
impl Unpin for PyProperty
impl UnsafeUnpin for PyProperty
impl UnwindSafe for PyProperty
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
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