pub struct ReferenceConfig {
pub deterministic: bool,
pub resource_prefix: String,
pub release_prefix: String,
pub deal_prefix: String,
pub max_cache_size: usize,
}Expand description
Configuration for reference management during streaming
Controls how references are generated and managed during streaming DDEX XML generation, including deterministic behavior and memory management.
§Example
use ddex_builder::streaming::reference_manager::ReferenceConfig;
let config = ReferenceConfig {
deterministic: true,
resource_prefix: "AUDIO".to_string(),
release_prefix: "ALBUM".to_string(),
deal_prefix: "DEAL".to_string(),
max_cache_size: 50_000, // Smaller cache for memory-constrained environments
};Fields§
§deterministic: boolUse deterministic reference generation based on content hashes
resource_prefix: StringPrefix for resource references (default: “R”)
release_prefix: StringPrefix for release references (default: “REL”)
deal_prefix: StringPrefix for deal references (default: “D”)
max_cache_size: usizeMaximum number of references to cache in memory before cleanup
Trait Implementations§
Source§impl Clone for ReferenceConfig
impl Clone for ReferenceConfig
Source§fn clone(&self) -> ReferenceConfig
fn clone(&self) -> ReferenceConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ReferenceConfig
impl Debug for ReferenceConfig
Auto Trait Implementations§
impl Freeze for ReferenceConfig
impl RefUnwindSafe for ReferenceConfig
impl Send for ReferenceConfig
impl Sync for ReferenceConfig
impl Unpin for ReferenceConfig
impl UnwindSafe for ReferenceConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more