pub struct SumFn { /* private fields */ }Expand description
Partially-implemented function (implementing Func and FuncDefault) for computing the sum of values in a field.
Trait Implementations§
Source§impl FuncDefault for SumFn
impl FuncDefault for SumFn
Source§impl IsImplemented<SumFn> for String
impl IsImplemented<SumFn> for String
Source§type IsImpl = Unimplemented
type IsImpl = Unimplemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for bool
impl IsImplemented<SumFn> for bool
Source§type IsImpl = Unimplemented
type IsImpl = Unimplemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for f32
impl IsImplemented<SumFn> for f32
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for f64
impl IsImplemented<SumFn> for f64
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for i32
impl IsImplemented<SumFn> for i32
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for i64
impl IsImplemented<SumFn> for i64
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for isize
impl IsImplemented<SumFn> for isize
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for u32
impl IsImplemented<SumFn> for u32
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for u64
impl IsImplemented<SumFn> for u64
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Source§impl IsImplemented<SumFn> for usize
impl IsImplemented<SumFn> for usize
Source§type IsImpl = Implemented
type IsImpl = Implemented
Marker trait (either Implemented or
Unimplemented) specifying the implementation status for this
function / data type combination.
Auto Trait Implementations§
impl Freeze for SumFn
impl RefUnwindSafe for SumFn
impl Send for SumFn
impl Sync for SumFn
impl Unpin for SumFn
impl UnwindSafe for SumFn
Blanket Implementations§
Source§impl<Frames> AssocDataIndexCons<Nil> for Frames
impl<Frames> AssocDataIndexCons<Nil> for Frames
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> 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 moreSource§impl<T> IntoLabeled for T
impl<T> IntoLabeled for T
Source§impl<Frames, Store> JoinIntoStore<Nil, Store> for Frames
impl<Frames, Store> JoinIntoStore<Nil, Store> for Frames
Source§fn join_into_store(
&self,
store: Store,
_permutation: &[usize],
) -> Result<Store, AgnesError>
fn join_into_store( &self, store: Store, _permutation: &[usize], ) -> Result<Store, AgnesError>
Augments
store with data from self (as specified with Labels), using the provided
permutation indices.