pub struct MessageModulus(pub usize);Expand description
The number of bits on which the message will be encoded.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl Clone for MessageModulus
impl Clone for MessageModulus
Source§fn clone(&self) -> MessageModulus
fn clone(&self) -> MessageModulus
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 Debug for MessageModulus
impl Debug for MessageModulus
Source§impl<'de> Deserialize<'de> for MessageModulus
impl<'de> Deserialize<'de> for MessageModulus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MessageModulus
impl PartialEq for MessageModulus
Source§impl Serialize for MessageModulus
impl Serialize for MessageModulus
impl Copy for MessageModulus
impl Eq for MessageModulus
impl StructuralPartialEq for MessageModulus
Auto Trait Implementations§
impl Freeze for MessageModulus
impl RefUnwindSafe for MessageModulus
impl Send for MessageModulus
impl Sync for MessageModulus
impl Unpin for MessageModulus
impl UnwindSafe for MessageModulus
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