pub enum TehillimUnit {
Psalms {
start: u8,
end: u8,
},
PsalmVerses {
psalm: u8,
start_verse: u16,
end_verse: u16,
},
}Expand description
Represents a Tehillim (Psalms) reading unit
Variants§
Psalms
A range of complete psalms (e.g., psalms 1-9)
PsalmVerses
A range of verses within a single psalm (for Psalm 119)
Trait Implementations§
Source§impl Clone for TehillimUnit
impl Clone for TehillimUnit
Source§fn clone(&self) -> TehillimUnit
fn clone(&self) -> TehillimUnit
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 TehillimUnit
impl Debug for TehillimUnit
Source§impl Format for TehillimUnit
impl Format for TehillimUnit
Source§impl Hash for TehillimUnit
impl Hash for TehillimUnit
Source§impl PartialEq for TehillimUnit
impl PartialEq for TehillimUnit
Source§fn eq(&self, other: &TehillimUnit) -> bool
fn eq(&self, other: &TehillimUnit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TehillimUnit
impl Eq for TehillimUnit
impl Limud<TehillimUnit> for TehillimMonthly
impl StructuralPartialEq for TehillimUnit
Auto Trait Implementations§
impl Freeze for TehillimUnit
impl RefUnwindSafe for TehillimUnit
impl Send for TehillimUnit
impl Sync for TehillimUnit
impl Unpin for TehillimUnit
impl UnsafeUnpin for TehillimUnit
impl UnwindSafe for TehillimUnit
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.