pub struct EncodingContainerProfileBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> EncodingContainerProfileBuilder<'a>
impl<'a> EncodingContainerProfileBuilder<'a>
pub fn build(self) -> EncodingContainerProfile
pub fn add_profile(self, profile: impl IsA<EncodingProfile>) -> Self
Trait Implementations§
source§impl<'a> Debug for EncodingContainerProfileBuilder<'a>
impl<'a> Debug for EncodingContainerProfileBuilder<'a>
source§impl<'a> EncodingProfileBuilder<'a> for EncodingContainerProfileBuilder<'a>
impl<'a> EncodingProfileBuilder<'a> for EncodingContainerProfileBuilder<'a>
fn name(self, name: &'a str) -> EncodingContainerProfileBuilder<'a>
fn description( self, description: &'a str, ) -> EncodingContainerProfileBuilder<'a>
fn preset(self, preset: &'a str) -> EncodingContainerProfileBuilder<'a>
fn preset_name( self, preset_name: &'a str, ) -> EncodingContainerProfileBuilder<'a>
fn presence(self, presence: u32) -> EncodingContainerProfileBuilder<'a>
fn presence_if( self, presence: u32, predicate: bool, ) -> EncodingContainerProfileBuilder<'a>
fn presence_if_some( self, presence: Option<u32>, ) -> EncodingContainerProfileBuilder<'a>
fn allow_dynamic_output( self, allow: bool, ) -> EncodingContainerProfileBuilder<'a>
fn allow_dynamic_output_if_some( self, allow_dynamic_output: Option<bool>, ) -> EncodingContainerProfileBuilder<'a>
fn enabled(self, enabled: bool) -> EncodingContainerProfileBuilder<'a>
fn enabled_if_some( self, enabled: Option<bool>, ) -> EncodingContainerProfileBuilder<'a>
fn single_segment( self, single_segment: bool, ) -> EncodingContainerProfileBuilder<'a>
fn single_segment_if_some( self, single_segment: Option<bool>, ) -> EncodingContainerProfileBuilder<'a>
fn element_properties( self, element_properties: ElementProperties, ) -> EncodingContainerProfileBuilder<'a>
fn element_properties_if( self, element_properties: ElementProperties, predicate: bool, ) -> EncodingContainerProfileBuilder<'a>
fn element_properties_if_some( self, element_properties: Option<ElementProperties>, ) -> EncodingContainerProfileBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for EncodingContainerProfileBuilder<'a>
impl<'a> RefUnwindSafe for EncodingContainerProfileBuilder<'a>
impl<'a> Send for EncodingContainerProfileBuilder<'a>
impl<'a> Sync for EncodingContainerProfileBuilder<'a>
impl<'a> Unpin for EncodingContainerProfileBuilder<'a>
impl<'a> UnwindSafe for EncodingContainerProfileBuilder<'a>
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> 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