Method
set__cancel_message
(&self, value: PySetterValue)
Source from the content-addressed store, hash-verified
| 694 | |
| 695 | #[pygetset(setter)] |
| 696 | fn set__cancel_message(&self, value: PySetterValue) { |
| 697 | match value { |
| 698 | PySetterValue::Assign(v) => *self.fut_cancel_msg.write() = Some(v), |
| 699 | PySetterValue::Delete => *self.fut_cancel_msg.write() = None, |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | #[pygetset] |
| 704 | fn _asyncio_awaited_by(&self, vm: &VirtualMachine) -> PyResult<PyObjectRef> { |
Callers
nothing calls this directly
Tested by
no test coverage detected