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
Fields§
§deterministic: boolUse deterministic reference generation
resource_prefix: StringPrefix for resource references
release_prefix: StringPrefix for release references
deal_prefix: StringPrefix for deal references
max_cache_size: usizeMaximum number of references to cache in memory
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