pub trait Refable {
// Required methods
fn supplement(&self) -> Content;
fn counter(&self) -> Counter;
fn numbering(&self) -> Option<&Numbering>;
}Expand description
Marks an element as being able to be referenced. This is used to implement
the @ref element.
Required Methods§
Sourcefn supplement(&self) -> Content
fn supplement(&self) -> Content
The supplement, if not overridden by the reference.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".