pub struct AdvancedPublicationBuilder<'a, P> { /* private fields */ }
Implementations§
Source§impl<P> AdvancedPublicationBuilder<'_, P>
impl<P> AdvancedPublicationBuilder<'_, P>
pub fn source_info(self, source_info: SourceInfo) -> Self
pub fn attachment<TA: Into<OptionZBytes>>(self, attachment: TA) -> Self
Trait Implementations§
Source§impl<'a, P: Clone> Clone for AdvancedPublicationBuilder<'a, P>
impl<'a, P: Clone> Clone for AdvancedPublicationBuilder<'a, P>
Source§fn clone(&self) -> AdvancedPublicationBuilder<'a, P>
fn clone(&self) -> AdvancedPublicationBuilder<'a, P>
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 EncodingBuilderTrait for AdvancedPublicationBuilder<'_, PublicationBuilderPut>
impl EncodingBuilderTrait for AdvancedPublicationBuilder<'_, PublicationBuilderPut>
Source§impl<P> Resolvable for AdvancedPublicationBuilder<'_, P>
impl<P> Resolvable for AdvancedPublicationBuilder<'_, P>
Source§impl<P> SampleBuilderTrait for AdvancedPublicationBuilder<'_, P>
impl<P> SampleBuilderTrait for AdvancedPublicationBuilder<'_, P>
Source§fn source_info(self, source_info: SourceInfo) -> Self
fn source_info(self, source_info: SourceInfo) -> Self
Attach source information Read more
Source§fn attachment<TA: Into<OptionZBytes>>(self, attachment: TA) -> Self
fn attachment<TA: Into<OptionZBytes>>(self, attachment: TA) -> Self
Attach user-provided data in key-value format
Auto Trait Implementations§
impl<'a, P> Freeze for AdvancedPublicationBuilder<'a, P>where
P: Freeze,
impl<'a, P> !RefUnwindSafe for AdvancedPublicationBuilder<'a, P>
impl<'a, P> Send for AdvancedPublicationBuilder<'a, P>where
P: Send,
impl<'a, P> Sync for AdvancedPublicationBuilder<'a, P>where
P: Sync,
impl<'a, P> Unpin for AdvancedPublicationBuilder<'a, P>where
P: Unpin,
impl<'a, P> !UnwindSafe for AdvancedPublicationBuilder<'a, P>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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