pub struct HumanDeltaChain {
pub chain_id: String,
pub agent_decision_ref: String,
pub resolved: bool,
pub terminal_node: String,
}Available on crate feature
python only.Fields§
§chain_id: String§agent_decision_ref: String§resolved: bool§terminal_node: StringTrait Implementations§
Source§impl Clone for HumanDeltaChain
impl Clone for HumanDeltaChain
Source§fn clone(&self) -> HumanDeltaChain
fn clone(&self) -> HumanDeltaChain
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HumanDeltaChain
impl Debug for HumanDeltaChain
Source§impl<'de> Deserialize<'de> for HumanDeltaChain
impl<'de> Deserialize<'de> for HumanDeltaChain
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 PyClass for HumanDeltaChain
impl PyClass for HumanDeltaChain
Source§impl PyClassImpl for HumanDeltaChain
impl PyClassImpl for HumanDeltaChain
Source§const IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
#[pyclass(subclass)]
Source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
Source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
#[pyclass(mapping)]
Source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
#[pyclass(sequence)]
Source§type ThreadChecker = SendablePyClass<HumanDeltaChain>
type ThreadChecker = SendablePyClass<HumanDeltaChain>
This handles following two situations: Read more
Source§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
Immutable or mutable
Source§type BaseNativeType = PyAny
type BaseNativeType = PyAny
Available on non-crate feature
gil-refs only.The closest native ancestor. This is
PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
Source§impl PyClassNewTextSignature<HumanDeltaChain> for PyClassImplCollector<HumanDeltaChain>
impl PyClassNewTextSignature<HumanDeltaChain> for PyClassImplCollector<HumanDeltaChain>
fn new_text_signature(self) -> Option<&'static str>
Source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a HumanDeltaChain
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a HumanDeltaChain
Source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut HumanDeltaChain
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut HumanDeltaChain
Source§impl PyMethods<HumanDeltaChain> for PyClassImplCollector<HumanDeltaChain>
impl PyMethods<HumanDeltaChain> for PyClassImplCollector<HumanDeltaChain>
fn py_methods(self) -> &'static PyClassItems
Source§impl PyTypeInfo for HumanDeltaChain
impl PyTypeInfo for HumanDeltaChain
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
Source§fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
Source§impl Serialize for HumanDeltaChain
impl Serialize for HumanDeltaChain
impl DerefToPyAny for HumanDeltaChain
Auto Trait Implementations§
impl Freeze for HumanDeltaChain
impl RefUnwindSafe for HumanDeltaChain
impl Send for HumanDeltaChain
impl Sync for HumanDeltaChain
impl Unpin for HumanDeltaChain
impl UnsafeUnpin for HumanDeltaChain
impl UnwindSafe for HumanDeltaChain
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