pub struct CallbackSpec {
pub c_field: &'static str,
pub cs_method: &'static str,
pub doc: &'static str,
pub extra: &'static [ExtraParam],
pub has_is_header: bool,
}Fields§
§c_field: &'static strField name in HTMHtmVisitorCallbacks.
cs_method: &'static strC# interface method name (PascalCase).
doc: &'static strXML doc summary.
extra: &'static [ExtraParam]Extra parameters beyond NodeContext in the C# interface.
has_is_header: boolIf true, add bool isHeader (only visit_table_row).
Auto Trait Implementations§
impl Freeze for CallbackSpec
impl RefUnwindSafe for CallbackSpec
impl Send for CallbackSpec
impl Sync for CallbackSpec
impl Unpin for CallbackSpec
impl UnsafeUnpin for CallbackSpec
impl UnwindSafe for CallbackSpec
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