pub struct DevicePoly<T, B> {
pub is_bit_reversed: bool,
pub coeff: DeviceBuffer<T>,
/* private fields */
}Fields§
§is_bit_reversed: bool§coeff: DeviceBuffer<T>Implementations§
Auto Trait Implementations§
impl<T, B> Freeze for DevicePoly<T, B>
impl<T, B> RefUnwindSafe for DevicePoly<T, B>where
B: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, B> Send for DevicePoly<T, B>where
B: Send,
impl<T, B> Sync for DevicePoly<T, B>where
B: Sync,
impl<T, B> Unpin for DevicePoly<T, B>where
B: Unpin,
impl<T, B> UnsafeUnpin for DevicePoly<T, B>
impl<T, B> UnwindSafe for DevicePoly<T, B>where
B: UnwindSafe,
T: RefUnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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