pub struct BitOrField<L, R> { /* private fields */ }
Trait Implementations§
Source§impl<L: Clone, R: Clone> Clone for BitOrField<L, R>
impl<L: Clone, R: Clone> Clone for BitOrField<L, R>
Source§fn clone(&self) -> BitOrField<L, R>
fn clone(&self) -> BitOrField<L, R>
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<L, R> ScalarField for BitOrField<L, R>where
L: ScalarField,
R: ScalarField<Point = L::Point>,
L::Scalar: BitOr<R::Scalar>,
L::Point: Clone,
impl<L, R> ScalarField for BitOrField<L, R>where
L: ScalarField,
R: ScalarField<Point = L::Point>,
L::Scalar: BitOr<R::Scalar>,
L::Point: Clone,
type Point = <L as ScalarField>::Point
type Scalar = <<L as ScalarField>::Scalar as BitOr<<R as ScalarField>::Scalar>>::Output
fn value(&self, point: Self::Point) -> Self::Scalar
fn map<S, F>(self, func: F) -> MapField<Self, F>
fn transform<P, F>(self, func: F) -> TransformField<Self, P, F>
impl<L: Copy, R: Copy> Copy for BitOrField<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for BitOrField<L, R>
impl<L, R> RefUnwindSafe for BitOrField<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for BitOrField<L, R>
impl<L, R> Sync for BitOrField<L, R>
impl<L, R> Unpin for BitOrField<L, R>
impl<L, R> UnwindSafe for BitOrField<L, R>where
L: UnwindSafe,
R: 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