pub enum BackendFeatureSource<C: BackendContext, F: ?Sized> {
None,
Context,
Backend(BackendFeature<C, F>),
}
Expand description
The backend feature source.
This enum is used by the backend builder to determine where a specific backend feature should be taken from.
Variants§
None
The feature should be disabled.
Context
The feature should be taken from the
super::BackendContextBuilder
.
Backend(BackendFeature<C, F>)
The feature should be taken from the
super::BackendBuilder
, using the given feature.
Trait Implementations§
Source§impl<C, F> Clone for BackendFeatureSource<C, F>where
C: BackendContext,
F: ?Sized,
impl<C, F> Clone for BackendFeatureSource<C, F>where
C: BackendContext,
F: ?Sized,
Source§impl<C: BackendContext, F: ?Sized> Default for BackendFeatureSource<C, F>
impl<C: BackendContext, F: ?Sized> Default for BackendFeatureSource<C, F>
Source§fn default() -> BackendFeatureSource<C, F>
fn default() -> BackendFeatureSource<C, F>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<C, F> Freeze for BackendFeatureSource<C, F>where
F: ?Sized,
impl<C, F> !RefUnwindSafe for BackendFeatureSource<C, F>
impl<C, F> Send for BackendFeatureSource<C, F>where
F: ?Sized,
impl<C, F> Sync for BackendFeatureSource<C, F>where
F: ?Sized,
impl<C, F> Unpin for BackendFeatureSource<C, F>where
F: ?Sized,
impl<C, F> !UnwindSafe for BackendFeatureSource<C, F>
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> 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