Struct burn_core::tensor::ops::InterpolateOptions
source · pub struct InterpolateOptions {
pub mode: InterpolateMode,
}Expand description
Interpolation options.
Fields§
§mode: InterpolateModeAlgorithm used for upsampling.
Implementations§
source§impl InterpolateOptions
impl InterpolateOptions
sourcepub fn new(mode: InterpolateMode) -> InterpolateOptions
pub fn new(mode: InterpolateMode) -> InterpolateOptions
Constructs a new InterpolateOptions.
Trait Implementations§
source§impl Clone for InterpolateOptions
impl Clone for InterpolateOptions
source§fn clone(&self) -> InterpolateOptions
fn clone(&self) -> InterpolateOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for InterpolateOptions
impl Debug for InterpolateOptions
source§impl From<InterpolateOptions> for InterpolateOptionsDescription
impl From<InterpolateOptions> for InterpolateOptionsDescription
source§fn from(val: InterpolateOptions) -> InterpolateOptionsDescription
fn from(val: InterpolateOptions) -> InterpolateOptionsDescription
Converts to this type from the input type.
source§impl From<InterpolateOptionsDescription> for InterpolateOptions
impl From<InterpolateOptionsDescription> for InterpolateOptions
source§fn from(val: InterpolateOptionsDescription) -> InterpolateOptions
fn from(val: InterpolateOptionsDescription) -> InterpolateOptions
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InterpolateOptions
impl RefUnwindSafe for InterpolateOptions
impl Send for InterpolateOptions
impl Sync for InterpolateOptions
impl Unpin for InterpolateOptions
impl UnwindSafe for InterpolateOptions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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