pub struct RestorationFilter {
pub gab: Gabor,
pub epf: EdgePreservingFilter,
pub extensions: Extensions,
/* private fields */
}
Fields§
§gab: Gabor
§epf: EdgePreservingFilter
§extensions: Extensions
Trait Implementations§
Source§impl Bundle<Encoding> for RestorationFilter
impl Bundle<Encoding> for RestorationFilter
Source§impl BundleDefault<Encoding> for RestorationFilter
impl BundleDefault<Encoding> for RestorationFilter
Source§fn default_with_context(encoding: Encoding) -> RestorationFilterwhere
RestorationFilter: Sized,
fn default_with_context(encoding: Encoding) -> RestorationFilterwhere
RestorationFilter: Sized,
Creates a default value with the given context.
Auto Trait Implementations§
impl Freeze for RestorationFilter
impl RefUnwindSafe for RestorationFilter
impl Send for RestorationFilter
impl Sync for RestorationFilter
impl Unpin for RestorationFilter
impl UnwindSafe for RestorationFilter
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> 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