Lines Matching defs:ErrorVTable
224 vtable: &'static ErrorVTable, in construct()
591 struct ErrorVTable { struct
592 object_drop: unsafe fn(Own<ErrorImpl>),
593 object_ref: unsafe fn(Ref<ErrorImpl>) -> Ref<dyn StdError + Send + Sync + 'static>,
595 object_mut: unsafe fn(Mut<ErrorImpl>) -> &mut (dyn StdError + Send + Sync + 'static),
596 object_boxed: unsafe fn(Own<ErrorImpl>) -> Box<dyn StdError + Send + Sync + 'static>,
597 object_downcast: unsafe fn(Ref<ErrorImpl>, TypeId) -> Option<Ref<()>>,
599 object_downcast_mut: unsafe fn(Mut<ErrorImpl>, TypeId) -> Option<Mut<()>>,
600 object_drop_rest: unsafe fn(Own<ErrorImpl>, TypeId),
602 object_backtrace: unsafe fn(Ref<ErrorImpl>) -> Option<&Backtrace>,
850 unsafe fn vtable(p: NonNull<ErrorImpl>) -> &'static ErrorVTable { in vtable()
852 *(p.as_ptr() as *const &'static ErrorVTable) in vtable() variable