pub struct EndofunctionBrand<FnBrand: CloneableFn, A>(/* private fields */);Expand description
Brand for Endofunction.
Trait Implementations§
Source§impl<FnBrand: Clone + CloneableFn, A: Clone> Clone for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Clone + CloneableFn, A: Clone> Clone for EndofunctionBrand<FnBrand, A>
Source§fn clone(&self) -> EndofunctionBrand<FnBrand, A>
fn clone(&self) -> EndofunctionBrand<FnBrand, A>
Returns a duplicate 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<FnBrand: Debug + CloneableFn, A: Debug> Debug for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Debug + CloneableFn, A: Debug> Debug for EndofunctionBrand<FnBrand, A>
Source§impl<FnBrand: Default + CloneableFn, A: Default> Default for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Default + CloneableFn, A: Default> Default for EndofunctionBrand<FnBrand, A>
Source§fn default() -> EndofunctionBrand<FnBrand, A>
fn default() -> EndofunctionBrand<FnBrand, A>
Returns the “default value” for a type. Read more
Source§impl<FnBrand: Hash + CloneableFn, A: Hash> Hash for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Hash + CloneableFn, A: Hash> Hash for EndofunctionBrand<FnBrand, A>
Source§impl<FnBrand: Ord + CloneableFn, A: Ord> Ord for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Ord + CloneableFn, A: Ord> Ord for EndofunctionBrand<FnBrand, A>
Source§fn cmp(&self, other: &EndofunctionBrand<FnBrand, A>) -> Ordering
fn cmp(&self, other: &EndofunctionBrand<FnBrand, A>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<FnBrand: PartialEq + CloneableFn, A: PartialEq> PartialEq for EndofunctionBrand<FnBrand, A>
impl<FnBrand: PartialEq + CloneableFn, A: PartialEq> PartialEq for EndofunctionBrand<FnBrand, A>
Source§fn eq(&self, other: &EndofunctionBrand<FnBrand, A>) -> bool
fn eq(&self, other: &EndofunctionBrand<FnBrand, A>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<FnBrand: PartialOrd + CloneableFn, A: PartialOrd> PartialOrd for EndofunctionBrand<FnBrand, A>
impl<FnBrand: PartialOrd + CloneableFn, A: PartialOrd> PartialOrd for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Copy + CloneableFn, A: Copy> Copy for EndofunctionBrand<FnBrand, A>
impl<FnBrand: Eq + CloneableFn, A: Eq> Eq for EndofunctionBrand<FnBrand, A>
impl<FnBrand: CloneableFn, A> StructuralPartialEq for EndofunctionBrand<FnBrand, A>
Auto Trait Implementations§
impl<FnBrand, A> Freeze for EndofunctionBrand<FnBrand, A>
impl<FnBrand, A> RefUnwindSafe for EndofunctionBrand<FnBrand, A>where
FnBrand: RefUnwindSafe,
A: RefUnwindSafe,
impl<FnBrand, A> Send for EndofunctionBrand<FnBrand, A>
impl<FnBrand, A> Sync for EndofunctionBrand<FnBrand, A>
impl<FnBrand, A> Unpin for EndofunctionBrand<FnBrand, A>
impl<FnBrand, A> UnwindSafe for EndofunctionBrand<FnBrand, A>where
FnBrand: UnwindSafe,
A: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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