Lines Matching defs:ErrorVTable
212 vtable: &'static ErrorVTable, in construct()
563 struct ErrorVTable { struct
564 object_drop: unsafe fn(Own<ErrorImpl>),
565 object_ref: unsafe fn(Ref<ErrorImpl>) -> Ref<dyn StdError + Send + Sync + 'static>,
567 object_mut: unsafe fn(Mut<ErrorImpl>) -> &mut (dyn StdError + Send + Sync + 'static),
568 object_boxed: unsafe fn(Own<ErrorImpl>) -> Box<dyn StdError + Send + Sync + 'static>,
569 object_downcast: unsafe fn(Ref<ErrorImpl>, TypeId) -> Option<Ref<()>>,
571 object_downcast_mut: unsafe fn(Mut<ErrorImpl>, TypeId) -> Option<Mut<()>>,
572 object_drop_rest: unsafe fn(Own<ErrorImpl>, TypeId),
574 object_backtrace: unsafe fn(Ref<ErrorImpl>) -> Option<&Backtrace>,
824 unsafe fn vtable(p: NonNull<ErrorImpl>) -> &'static ErrorVTable { in vtable()
826 *(p.as_ptr() as *const &'static ErrorVTable) in vtable() variable