pub struct PyGraphRecordAttribute(/* private fields */);Trait Implementations§
Source§impl Clone for PyGraphRecordAttribute
impl Clone for PyGraphRecordAttribute
Source§fn clone(&self) -> PyGraphRecordAttribute
fn clone(&self) -> PyGraphRecordAttribute
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 PyGraphRecordAttribute
impl Debug for PyGraphRecordAttribute
Source§impl DeepFrom<GraphRecordAttribute> for PyGraphRecordAttribute
impl DeepFrom<GraphRecordAttribute> for PyGraphRecordAttribute
fn deep_from(value: GraphRecordAttribute) -> Self
Source§impl DeepFrom<PyGraphRecordAttribute> for GraphRecordAttribute
impl DeepFrom<PyGraphRecordAttribute> for GraphRecordAttribute
fn deep_from(value: PyGraphRecordAttribute) -> Self
Source§impl Deref for PyGraphRecordAttribute
impl Deref for PyGraphRecordAttribute
Source§impl From<GraphRecordAttribute> for PyGraphRecordAttribute
impl From<GraphRecordAttribute> for PyGraphRecordAttribute
Source§fn from(value: GraphRecordAttribute) -> Self
fn from(value: GraphRecordAttribute) -> Self
Converts to this type from the input type.
Source§impl From<PyGraphRecordAttribute> for GraphRecordAttribute
impl From<PyGraphRecordAttribute> for GraphRecordAttribute
Source§fn from(value: PyGraphRecordAttribute) -> Self
fn from(value: PyGraphRecordAttribute) -> Self
Converts to this type from the input type.
Source§impl FromPyObject<'_, '_> for PyGraphRecordAttribute
impl FromPyObject<'_, '_> for PyGraphRecordAttribute
Source§impl Hash for PyGraphRecordAttribute
impl Hash for PyGraphRecordAttribute
Source§impl<'py> IntoPyObject<'py> for PyGraphRecordAttribute
impl<'py> IntoPyObject<'py> for PyGraphRecordAttribute
Source§type Output = Bound<'py, <PyGraphRecordAttribute as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <PyGraphRecordAttribute as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§impl PartialEq for PyGraphRecordAttribute
impl PartialEq for PyGraphRecordAttribute
impl Eq for PyGraphRecordAttribute
impl StructuralPartialEq for PyGraphRecordAttribute
Auto Trait Implementations§
impl Freeze for PyGraphRecordAttribute
impl RefUnwindSafe for PyGraphRecordAttribute
impl Send for PyGraphRecordAttribute
impl Sync for PyGraphRecordAttribute
impl Unpin for PyGraphRecordAttribute
impl UnsafeUnpin for PyGraphRecordAttribute
impl UnwindSafe for PyGraphRecordAttribute
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moreSource§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.