pub struct ProcessingCustom {
pub sort: Option<SortEntry>,
pub group: Option<Group>,
pub disambiguate: Option<Disambiguation>,
}Expand description
Custom processing configuration.
Allows explicit specification of sorting, grouping, and disambiguation rules without relying on preset defaults.
Fields§
§sort: Option<SortEntry>Bibliography sorting configuration (optional).
group: Option<Group>Bibliography grouping configuration (optional).
disambiguate: Option<Disambiguation>Disambiguation settings (optional).
Trait Implementations§
Source§impl Clone for ProcessingCustom
impl Clone for ProcessingCustom
Source§fn clone(&self) -> ProcessingCustom
fn clone(&self) -> ProcessingCustom
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProcessingCustom
impl Debug for ProcessingCustom
Source§impl Default for ProcessingCustom
impl Default for ProcessingCustom
Source§fn default() -> ProcessingCustom
fn default() -> ProcessingCustom
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingCustom
impl<'de> Deserialize<'de> for ProcessingCustom
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessingCustom, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessingCustom, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessingCustom
impl PartialEq for ProcessingCustom
Source§fn eq(&self, other: &ProcessingCustom) -> bool
fn eq(&self, other: &ProcessingCustom) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessingCustom
impl Serialize for ProcessingCustom
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ProcessingCustom
Auto Trait Implementations§
impl Freeze for ProcessingCustom
impl RefUnwindSafe for ProcessingCustom
impl Send for ProcessingCustom
impl Sync for ProcessingCustom
impl Unpin for ProcessingCustom
impl UnsafeUnpin for ProcessingCustom
impl UnwindSafe for ProcessingCustom
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