pub struct SessionMutationResult {
pub version: u64,
pub affected_citations: Vec<FormattedCitation>,
pub bibliography: FormattedBibliography,
pub renumbering_occurred: bool,
pub warnings: Vec<Warning>,
}Expand description
Result returned by mutation methods.
Fields§
§version: u64Monotonic session version after the mutation.
affected_citations: Vec<FormattedCitation>Complete set of citations whose rendered output changed.
bibliography: FormattedBibliographyCurrent bibliography after the mutation.
renumbering_occurred: boolTrue when numeric citation labels or note numbers shifted.
warnings: Vec<Warning>Non-fatal diagnostics encountered during rendering.
Trait Implementations§
Source§impl Clone for SessionMutationResult
impl Clone for SessionMutationResult
Source§fn clone(&self) -> SessionMutationResult
fn clone(&self) -> SessionMutationResult
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 SessionMutationResult
impl Debug for SessionMutationResult
Source§impl<'de> Deserialize<'de> for SessionMutationResult
impl<'de> Deserialize<'de> for SessionMutationResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionMutationResult
impl RefUnwindSafe for SessionMutationResult
impl Send for SessionMutationResult
impl Sync for SessionMutationResult
impl Unpin for SessionMutationResult
impl UnsafeUnpin for SessionMutationResult
impl UnwindSafe for SessionMutationResult
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