pub enum PirkeiAvosUnit {
Single(u8),
Combined(u8, u8),
}Expand description
Represents a Pirkei Avos reading unit
Variants§
Trait Implementations§
Source§impl Clone for PirkeiAvosUnit
impl Clone for PirkeiAvosUnit
Source§fn clone(&self) -> PirkeiAvosUnit
fn clone(&self) -> PirkeiAvosUnit
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 PirkeiAvosUnit
impl Debug for PirkeiAvosUnit
Source§impl Format for PirkeiAvosUnit
impl Format for PirkeiAvosUnit
Source§impl Hash for PirkeiAvosUnit
impl Hash for PirkeiAvosUnit
Source§impl PartialEq for PirkeiAvosUnit
impl PartialEq for PirkeiAvosUnit
Source§fn eq(&self, other: &PirkeiAvosUnit) -> bool
fn eq(&self, other: &PirkeiAvosUnit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PirkeiAvosUnit
impl Eq for PirkeiAvosUnit
impl Limud<PirkeiAvosUnit> for PirkeiAvos
impl StructuralPartialEq for PirkeiAvosUnit
Auto Trait Implementations§
impl Freeze for PirkeiAvosUnit
impl RefUnwindSafe for PirkeiAvosUnit
impl Send for PirkeiAvosUnit
impl Sync for PirkeiAvosUnit
impl Unpin for PirkeiAvosUnit
impl UnsafeUnpin for PirkeiAvosUnit
impl UnwindSafe for PirkeiAvosUnit
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<F, T> ConvertInto<T> for Fwhere
T: ConvertFrom<F>,
impl<F, T> ConvertInto<T> for Fwhere
T: ConvertFrom<F>,
Source§fn convert_into(self) -> T
fn convert_into(self) -> T
Infallibly converts a value of type
Self to a value of type T.Source§impl<F, T> ConvertTryFrom<F> for Twhere
F: ConvertInto<T>,
impl<F, T> ConvertTryFrom<F> for Twhere
F: ConvertInto<T>,
Source§type Error = Infallible
type Error = Infallible
The type of an error that can occur during a conversion. Read more
Source§fn convert_try_from(value: F) -> Result<T, Infallible>
fn convert_try_from(value: F) -> Result<T, Infallible>
Fallibly converts a value of type
F to a value of type Self.Source§impl<F, T> ConvertTryInto<T> for Fwhere
T: ConvertTryFrom<F>,
impl<F, T> ConvertTryInto<T> for Fwhere
T: ConvertTryFrom<F>,
Source§type Error = <T as ConvertTryFrom<F>>::Error
type Error = <T as ConvertTryFrom<F>>::Error
The type of an error that can occur during a conversion. Read more
Source§fn convert_try_into(self) -> Result<T, <T as ConvertTryFrom<F>>::Error>
fn convert_try_into(self) -> Result<T, <T as ConvertTryFrom<F>>::Error>
Fallibly converts a value of type
Self to a value of type T.