pub struct OpenVideoMixProjectorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> OpenVideoMixProjectorBuilder<S>
impl<S: State> OpenVideoMixProjectorBuilder<S>
Sourcepub fn build(self) -> OpenVideoMixProjectorwhere
S: IsComplete,
pub fn build(self) -> OpenVideoMixProjectorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn type(
self,
value: VideoMixType,
) -> OpenVideoMixProjectorBuilder<SetType<S>>where
S::Type: IsUnset,
pub fn type(
self,
value: VideoMixType,
) -> OpenVideoMixProjectorBuilder<SetType<S>>where
S::Type: IsUnset,
Required.
Type of mix to open.
Sourcepub fn location(
self,
value: Location,
) -> OpenVideoMixProjectorBuilder<SetLocation<S>>where
S::Location: IsUnset,
pub fn location(
self,
value: Location,
) -> OpenVideoMixProjectorBuilder<SetLocation<S>>where
S::Location: IsUnset,
Sourcepub fn maybe_location(
self,
value: Option<Location>,
) -> OpenVideoMixProjectorBuilder<SetLocation<S>>where
S::Location: IsUnset,
pub fn maybe_location(
self,
value: Option<Location>,
) -> OpenVideoMixProjectorBuilder<SetLocation<S>>where
S::Location: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for OpenVideoMixProjectorBuilder<S>
impl<S> RefUnwindSafe for OpenVideoMixProjectorBuilder<S>
impl<S> Send for OpenVideoMixProjectorBuilder<S>
impl<S> Sync for OpenVideoMixProjectorBuilder<S>
impl<S> Unpin for OpenVideoMixProjectorBuilder<S>
impl<S> UnsafeUnpin for OpenVideoMixProjectorBuilder<S>
impl<S> UnwindSafe for OpenVideoMixProjectorBuilder<S>
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