pub struct DefaultFrameCreator<D: FrameDescriptorSpec> { /* private fields */ }Trait Implementations§
Source§impl<D: FrameDescriptorSpec> Default for DefaultFrameCreator<D>
impl<D: FrameDescriptorSpec> Default for DefaultFrameCreator<D>
Source§impl<D: FrameDescriptorSpec> FrameCreator<D> for DefaultFrameCreator<D>
impl<D: FrameDescriptorSpec> FrameCreator<D> for DefaultFrameCreator<D>
fn create_frame(&self, desc: D) -> Result<Frame<'static, D>>
Source§impl<D: FrameDescriptorSpec> From<DefaultFrameCreator<D>> for Arc<dyn FrameCreator<D>>where
DefaultFrameCreator<D>: FrameCreator<D>,
impl<D: FrameDescriptorSpec> From<DefaultFrameCreator<D>> for Arc<dyn FrameCreator<D>>where
DefaultFrameCreator<D>: FrameCreator<D>,
Source§fn from(creator: DefaultFrameCreator<D>) -> Self
fn from(creator: DefaultFrameCreator<D>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<D> Freeze for DefaultFrameCreator<D>
impl<D> RefUnwindSafe for DefaultFrameCreator<D>where
D: RefUnwindSafe,
impl<D> Send for DefaultFrameCreator<D>
impl<D> Sync for DefaultFrameCreator<D>
impl<D> Unpin for DefaultFrameCreator<D>where
D: Unpin,
impl<D> UnwindSafe for DefaultFrameCreator<D>where
D: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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