pub struct Bitwise<T> { /* private fields */ }
Implementations§
Source§impl Bitwise<i32>
i32:
impl Bitwise<i32>
i32:
Sourcepub fn into_bitwise(arg: i32) -> Bitwise<i32>
pub fn into_bitwise(arg: i32) -> Bitwise<i32>
Function into_bitwise(arg: i32)
has the proposition to return
a type Bitwise for arg
of type i32
.
The following example returns a Bitwise with 32 as its value and
with true as its logical_value initial value.
use bitwise_reduce::Bitwise;
let bitwise = Bitwise::into_bitwise(32);
Trait Implementations§
impl<T: Eq> Eq for Bitwise<T>
impl<T> StructuralPartialEq for Bitwise<T>
Auto Trait Implementations§
impl<T> Freeze for Bitwise<T>where
T: Freeze,
impl<T> RefUnwindSafe for Bitwise<T>where
T: RefUnwindSafe,
impl<T> Send for Bitwise<T>where
T: Send,
impl<T> Sync for Bitwise<T>where
T: Sync,
impl<T> Unpin for Bitwise<T>where
T: Unpin,
impl<T> UnwindSafe for Bitwise<T>where
T: 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