pub struct FenwickOnFenwickBuilder { /* private fields */ }
Expand description
FenwickOnFenwick
を構築するための構造体。
Implementations§
Source§impl FenwickOnFenwickBuilder
impl FenwickOnFenwickBuilder
Sourcepub fn new() -> Self
pub fn new() -> Self
空のFenwickOnFenwickBuilder
を用意する。
Sourcepub fn build<T: Copy>(self, zero: T) -> FenwickOnFenwick<T>
pub fn build<T: Copy>(self, zero: T) -> FenwickOnFenwick<T>
FenwickOnFenwick
を構築する。
Trait Implementations§
Source§impl Clone for FenwickOnFenwickBuilder
impl Clone for FenwickOnFenwickBuilder
Source§fn clone(&self) -> FenwickOnFenwickBuilder
fn clone(&self) -> FenwickOnFenwickBuilder
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 Default for FenwickOnFenwickBuilder
impl Default for FenwickOnFenwickBuilder
Source§fn default() -> FenwickOnFenwickBuilder
fn default() -> FenwickOnFenwickBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FenwickOnFenwickBuilder
impl RefUnwindSafe for FenwickOnFenwickBuilder
impl Send for FenwickOnFenwickBuilder
impl Sync for FenwickOnFenwickBuilder
impl Unpin for FenwickOnFenwickBuilder
impl UnwindSafe for FenwickOnFenwickBuilder
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