pub struct RWrapperEntry {
pub priority: RWrapperPriority,
pub content: &'static str,
pub source_file: &'static str,
}Expand description
R wrapper code with priority for ordering.
Fields§
§priority: RWrapperPriorityOrdering priority (lower = earlier in output file).
content: &'static strR source code fragment.
source_file: &'static strSource file path (from file!()). Used to derive a default @rdname
for standalone functions that don’t have an explicit one, so that all
functions from the same source file share a single .Rd page.
Trait Implementations§
impl Sync for RWrapperEntry
Auto Trait Implementations§
impl Freeze for RWrapperEntry
impl RefUnwindSafe for RWrapperEntry
impl Send for RWrapperEntry
impl Unpin for RWrapperEntry
impl UnsafeUnpin for RWrapperEntry
impl UnwindSafe for RWrapperEntry
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