pub struct Locations {
pub slices: Vec<ScriptSlice>,
pub string: String,
}Expand description
Locations contains the start and end indexes of all the scriptures found in the string.
Fields§
§slices: Vec<ScriptSlice>The start and end indexes of all the scriptures found in the string passed in.
string: StringThe original string that was passed in.
Trait Implementations§
Source§impl Ord for Locations
impl Ord for Locations
Source§impl PartialOrd for Locations
impl PartialOrd for Locations
impl Eq for Locations
impl StructuralPartialEq for Locations
Auto Trait Implementations§
impl Freeze for Locations
impl RefUnwindSafe for Locations
impl Send for Locations
impl Sync for Locations
impl Unpin for Locations
impl UnwindSafe for Locations
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