pub struct GroupRenderParams<'a> {
pub spec: &'a CitationSpec,
pub mode: &'a CitationMode,
pub intra_delimiter: &'a str,
pub suppress_author: bool,
pub position: Option<&'a Position>,
pub note_start_text_case: Option<NoteStartTextCase>,
}Expand description
Parameters for grouped citation rendering.
Bundles together related parameters that would otherwise lead to
too_many_arguments lint violations. This struct is used to pass
consistent rendering configuration to fallback functions.
Fields§
§spec: &'a CitationSpecThe citation spec containing templates and configuration.
mode: &'a CitationModeThe citation mode (integral or non-integral).
intra_delimiter: &'a strDelimiter between items within a citation.
Whether to suppress author output.
position: Option<&'a Position>The citation position (e.g., ibid, subsequent).
note_start_text_case: Option<NoteStartTextCase>Optional note-start text-case policy for note-style repeated-note output.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GroupRenderParams<'a>
impl<'a> RefUnwindSafe for GroupRenderParams<'a>
impl<'a> Send for GroupRenderParams<'a>
impl<'a> Sync for GroupRenderParams<'a>
impl<'a> Unpin for GroupRenderParams<'a>
impl<'a> UnsafeUnpin for GroupRenderParams<'a>
impl<'a> UnwindSafe for GroupRenderParams<'a>
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