pub struct PlaintextCount(pub usize);Expand description
The number plaintexts in a plaintext list.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl Clone for PlaintextCount
impl Clone for PlaintextCount
Source§fn clone(&self) -> PlaintextCount
fn clone(&self) -> PlaintextCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlaintextCount
impl Debug for PlaintextCount
Source§impl<'de> Deserialize<'de> for PlaintextCount
impl<'de> Deserialize<'de> for PlaintextCount
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 PlaintextCount
impl PartialEq for PlaintextCount
Source§fn eq(&self, other: &PlaintextCount) -> bool
fn eq(&self, other: &PlaintextCount) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlaintextCount
impl Serialize for PlaintextCount
impl Copy for PlaintextCount
impl Eq for PlaintextCount
impl StructuralPartialEq for PlaintextCount
Auto Trait Implementations§
impl Freeze for PlaintextCount
impl RefUnwindSafe for PlaintextCount
impl Send for PlaintextCount
impl Sync for PlaintextCount
impl Unpin for PlaintextCount
impl UnsafeUnpin for PlaintextCount
impl UnwindSafe for PlaintextCount
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