#[repr(C)]pub struct FibonacciCols<F> {
pub left: F,
pub right: F,
}Fields§
§left: F§right: FImplementations§
Source§impl<F> FibonacciCols<F>
impl<F> FibonacciCols<F>
pub const fn new(left: F, right: F) -> FibonacciCols<F>
Trait Implementations§
Source§impl<F> Borrow<FibonacciCols<F>> for [F]
impl<F> Borrow<FibonacciCols<F>> for [F]
Source§fn borrow(&self) -> &FibonacciCols<F>
fn borrow(&self) -> &FibonacciCols<F>
Immutably borrows from an owned value. Read more
Auto Trait Implementations§
impl<F> Freeze for FibonacciCols<F>where
F: Freeze,
impl<F> RefUnwindSafe for FibonacciCols<F>where
F: RefUnwindSafe,
impl<F> Send for FibonacciCols<F>where
F: Send,
impl<F> Sync for FibonacciCols<F>where
F: Sync,
impl<F> Unpin for FibonacciCols<F>where
F: Unpin,
impl<F> UnsafeUnpin for FibonacciCols<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for FibonacciCols<F>where
F: 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
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