pub struct AbstractImpl<X>(/* private fields */);
Expand description
Low-level interop for high-level traits IServiceGenerator and IPreprocessor
Implementations§
Trait Implementations§
Source§impl<X> From<X> for AbstractImpl<X>
impl<X> From<X> for AbstractImpl<X>
Source§impl<X: IPreprocessor> Preprocessor for AbstractImpl<X>
impl<X: IPreprocessor> Preprocessor for AbstractImpl<X>
fn process(&mut self, fds: &mut FileDescriptorSet, buf: &mut String)
Source§impl<X: IServiceGenerator> ServiceGenerator for AbstractImpl<X>
impl<X: IServiceGenerator> ServiceGenerator for AbstractImpl<X>
Auto Trait Implementations§
impl<X> Freeze for AbstractImpl<X>where
X: Freeze,
impl<X> RefUnwindSafe for AbstractImpl<X>where
X: RefUnwindSafe,
impl<X> Send for AbstractImpl<X>where
X: Send,
impl<X> Sync for AbstractImpl<X>where
X: Sync,
impl<X> Unpin for AbstractImpl<X>where
X: Unpin,
impl<X> UnwindSafe for AbstractImpl<X>where
X: UnwindSafe,
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